        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0d0d1a;
            --secondary-dark: #1a1a2e;
            --accent-gold: #c8a165;
            --accent-red: #8b0000;
            --text-light: #f0f0f0;
            --text-gray: #b8b8b8;
            --border-color: #33334d;
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #e6c78c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, #000, var(--primary-dark));
            border-bottom: 2px solid var(--accent-red);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }
        .my-logo:hover {
            color: #fff;
            text-decoration: none;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: var(--accent-red);
            color: white;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--accent-gold);
            cursor: pointer;
        }
        .breadcrumb {
            background-color: var(--secondary-dark);
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb span {
            color: var(--accent-gold);
            margin: 0 8px;
        }
        .main-content {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-content {
            background-color: var(--secondary-dark);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: var(--text-gray);
            margin-bottom: 30px;
            font-size: 0.9rem;
        }
        h1 {
            font-size: 3.2rem;
            color: var(--accent-gold);
            margin-bottom: 25px;
            border-bottom: 3px solid var(--accent-red);
            padding-bottom: 15px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.4rem;
            color: #fff;
            margin: 50px 0 25px;
            padding-left: 15px;
            border-left: 5px solid var(--accent-red);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent-gold);
            margin: 35px 0 20px;
        }
        h4 {
            font-size: 1.4rem;
            color: #ddd;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            color: #fff;
            font-weight: 300;
            margin-bottom: 40px;
            line-height: 1.8;
        }
        .highlight {
            background-color: rgba(200, 161, 101, 0.1);
            border-left: 4px solid var(--accent-gold);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            width: 100%;
            margin: 40px auto;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid var(--border-color);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            background-color: rgba(0,0,0,0.7);
            color: var(--text-gray);
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: var(--secondary-dark);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid var(--border-color);
        }
        .widget h3 {
            margin-top: 0;
            font-size: 1.5rem;
            border-bottom: 2px solid var(--accent-red);
            padding-bottom: 10px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            background-color: #111;
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: white;
        }
        .search-form button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #a00;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: var(--accent-gold);
            margin: 15px 0;
            cursor: pointer;
        }
        .stars span {
            margin: 0 2px;
            transition: var(--transition);
        }
        .stars span:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 15px;
            background-color: #111;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: white;
            margin-bottom: 15px;
            resize: vertical;
        }
        .comment-form button {
            background-color: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #e6c78c;
        }
        .site-footer {
            background-color: #000;
            border-top: 2px solid var(--accent-red);
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: var(--accent-gold);
            margin-bottom: 25px;
            font-size: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            padding: 15px;
            background-color: rgba(255,255,255,0.05);
            margin-bottom: 10px;
            border-radius: 5px;
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: rgba(200, 161, 101, 0.2);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary-dark);
                padding: 20px;
                border-top: 1px solid var(--border-color);
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-inner {
                position: relative;
            }
            .article-content {
                padding: 25px;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
            .lead {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .my-logo {
                font-size: 1.8rem;
            }
        }
        .btn {
            display: inline-block;
            background-color: var(--accent-red);
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover {
            background-color: #a00;
            text-decoration: none;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(139,0,0,0.4);
        }
        .card {
            background-color: rgba(0,0,0,0.3);
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-5px);
        }
        .season-timeline {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .season-card {
            background: linear-gradient(to bottom right, var(--secondary-dark), #000);
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid transparent;
            transition: var(--transition);
        }
        .season-card:hover {
            border-color: var(--accent-red);
            transform: scale(1.03);
        }
