:root {
            --primary-gold: #FFD700;
            --secondary-purple: #4B0082;
            --dark-bg: #0a0a1a;
            --card-bg: #15152e;
            --text-light: #f0f0f0;
            --text-muted: #b0b0c0;
            --accent-red: #e63946;
            --accent-green: #2a9d8f;
            --spacing-unit: 1rem;
            --border-radius: 10px;
            --transition-speed: 0.3s;
        }
        * {
            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.8;
            color: var(--text-light);
            background: linear-gradient(180deg, var(--dark-bg) 0%, #1a1a2e 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: color var(--transition-speed) ease;
        }
        a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-unit);
        }
        .site-header {
            background-color: rgba(10, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary-gold);
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(to right, var(--primary-gold), #ff8c00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        }
        .my-logo:hover {
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
        }
        .main-nav a:hover {
            background-color: rgba(255, 215, 0, 0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--primary-gold);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-muted);
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            margin: 2rem 0;
        }
        main {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        aside {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--primary-gold);
            text-align: center;
            line-height: 1.2;
            border-bottom: 3px solid var(--secondary-purple);
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1rem 0;
            color: var(--accent-green);
            padding-left: 0.5rem;
            border-left: 5px solid var(--primary-gold);
        }
        h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem 0;
            color: var(--text-light);
        }
        h4 {
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem 0;
            color: var(--text-muted);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: var(--text-muted);
            margin-bottom: 2rem;
            text-align: center;
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.1);
            border-left: 4px solid var(--primary-gold);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .note {
            background-color: rgba(42, 157, 143, 0.1);
            border: 1px solid var(--accent-green);
            padding: 1rem;
            border-radius: var(--border-radius);
            margin: 1.5rem 0;
        }
        em {
            font-style: italic;
            color: var(--primary-gold);
        }
        strong {
            font-weight: 700;
            color: #fff;
        }
        .search-box, .comment-form, .rating-form {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-bottom: 2rem;
        }
        .search-box h3, .comment-form h3, .rating-form h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            background-color: rgba(0, 0, 0, 0.3);
            border: 1px solid #444;
            border-radius: 5px;
            color: var(--text-light);
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-gold);
        }
        button {
            background: linear-gradient(to right, var(--primary-gold), #ff8c00);
            color: var(--dark-bg);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all var(--transition-speed) ease;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: var(--primary-gold);
        }
        .article-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            border: 3px solid var(--secondary-purple);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease;
        }
        .article-image:hover {
            transform: scale(1.02);
        }
        .related-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .related-links a {
            display: block;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: var(--border-radius);
            text-align: center;
            transition: background-color var(--transition-speed) ease;
        }
        .related-links a:hover {
            background-color: rgba(255, 215, 0, 0.15);
            text-decoration: none;
        }
        .site-footer {
            background-color: #050510;
            padding: 3rem 0 1.5rem 0;
            margin-top: 3rem;
            border-top: 2px solid var(--secondary-purple);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--primary-gold);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--dark-bg);
                padding: 1rem;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            main, aside {
                padding: 1.5rem;
            }
            .related-links {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        main, aside {
            animation: fadeIn 0.8s ease-out;
        }
