:root {
            --primary-dark: #1a1a2e;
            --primary-blood: #8b0000;
            --primary-gold: #d4af37;
            --secondary-steel: #2d3047;
            --text-light: #f5f5f5;
            --text-gray: #cccccc;
            --accent-olive: #808000;
            --spartan-red: #9d261d;
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        * {
            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-color: var(--primary-dark);
            background-image: linear-gradient(to bottom, #0c0c14, #1a1a2e);
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 10, 20, 0.95);
            border-bottom: 3px solid var(--primary-blood);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
            font-size: 2.5rem;
            color: var(--primary-gold);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px rgba(139, 0, 0, 0.7);
            transition: var(--transition);
        }
        .my-logo:hover {
            color: var(--text-light);
            text-shadow: 0 0 10px var(--primary-gold);
        }
        .my-logo span {
            color: var(--primary-blood);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-gray);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .main-nav a:hover, .main-nav a.active {
            color: var(--text-light);
            background-color: var(--primary-blood);
            box-shadow: 0 4px 8px rgba(139, 0, 0, 0.3);
        }
        .breadcrumb {
            padding: 1rem 0;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary-gold);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 3rem;
            border-bottom: 5px solid var(--primary-gold);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--text-light);
            text-shadow: 3px 3px 6px #000;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-gray);
        }
        .search-container {
            max-width: 600px;
            margin: 2rem auto;
            padding: 1.5rem;
            background-color: rgba(45, 48, 71, 0.8);
            border-radius: 10px;
            border-left: 5px solid var(--primary-gold);
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem;
            border: 2px solid var(--secondary-steel);
            border-radius: 5px 0 0 5px;
            background-color: #1a1a2e;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-button {
            background-color: var(--primary-blood);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-button:hover {
            background-color: #a30000;
        }
        .content-main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        article {
            background-color: rgba(30, 30, 46, 0.9);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        article h2, article h3, article h4 {
            color: var(--primary-gold);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-blood);
        }
        article h2 {
            font-size: 2.2rem;
        }
        article h3 {
            font-size: 1.8rem;
        }
        article h4 {
            font-size: 1.4rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            color: var(--text-gray);
        }
        article strong {
            color: var(--text-light);
            font-weight: 700;
        }
        article em {
            color: var(--primary-gold);
            font-style: italic;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            border: 3px solid var(--primary-gold);
            margin: 2rem auto;
            display: block;
            transition: var(--transition);
        }
        .game-image:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }
        .highlight-box {
            background: linear-gradient(135deg, #2d3047, #1a1a2e);
            border-left: 5px solid var(--spartan-red);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .link-list {
            list-style: none;
            margin: 2rem 0;
        }
        .link-list li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .link-list li:before {
            content: '⚔️';
            position: absolute;
            left: 0;
        }
        .link-list a {
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }
        .link-list a:hover {
            color: var(--text-light);
            text-decoration: underline;
        }
        .sidebar {
            background-color: rgba(25, 25, 40, 0.9);
            padding: 2rem;
            border-radius: 15px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: var(--primary-blood);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .update-time {
            background-color: var(--secondary-steel);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .update-time i {
            color: var(--primary-gold);
            margin-right: 0.5rem;
        }
        .user-interaction {
            background-color: rgba(40, 40, 60, 0.9);
            padding: 2rem;
            border-radius: 15px;
            margin-top: 3rem;
        }
        .interaction-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            color: var(--primary-gold);
            font-weight: 600;
        }
        .form-input, .form-textarea {
            padding: 0.8rem;
            border-radius: 5px;
            border: 1px solid var(--secondary-steel);
            background-color: #1a1a2e;
            color: var(--text-light);
            font-family: inherit;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .rating-stars .star {
            color: #555;
            transition: var(--transition);
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--primary-gold);
        }
        .submit-button {
            background: linear-gradient(to right, var(--primary-blood), #b30000);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .submit-button:hover {
            background: linear-gradient(to right, #a30000, #8b0000);
            box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
        }
        .site-footer {
            background-color: #0c0c14;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid var(--primary-gold);
        }
        .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 h4 {
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: var(--text-gray);
            text-decoration: none;
            transition: var(--transition);
        }
        friend-link a:hover {
            color: var(--primary-gold);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--secondary-steel);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .content-main {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(10, 10, 20, 0.98);
                padding: 1rem;
                border-top: 2px solid var(--primary-blood);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 2rem;
            }
            article {
                padding: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-button {
                border-radius: 5px;
                width: 100%;
            }
            .search-button {
                margin-top: 0.5rem;
            }
        }
