        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background-color: #0a0a12;
            background-image: radial-gradient(circle at 15% 50%, rgba(44, 17, 74, 0.4) 0%, transparent 25%), radial-gradient(circle at 85% 30%, rgba(20, 5, 46, 0.4) 0%, transparent 25%);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            color: #8a6bd6;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #b89bff;
            text-shadow: 0 0 8px rgba(138, 107, 214, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        header {
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(138, 107, 214, 0.3);
            margin-bottom: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', Impact, sans-serif;
            font-size: 2.8rem;
            background: linear-gradient(90deg, #8a6bd6, #ff6b9d, #f9c74f);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
            text-align: center;
            letter-spacing: 1px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        }
        .my-logo a {
            color: inherit;
            background: none;
        }
        .search-container {
            width: 100%;
            max-width: 600px;
            margin: 1.5rem auto;
            position: relative;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 14px 20px;
            border: 2px solid #8a6bd6;
            border-radius: 50px 0 0 50px;
            background-color: rgba(26, 20, 48, 0.8);
            color: #f0f0f0;
            font-size: 1rem;
            outline: none;
        }
        .search-input:focus {
            box-shadow: 0 0 15px rgba(138, 107, 214, 0.7);
        }
        .search-button {
            padding: 14px 25px;
            background: linear-gradient(90deg, #8a6bd6, #6d4fd9);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .search-button:hover {
            background: linear-gradient(90deg, #9b7be8, #7d5fe9);
            box-shadow: 0 0 15px rgba(138, 107, 214, 0.7);
        }
        nav {
            width: 100%;
            margin-top: 1rem;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #8a6bd6;
            cursor: pointer;
            padding: 10px;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            width: 100%;
            justify-content: center;
            gap: 2.5rem;
            flex-wrap: wrap;
        }
        .nav-menu li a {
            padding: 10px 5px;
            font-weight: 600;
            font-size: 1.1rem;
            border-bottom: 2px solid transparent;
            position: relative;
        }
        .nav-menu li a:hover {
            border-bottom-color: #8a6bd6;
        }
        .breadcrumb {
            margin: 1.5rem 0 2.5rem;
            padding: 12px 20px;
            background-color: rgba(26, 20, 48, 0.6);
            border-radius: 8px;
            font-size: 0.95rem;
            border-left: 4px solid #8a6bd6;
        }
        .breadcrumb a {
            color: #b89bff;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .content-area {
            background-color: rgba(18, 14, 34, 0.85);
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(138, 107, 214, 0.2);
        }
        h1, h2, h3, h4 {
            color: #f0f0f0;
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            color: #b89bff;
            border-bottom: 3px solid #8a6bd6;
            padding-bottom: 15px;
            margin-top: 0;
            text-align: center;
        }
        h2 {
            font-size: 2.1rem;
            color: #c9b2ff;
            border-left: 5px solid #ff6b9d;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.7rem;
            color: #d8c9ff;
        }
        h4 {
            font-size: 1.4rem;
            color: #e6ddff;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        strong, b {
            color: #f9c74f;
            font-weight: 700;
        }
        .highlight {
            background-color: rgba(138, 107, 214, 0.15);
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #f9c74f;
            margin: 2rem 0;
        }
        .inline-link {
            font-weight: bold;
            border-bottom: 1px dashed #8a6bd6;
        }
        .featured-image {
            margin: 3rem auto;
            max-width: 900px;
            text-align: center;
        }
        .featured-image img {
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
            border: 2px solid rgba(138, 107, 214, 0.5);
        }
        .image-caption {
            font-style: italic;
            margin-top: 10px;
            color: #aaa;
            font-size: 0.95rem;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #aaa;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .last-updated i {
            color: #f9c74f;
            margin-right: 5px;
        }
        .sidebar {
            background-color: rgba(18, 14, 34, 0.85);
            border-radius: 16px;
            padding: 1.8rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(138, 107, 214, 0.2);
            align-self: start;
            position: sticky;
            top: 20px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.4rem;
            color: #b89bff;
            margin-bottom: 1.2rem;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(138, 107, 214, 0.5);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .star-rating {
            display: flex;
            justify-content: space-between;
            font-size: 1.8rem;
            color: #444;
            margin-bottom: 10px;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #f9c74f;
        }
        .star-rating input {
            display: none;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #444;
            background-color: rgba(40, 35, 70, 0.7);
            color: #f0f0f0;
            font-size: 1rem;
            font-family: inherit;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            padding: 14px 20px;
            background: linear-gradient(90deg, #ff6b9d, #f9c74f);
            color: #0a0a12;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #ff8ab4, #ffd166);
            box-shadow: 0 0 15px rgba(249, 199, 79, 0.5);
        }
        footer {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 1px solid rgba(138, 107, 214, 0.3);
            text-align: center;
            color: #aaa;
        }
        friend-link {
            display: block;
            margin: 2rem 0;
            padding: 1.5rem;
            background-color: rgba(26, 20, 48, 0.6);
            border-radius: 10px;
        }
        friend-link a {
            display: inline-block;
            margin: 0 10px;
            font-weight: 600;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            line-height: 1.6;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            body {
                padding: 0 15px;
            }
            .my-logo {
                font-size: 2.2rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .nav-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
                order: 1;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                order: 2;
                margin-top: 1rem;
                padding: 1rem;
                background-color: rgba(26, 20, 48, 0.95);
                border-radius: 10px;
                gap: 0;
            }
            .nav-menu.active {
                display: flex;
            }
            .nav-menu li {
                width: 100%;
                text-align: center;
                padding: 12px 0;
                border-bottom: 1px solid rgba(138, 107, 214, 0.2);
            }
            .nav-menu li:last-child {
                border-bottom: none;
            }
            .content-area, .sidebar {
                padding: 1.8rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content-area {
            animation: fadeIn 0.8s ease-out;
        }
        .submit-btn, .search-button {
            transform: scale(1);
            transition: transform 0.2s ease;
        }
        .submit-btn:active, .search-button:active {
            transform: scale(0.98);
        }
