        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            line-height: 1.85;
            color: #121212;
            background-color: #F0F4F8;
            padding-bottom: 120px;
        }
        .navbar {
            background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
            padding: 16px 22px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 25px rgba(0,0,0,0.25);
        }
        .nav-container {
            max-width: 1500px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #FFFFFF;
            font-size: 2.1rem;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 0.7px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: #E74C3C;
            margin-left: 10px;
        }
        .nav-links {
            display: flex;
            list-style: none;
            transition: transform 0.35s ease-in-out;
        }
        .nav-links li {
            margin-left: 40px;
        }
        .nav-links a {
            color: #F8FAFC;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.25s ease;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #E74C3C;
            transition: width 0.3s ease;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .nav-links a:hover {
            color: #E74C3C;
        }
        .btn {
            padding: 13px 28px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            display: inline-block;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.18);
        }
        .btn-download {
            background-color: #27AE60;
            color: white;
            margin-right: 20px;
        }
        .btn-download:hover {
            background-color: #219653;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(39, 174, 96, 0.4);
            color: white;
        }
        .btn-login {
            background-color: #E74C3C;
            color: #FFFFFF;
        }
        .btn-login:hover {
            background-color: #C0392B;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(231, 76, 60, 0.4);
            color: #FFFFFF;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 10000;
        }
        .hamburger div {
            width: 32px;
            height: 3px;
            background-color: white;
            margin: 8px 0;
            transition: all 0.3s ease;
        }
        .hero {
            max-width: 1500px;
            margin: 80px auto 90px;
            padding: 0 35px;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.9rem;
            color: #2C3E50;
            margin-bottom: 35px;
            line-height: 1.5;
            font-weight: 700;
        }
        .hero h1 span {
            color: #E74C3C;
        }
        .hero p {
            font-size: 1.35rem;
            color: #34495E;
            max-width: 1100px;
            margin: 0 auto 50px;
            line-height: 2;
        }
        .hero-buttons {
            margin-top: 50px;
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 35px;
        }
        .section {
            margin-bottom: 100px;
            background-color: white;
            border-radius: 28px;
            padding: 65px;
            box-shadow: 0 12px 35px rgba(0,0,0,0.12);
            border: 1px solid #E8F4F8;
        }
        .section h2 {
            font-size: 2.9rem;
            color: #2C3E50;
            margin-bottom: 50px;
            padding-bottom: 25px;
            border-bottom: 4px solid #E74C3C;
            display: inline-block;
            font-weight: 700;
        }
        .section h3 {
            font-size: 2.1rem;
            color: #34495E;
            margin: 60px 0 35px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        .section h3:before {
            content: '⚔️';
            margin-right: 20px;
            font-size: 2.2rem;
        }
        .section h4 {
            font-size: 1.65rem;
            color: #2980B9;
            margin: 45px 0 30px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        .section h4:before {
            content: '🔥';
            margin-right: 15px;
        }
        .section p {
            margin-bottom: 40px;
            font-size: 1.2rem;
            color: #34495E;
            line-height: 2;
            text-align: justify;
        }
        .section ul, .section ol {
            margin-left: 50px;
            margin-bottom: 45px;
        }
        .section li {
            margin-bottom: 30px;
            font-size: 1.2rem;
            color: #34495E;
            line-height: 1.95;
        }
        .section li strong {
            color: #2C3E50;
        }
        .highlight {
            background-color: #FFF8E1;
            border-left: 8px solid #F39C12;
            padding: 35px 40px;
            margin: 50px 0;
            border-radius: 0 25px 25px 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-weight: 500;
            color: #856404;
            font-size: 1.25rem;
            line-height: 2;
        }
        .highlight.success {
            background-color: #E8F5E9;
            border-left-color: #27AE60;
        }
        .highlight.success p {
            color: #2E7D32;
        }
        .highlight.info {
            background-color: #E3F2FD;
            border-left-color: #2980B9;
        }
        .highlight.info p {
            color: #1565C0;
        }
        .highlight.warning {
            background-color: #FEE2E2;
            border-left-color: #E74C3C;
        }
        .highlight.warning p {
            color: #B71C1C;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 45px;
            margin: 70px 0;
        }
        .feature-card {
            background-color: #F0F8FB;
            border-radius: 25px;
            padding: 45px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            border-top: 7px solid #2980B9;
        }
        .feature-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.18);
        }
        .feature-card h4 {
            font-size: 1.7rem;
            color: #2C3E50;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
        }
        .feature-card h4 i {
            margin-right: 20px;
            color: #2980B9;
            font-size: 2.2rem;
        }
        .feature-card p {
            margin-bottom: 35px;
        }
        .game-stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 70px 0;
            background-color: #F8F9FA;
            padding: 50px;
            border-radius: 25px;
            border: 1px solid #E3F2FD;
        }
        .stat-item {
            text-align: center;
            margin: 30px 40px;
            flex: 1;
            min-width: 220px;
        }
        .stat-number {
            font-size: 4.2rem;
            font-weight: 700;
            color: #2C3E50;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        .stat-label {
            font-size: 1.35rem;
            color: #34495E;
            font-weight: 500;
        }
        .image-container {
            text-align: center;
            margin: 70px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 25px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            border: 1px solid #E8F4F8;
            loading: lazy;
        }
        .image-caption {
            margin-top: 30px;
            font-size: 1.15rem;
            color: #718096;
            font-style: italic;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        .tabs {
            display: flex;
            border-bottom: 2px solid #E3F2FD;
            margin-bottom: 50px;
            overflow-x: auto;
            scrollbar-width: none;
            padding-bottom: 10px;
        }
        .tabs::-webkit-scrollbar {
            display: none;
        }
        .tab {
            padding: 22px 40px;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            font-weight: 600;
            color: #718096;
            transition: all 0.35s ease;
            white-space: nowrap;
            font-size: 1.15rem;
        }
        .tab.active {
            border-bottom: 3px solid #2980B9;
            color: #2C3E50;
            background-color: #F0F8FB;
            border-radius: 12px 12px 0 0;
        }
        .tab:hover {
            color: #2C3E50;
            background-color: #F5F9FF;
            border-radius: 12px 12px 0 0;
        }
        .tab-content {
            display: none;
            animation: fadeIn 0.7s ease;
        }
        .tab-content.active {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 50px 0;
            font-size: 1.2rem;
        }
        .data-table th, .data-table td {
            padding: 22px 30px;
            text-align: left;
            border-bottom: 1px solid #E3F2FD;
        }
        .data-table th {
            background-color: #F0F8FB;
            color: #2C3E50;
            font-weight: 600;
        }
        .data-table tr:hover {
            background-color: #F8F9FF;
        }
        .data-table tr:nth-child(even) {
            background-color: #F5F7FA;
        }
        .quote {
            font-style: italic;
            padding: 35px 40px;
            background-color: #F0F8FB;
            border-radius: 25px;
            margin: 50px 0;
            border-left: 7px solid #2980B9;
        }
        .quote p {
            color: #34495E;
            font-size: 1.25rem;
            line-height: 2.1;
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 25px;
            color: #718096;
            font-weight: 500;
            font-style: normal;
        }
        .progress-container {
            margin: 40px 0 50px;
        }
        .progress-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
        }
        .progress-label {
            font-weight: 500;
            color: #34495E;
            font-size: 1.15rem;
        }
        .progress-value {
            color: #2980B9;
            font-weight: 500;
            font-size: 1.15rem;
        }
        .progress-bar {
            height: 16px;
            background-color: #E3F2FD;
            border-radius: 10px;
            overflow: hidden;
        }
        .progress-fill {
            height: 100%;
            background-color: #2980B9;
            border-radius: 10px;
        }
        .footer {
            background-color: #2C3E50;
            color: white;
            padding: 100px 35px 60px;
            margin-top: 150px;
        }
        .footer-container {
            max-width: 1500px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 70px;
        }
        .footer-column h3 {
            font-size: 1.8rem;
            margin-bottom: 45px;
            color: #E74C3C;
            position: relative;
            padding-bottom: 30px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        .footer-column h3:before {
            content: '🎯';
            margin-right: 15px;
        }
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 90px;
            height: 3px;
            background-color: #E74C3C;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 30px;
        }
        .footer-links a {
            color: #E3F2FD;
            text-decoration: none;
            transition: all 0.35s ease;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
        }
        .footer-links a:before {
            content: '→';
            margin-right: 15px;
            color: #E74C3C;
            opacity: 0;
            transition: all 0.35s ease;
        }
        .footer-links a:hover {
            color: #E74C3C;
            padding-left: 15px;
        }
        .footer-links a:hover:before {
            opacity: 1;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }
        .tag {
            background-color: #2980B9;
            padding: 14px 28px;
            border-radius: 40px;
            font-size: 1.1rem;
            transition: all 0.35s ease;
        }
        .tag:hover {
            background-color: #E74C3C;
            transform: translateY(-5px);
        }
        .tag a {
            color: white;
            text-decoration: none;
        }
        .tag:hover a {
            color: #FFFFFF;
        }
        .recommendation {
            background-color: #34495E;
            border-radius: 25px;
            padding: 45px;
            margin-top: 70px;
            border: 1px solid #2980B9;
        }
        .recommendation h4 {
            color: #E74C3C;
            font-size: 1.6rem;
            margin-bottom: 30px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        .recommendation h4:before {
            content: '🌟';
            margin-right: 15px;
        }
        .recommendation p {
            color: #E3F2FD;
            margin-bottom: 0;
            line-height: 2.1;
            font-size: 1.2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 70px;
            margin-top: 70px;
            border-top: 1px solid #2980B9;
            font-size: 1.15rem;
            color: #90CAF9;
            line-height: 2.1;
        }
        .copyright-links {
            margin-top: 25px;
        }
        .copyright-links a {
            color: #E74C3C;
            text-decoration: none;
            margin: 0 18px;
        }
        .copyright-links a:hover {
            text-decoration: underline;
        }
        @media (max-width: 1499px) {
            .hero h1 {
                font-size: 3.6rem;
            }
            .section {
                padding: 60px;
            }
            .game-stats {
                padding: 45px;
            }
        }
        @media (max-width: 1199px) {
            .nav-links {
                position: fixed;
                right: 0;
                top: 0;
                height: 100vh;
                background-color: #2C3E50;
                flex-direction: column;
                align-items: center;
                width: 80%;
                max-width: 380px;
                transform: translateX(100%);
                padding-top: 140px;
                box-shadow: -8px 0 30px rgba(0,0,0,0.35);
            }
            .nav-links li {
                margin: 35px 0;
            }
            .nav-links a {
                font-size: 1.4rem;
            }
            .hamburger {
                display: block;
            }
            .nav-active {
                transform: translateX(0);
            }
            .hero h1 {
                font-size: 3.3rem;
            }
            .section h2 {
                font-size: 2.6rem;
            }
            .section h3 {
                font-size: 2rem;
            }
            .stat-number {
                font-size: 3.8rem;
            }
            .btn {
                padding: 12px 26px;
                font-size: 1.1rem;
            }
        }
        @media (max-width: 991px) {
            .navbar {
                padding: 15px 20px;
            }
            .logo {
                font-size: 1.9rem;
            }
            .hero {
                padding: 0 30px;
                margin: 70px auto 80px;
            }
            .hero h1 {
                font-size: 3rem;
            }
            .hero p {
                font-size: 1.3rem;
                margin-bottom: 45px;
            }
            .container {
                padding: 0 30px;
            }
            .section {
                padding: 50px 35px;
                margin-bottom: 85px;
            }
            .section h2 {
                font-size: 2.4rem;
                margin-bottom: 45px;
            }
            .section h3 {
                font-size: 1.9rem;
                margin: 50px 0 30px;
            }
            .section h4 {
                font-size: 1.55rem;
            }
            .btn {
                padding: 12px 24px;
                font-size: 1.1rem;
                width: 100%;
                margin-bottom: 25px;
            }
            .btn-download {
                margin-right: 0;
            }
            .feature-grid {
                gap: 40px;
            }
            .game-stats {
                flex-direction: column;
                align-items: center;
                padding: 40px 30px;
            }
            .stat-item {
                margin: 25px 0;
                width: 100%;
            }
            .tabs {
                margin-bottom: 45px;
            }
            .tab {
                padding: 20px 35px;
                font-size: 1.1rem;
            }
            .data-table th, .data-table td {
                padding: 20px 25px;
                font-size: 1.15rem;
            }
            .highlight {
                padding: 30px 35px;
            }
            .image-caption {
                font-size: 1.1rem;
            }
        }
        @media (max-width: 767px) {
            .nav-links {
                width: 100%;
                max-width: none;
            }
            .hero h1 {
                font-size: 2.7rem;
            }
            .section h2 {
                font-size: 2.2rem;
            }
            .section p {
                font-size: 1.15rem;
                margin-bottom: 35px;
            }
            .footer {
                padding: 85px 30px 50px;
            }
            .footer-container {
                gap: 60px;
            }
            .footer-column h3 {
                font-size: 1.6rem;
                margin-bottom: 40px;
            }
            .tags {
                gap: 18px;
            }
            .tag {
                padding: 12px 25px;
                font-size: 1.05rem;
            }
            .copyright {
                font-size: 1.1rem;
                padding-top: 60px;
                margin-top: 60px;
            }
        }
        @media (max-width: 575px) {
            .hero h1 {
                font-size: 2.4rem;
            }
            .section h2 {
                font-size: 2rem;
            }
            .section h3 {
                font-size: 1.8rem;
            }
            .section ul, .section ol {
                margin-left: 40px;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .game-stats {
                padding: 35px 25px;
            }
            .stat-number {
                font-size: 3.2rem;
            }
            .stat-label {
                font-size: 1.25rem;
            }
            .quote {
                padding: 30px 32px;
            }
            .quote p {
                font-size: 1.15rem;
            }
            .footer {
                padding: 75px 25px 45px;
            }
            .footer-container {
                gap: 50px;
            }
            .copyright-links a {
                margin: 0 10px;
                display: inline-block;
                margin-bottom: 15px;
            }
        }
        .toggle .line1 {
            transform: rotate(-45deg) translate(-8px, 9px);
        }
        .toggle .line2 {
            opacity: 0;
        }
        .toggle .line3 {
            transform: rotate(45deg) translate(-8px, -9px);
        }
        :focus-visible {
            outline: 3px solid #E74C3C;
            outline-offset: 5px;
        }
        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
        }
        @media print {
            body {
                background: white;
                color: black;
            }
            .navbar, .btn, .footer {
                display: none;
            }
            .section {
                box-shadow: none;
                border: none;
                padding: 0;
            }
        }
