:root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #FFE81F;
            --accent-dark: #e6cf1c;
            --text-primary: #f0f0f0;
            --text-secondary: #b8b8b8;
            --card-bg: #0f3460;
            --border-color: #2d4059;
            --success: #4CAF50;
            --warning: #FF9800;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-dark);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--accent);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(255, 232, 31, 0.5);
        }
        .logo:hover {
            text-decoration: none;
            transform: scale(1.02);
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 992px) {
            .desktop-nav {
                display: none;
            }
        }
        .nav-link {
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 4px;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-link:hover::after {
            width: 80%;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--accent);
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 992px) {
            .mobile-nav-toggle {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--secondary);
            padding: 20px;
            border-radius: 0 0 10px 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav .nav-link {
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
            background-color: rgba(15, 52, 96, 0.3);
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .search-container {
            max-width: 600px;
            margin: 40px auto 60px;
            padding: 0 20px;
        }
        .search-form {
            display: flex;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid var(--border-color);
            transition: var(--transition);
        }
        .search-form:focus-within {
            border-color: var(--accent);
            box-shadow: 0 0 15px rgba(255, 232, 31, 0.3);
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-size: 1.1rem;
        }
        .search-input::placeholder {
            color: var(--text-secondary);
        }
        .search-button {
            background: var(--accent);
            color: var(--primary);
            border: none;
            padding: 0 30px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-button:hover {
            background: var(--accent-dark);
            padding-right: 35px;
            padding-left: 35px;
        }
        main {
            padding: 20px 0 60px;
        }
        article {
            background-color: rgba(15, 52, 96, 0.6);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            margin-bottom: 50px;
            border: 1px solid var(--border-color);
        }
        h1 {
            font-size: 3.2rem;
            color: var(--accent);
            margin-bottom: 25px;
            line-height: 1.2;
            text-align: center;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
        }
        h2 {
            font-size: 2.2rem;
            color: var(--accent);
            margin: 50px 0 25px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--accent);
        }
        h3 {
            font-size: 1.7rem;
            color: #64b5f6;
            margin: 35px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--text-primary);
            text-align: center;
            margin-bottom: 40px;
            line-height: 1.8;
        }
        .highlight {
            background-color: rgba(255, 232, 31, 0.15);
            border-left: 4px solid var(--accent);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 30px auto;
            display: block;
            border: 3px solid var(--border-color);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            transition: var(--transition);
        }
        .game-image:hover {
            transform: scale(1.01);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .content-block {
            margin-bottom: 40px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .stat-card {
            background-color: var(--card-bg);
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--accent);
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: var(--text-secondary);
        }
        .timeline {
            position: relative;
            max-width: 900px;
            margin: 50px auto;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background-color: var(--accent);
            transform: translateX(-50%);
        }
        @media (max-width: 768px) {
            .timeline::before {
                left: 30px;
            }
        }
        .timeline-item {
            margin-bottom: 40px;
            position: relative;
            width: 100%;
        }
        .timeline-content {
            background-color: var(--card-bg);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid var(--border-color);
            position: relative;
            width: calc(50% - 40px);
        }
        @media (max-width: 768px) {
            .timeline-content {
                width: calc(100% - 70px);
                margin-left: 70px;
            }
        }
        .timeline-content::before {
            content: '';
            position: absolute;
            top: 20px;
            width: 20px;
            height: 20px;
            background-color: var(--accent);
            border-radius: 50%;
        }
        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: auto;
        }
        .timeline-item:nth-child(odd) .timeline-content::before {
            left: -50px;
        }
        .timeline-item:nth-child(even) .timeline-content {
            margin-right: auto;
        }
        .timeline-item:nth-child(even) .timeline-content::before {
            right: -50px;
        }
        @media (max-width: 768px) {
            .timeline-content::before {
                left: -50px !important;
                right: auto !important;
            }
        }
        .rating-widget {
            background-color: var(--card-bg);
            padding: 30px;
            border-radius: 10px;
            margin: 50px 0;
            border: 1px solid var(--border-color);
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            font-size: 2.5rem;
        }
        .rating-star {
            color: #444;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-star:hover,
        .rating-star.active {
            color: var(--accent);
            transform: scale(1.2);
        }
        .comment-section {
            margin-top: 60px;
        }
        .comment-form,
        .rating-form {
            display: grid;
            gap: 20px;
            margin-top: 30px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-label {
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-input,
        .form-textarea {
            padding: 15px;
            background-color: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 10px rgba(255, 232, 31, 0.2);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background-color: var(--accent);
            color: var(--primary);
            border: none;
            padding: 18px 30px;
            border-radius: 5px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            justify-self: start;
        }
        .submit-button:hover {
            background-color: var(--accent-dark);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0, 0, 0, 0.3);
        }
        .internal-links {
            margin: 40px 0;
            padding: 30px;
            background-color: rgba(15, 52, 96, 0.4);
            border-radius: 10px;
            border-left: 5px solid var(--accent);
        }
        .internal-links h3 {
            margin-top: 0;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        .link-item {
            padding: 12px 20px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 5px;
            transition: var(--transition);
        }
        .link-item:hover {
            background-color: rgba(255, 232, 31, 0.1);
            transform: translateX(5px);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            padding: 40px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 40px;
        }
        .web-link {
            padding: 15px;
            background-color: rgba(15, 52, 96, 0.4);
            border-radius: 5px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 232, 31, 0.1);
        }
        footer {
            text-align: center;
            padding: 40px 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 30px;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
        }
        .text-center {
            text-align: center;
        }
        .text-accent {
            color: var(--accent);
        }
        .bold {
            font-weight: 700;
        }
        .italic {
            font-style: italic;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 5px;
        }
        .mobile-only {
            display: none;
        }
        @media (max-width: 768px) {
            .mobile-only {
                display: block;
            }
            .desktop-only {
                display: none;
            }
            article {
                padding: 25px 20px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
