:root {
            --primary-purple: #9d00ff;
            --accent-pink: #ff00c8;
            --highlight-cyan: #00f7ff;
            --dark-bg: #0a0a14;
            --card-bg: #1a1a2e;
            --text-light: #f0f0fa;
            --text-muted: #b0b0d0;
            --shadow-glow: 0 0 15px rgba(157, 0, 255, 0.5);
            --transition-fast: 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-light);
            background: linear-gradient(to bottom, var(--dark-bg), #151522);
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: var(--highlight-cyan);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--accent-pink);
            text-shadow: var(--shadow-glow);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-purple);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', Impact, sans-serif;
            font-size: 1.8rem;
            background: linear-gradient(90deg, var(--primary-purple), var(--accent-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: var(--shadow-glow);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--highlight-cyan);
            margin: 3px 0;
            border-radius: 2px;
            transition: var(--transition-fast);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        nav a:hover, nav a.active {
            background: rgba(157, 0, 255, 0.2);
            color: var(--text-light);
        }
        .breadcrumb {
            padding: 1rem 0;
            color: var(--text-muted);
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--highlight-cyan);
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content-area {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: var(--shadow-glow);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        article h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, var(--primary-purple), var(--accent-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
            border-bottom: 3px solid var(--primary-purple);
            padding-bottom: 0.5rem;
        }
        article h2 {
            font-size: 2rem;
            color: var(--highlight-cyan);
            margin: 2.5rem 0 1rem;
            padding-left: 10px;
            border-left: 5px solid var(--accent-pink);
        }
        article h3 {
            font-size: 1.5rem;
            color: var(--accent-pink);
            margin: 2rem 0 0.8rem;
        }
        article h4 {
            font-size: 1.2rem;
            color: var(--text-light);
            margin: 1.5rem 0 0.5rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        article strong {
            color: var(--accent-pink);
            font-weight: 700;
        }
        .inline-link {
            font-weight: 600;
            border-bottom: 1px dashed var(--highlight-cyan);
        }
        .inline-link:hover {
            border-bottom-style: solid;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            border: 3px solid var(--primary-purple);
            margin: 2rem 0;
            box-shadow: var(--shadow-glow);
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(157, 0, 255, 0.1), rgba(255, 0, 200, 0.1));
            border-left: 5px solid var(--accent-pink);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .sidebar-widget {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .widget-title {
            color: var(--highlight-cyan);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form input {
            width: 100%;
            padding: 12px 15px;
            border-radius: 30px;
            border: 2px solid var(--primary-purple);
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-light);
            font-size: 1rem;
            margin-bottom: 10px;
        }
        .search-form button {
            width: 100%;
            padding: 12px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(90deg, var(--primary-purple), var(--accent-pink));
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: transform var(--transition-fast);
        }
        .search-form button:hover {
            transform: translateY(-3px);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            gap: 5px;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--text-muted);
            cursor: pointer;
        }
        .stars .active {
            color: gold;
        }
        textarea, .rating-form input {
            width: 100%;
            padding: 12px 15px;
            border-radius: 10px;
            border: 2px solid var(--primary-purple);
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-light);
            font-family: inherit;
            resize: vertical;
        }
        .form-submit {
            padding: 12px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(90deg, var(--primary-purple), var(--accent-pink));
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: transform var(--transition-fast);
        }
        .form-submit:hover {
            transform: translateY(-3px);
        }
        footer {
            background-color: #05050a;
            border-top: 2px solid var(--primary-purple);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: var(--highlight-cyan);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            padding: 0.5rem 0;
            border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            nav ul {
                gap: 1rem;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .hamburger {
                display: flex;
            }
            nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease-out;
            }
            nav.active {
                max-height: 300px;
                margin-top: 1rem;
            }
            nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            nav a {
                display: block;
                padding: 0.8rem;
                text-align: center;
            }
            article h1 {
                font-size: 2.2rem;
            }
            .content-area {
                padding: 1.5rem;
            }
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        .highlight-box:hover, .sidebar-widget:hover {
            transform: translateY(-5px);
            transition: transform var(--transition-fast);
            box-shadow: 0 10px 25px rgba(157, 0, 255, 0.3);
        }
        .featured-image:hover {
            transform: scale(1.01);
            transition: transform var(--transition-fast);
        }
