        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0d0d0d;
            --secondary-dark: #1a1a1a;
            --accent-gold: #c8a165;
            --accent-red: #8b0000;
            --text-light: #f0f0f0;
            --text-gray: #b0b0b0;
            --border-color: #333;
        }
        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: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 8px var(--accent-gold);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background: linear-gradient(to right, var(--accent-red), #5a0000);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .btn:hover {
            background: linear-gradient(to right, #a30000, var(--accent-red));
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
        }
        .site-header {
            background-color: var(--secondary-dark);
            border-bottom: 2px solid var(--accent-gold);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Times New Roman', serif;
            background: linear-gradient(90deg, #c8a165, #ffd700, #c8a165);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            animation: logoGlow 1.5s infinite alternate;
        }
        @keyframes logoGlow {
            from { filter: drop-shadow(0 0 5px rgba(200, 161, 101, 0.7)); }
            to { filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.9)); }
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover {
            border-bottom-color: var(--accent-gold);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--secondary-dark);
            border-top: 1px solid var(--border-color);
            flex-direction: column;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid var(--border-color);
            font-size: 1.1rem;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #111;
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .breadcrumb span {
            margin: 0 8px;
            color: #666;
        }
        .hero {
            background: linear-gradient(rgba(13, 13, 13, 0.8), rgba(13, 13, 13, 0.9)), url('https://images.unsplash.com/photo-1531259683007-016a7b628fc3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 20px;
            text-align: center;
            border-bottom: 5px solid var(--accent-red);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 3px 3px 6px #000;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: var(--text-gray);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background-color: var(--secondary-dark);
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: var(--text-gray);
            border-bottom: 1px dashed var(--border-color);
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        h2 {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        h3 {
            font-size: 2rem;
            color: #fff;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.5rem;
            color: var(--text-gray);
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: var(--text-gray);
            border-left: 4px solid var(--accent-red);
            padding-left: 20px;
            margin: 30px 0;
        }
        .highlight {
            background-color: rgba(200, 161, 101, 0.1);
            border-left: 5px solid var(--accent-gold);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .featured-image {
            margin: 30px auto;
            text-align: center;
        }
        .featured-image img {
            border-radius: 8px;
            border: 3px solid var(--accent-gold);
            box-shadow: 0 10px 25px rgba(0,0,0,0.7);
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: var(--text-gray);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: var(--secondary-dark);
            border-radius: 8px;
            padding: 25px;
            border: 1px solid var(--border-color);
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            color: var(--accent-gold);
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 10px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px;
            background-color: #111;
            border: 1px solid var(--border-color);
            color: white;
            border-radius: 4px 0 0 4px;
        }
        .search-form button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #a30000;
        }
        .ratings {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffd700;
            margin: 15px 0;
            letter-spacing: 5px;
        }
        .comment-form textarea,
        .score-form select {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            background-color: #111;
            border: 1px solid var(--border-color);
            color: white;
            border-radius: 4px;
            resize: vertical;
        }
        .internal-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 30px 0;
        }
        .internal-links a {
            display: block;
            padding: 12px 15px;
            background-color: rgba(255,255,255,0.05);
            border-radius: 4px;
            border-left: 4px solid var(--accent-red);
            transition: all 0.3s ease;
        }
        .internal-links a:hover {
            background-color: rgba(139, 0, 0, 0.2);
            transform: translateX(5px);
        }
        .site-footer {
            background-color: #111;
            border-top: 2px solid var(--accent-gold);
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 1.8rem;
            color: var(--accent-gold);
            font-weight: bold;
            margin-bottom: 15px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            color: var(--text-gray);
        }
        friend-link a {
            color: var(--text-gray);
        }
        friend-link a:hover {
            color: var(--accent-gold);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            color: #666;
            font-size: 0.9rem;
        }
