:root {
            --primary-gold: #D5A021;
            --secondary-teal: #2A9D8F;
            --dark-bg: #1A1A2E;
            --content-bg: #0F3460;
            --light-text: #E6E6E6;
            --accent-purple: #8A2BE2;
            --spacing-unit: 1rem;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--light-text);
            background-color: var(--dark-bg);
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-unit);
        }
        a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--secondary-teal);
            text-decoration: underline;
        }
        .site-header {
            padding: 2rem 0;
            border-bottom: 2px solid var(--primary-gold);
            margin-bottom: 2rem;
        }
        .logo {
            font-size: 2.8rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(45deg, var(--primary-gold), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        .main-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            padding: 1rem;
            background-color: var(--content-bg);
            border-radius: 10px;
        }
        .nav-link {
            padding: 0.5rem 1rem;
            font-weight: 600;
            border-radius: 5px;
        }
        .nav-link:hover {
            background-color: rgba(213, 160, 33, 0.2);
        }
        .breadcrumb {
            margin: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--light-text);
            cursor: pointer;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 768px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        main {
            background-color: var(--content-bg);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        article h1 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-gold);
            border-left: 5px solid var(--secondary-teal);
            padding-left: 1rem;
        }
        article h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            color: var(--secondary-teal);
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--primary-gold);
        }
        article h3 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            color: var(--light-text);
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        article emoji {
            font-size: 1.2em;
            margin: 0 0.2rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(42, 157, 143, 0.2), rgba(138, 43, 226, 0.2));
            border-left: 4px solid var(--primary-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            border: 3px solid var(--primary-gold);
        }
        aside {
            background-color: var(--content-bg);
            padding: 1.5rem;
            border-radius: 15px;
            align-self: start;
            position: sticky;
            top: 20px;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget h3 {
            color: var(--primary-gold);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--secondary-teal);
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border-radius: 5px;
            border: 1px solid #555;
            background-color: #2c2c54;
            color: var(--light-text);
        }
        button {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(45deg, var(--primary-gold), var(--secondary-teal));
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        button:hover {
            transform: translateY(-3px);
        }
        .stars {
            display: flex;
            justify-content: space-around;
            font-size: 1.5rem;
            color: #555;
            cursor: pointer;
        }
        .stars .active {
            color: gold;
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background-color: var(--content-bg);
            border-radius: 15px;
        }
        .web-link {
            padding: 1rem;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }
        .web-link:hover {
            background-color: rgba(213, 160, 33, 0.1);
        }
        .site-footer {
            text-align: center;
            padding: 2rem 0;
            border-top: 1px solid #444;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .main-nav {
                flex-direction: column;
                display: none;
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
                margin: 0 auto 1rem;
            }
            .logo {
                font-size: 2rem;
            }
            article h1 {
                font-size: 2rem;
            }
            article h2 {
                font-size: 1.7rem;
            }
        }
        .nav-link, button, .web-link {
            transition: all 0.3s ease;
        }
        .vote-btn {
            background: none;
            border: 2px solid var(--secondary-teal);
            color: var(--secondary-teal);
        }
        .vote-btn:hover {
            background-color: var(--secondary-teal);
            color: white;
        }
