* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Nirmala UI', sans-serif;
        }
        :root {
            --primary: #FF6B35;
            --secondary: #004E89;
            --accent: #00A896;
            --light: #F7F9FC;
            --dark: #1A1A2E;
            --text: #333333;
            --gray: #6C757D;
        }
        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.7;
            font-size: 18px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 1px;
        }
        .logo i {
            color: var(--primary);
            transform: rotate(45deg);
        }
        .logo span {
            background: linear-gradient(90deg, var(--primary), #FFA500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--dark);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background-color: #E9ECEF;
            padding: 1rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb-links {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .breadcrumb-links a {
            color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb-links a:hover {
            text-decoration: underline;
        }
        .breadcrumb-links i {
            margin: 0 5px;
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 3px solid var(--primary);
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: var(--gray);
            font-size: 0.9rem;
        }
        .content-section {
            margin-bottom: 3rem;
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        .content-section h2 {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
            font-size: 2.2rem;
        }
        .content-section h3 {
            color: var(--primary);
            margin: 1.5rem 0 1rem;
            font-size: 1.8rem;
        }
        .content-section p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background-color: #FFF9E6;
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #ddd;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            text-align: center;
        }
        .game-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.5s ease;
        }
        .game-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            margin-top: 1rem;
            font-style: italic;
            color: var(--gray);
        }
        .interactive-section {
            background: linear-gradient(135deg, var(--light) 0%, #E3F2FD 100%);
            padding: 3rem;
            border-radius: 15px;
            margin: 3rem 0;
        }
        .search-box, .comment-form, .rating-form {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
        }
        .btn {
            background: linear-gradient(90deg, var(--primary), #FF8C42);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 107, 53, 0.3);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin: 1rem 0;
        }
        .star-rating i {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #FFD700;
        }
        .footer-links {
            background-color: var(--dark);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 1.2rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(5px);
        }
        .web-link a {
            color: white;
            text-decoration: none;
            display: block;
            font-size: 0.95rem;
        }
        .web-link a:hover {
            color: var(--primary);
        }
        footer {
            background-color: #1A1A2E;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        .copyright {
            margin-top: 1rem;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .content-section h2 {
                font-size: 1.8rem;
            }
            .content-section h3 {
                font-size: 1.5rem;
            }
            .interactive-section {
                padding: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
        }
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 1rem;
            }
            .btn {
                width: 100%;
            }
        }
        @media print {
            .interactive-section,
            .footer-links,
            header,
            .breadcrumb {
                display: none;
            }
            body {
                font-size: 12pt;
                line-height: 1.5;
            }
            .content-section {
                box-shadow: none;
                border: 1px solid #ddd;
            }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            white-space: nowrap;
            border: 0;
        }
        :focus {
            outline: 3px solid var(--primary);
            outline-offset: 3px;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content-section {
            animation: fadeIn 0.6s ease-out;
        }
