        * {
            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: #F9FAFB;
            padding-bottom: 100px;
        }
        .navbar {
            background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1450px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #FFFFFF;
            font-size: 1.9rem;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: #FBBF24;
            margin-left: 8px;
        }
        .nav-links {
            display: flex;
            list-style: none;
            transition: transform 0.35s ease-in-out;
        }
        .nav-links li {
            margin-left: 35px;
        }
        .nav-links a {
            color: #F8FAFC;
            text-decoration: none;
            font-size: 1.08rem;
            transition: all 0.25s ease;
            font-weight: 500;
            padding: 7px 0;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #FBBF24;
            transition: width 0.3s ease;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .nav-links a:hover {
            color: #FBBF24;
        }
        .btn {
            padding: 12px 26px;
            border-radius: 38px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.08rem;
            display: inline-block;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #10B981;
            color: white;
            margin-right: 18px;
        }
        .btn-download:hover {
            background-color: #059669;
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(16, 185, 129, 0.35);
            color: white;
        }
        .btn-login {
            background-color: #FBBF24;
            color: #0F172A;
        }
        .btn-login:hover {
            background-color: #F59E0B;
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(251, 191, 36, 0.35);
            color: #0F172A;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 10000;
        }
        .hamburger div {
            width: 30px;
            height: 3px;
            background-color: white;
            margin: 7px 0;
            transition: all 0.3s ease;
        }
        .hero {
            max-width: 1450px;
            margin: 70px auto 80px;
            padding: 0 30px;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.5rem;
            color: #0F172A;
            margin-bottom: 30px;
            line-height: 1.45;
            font-weight: 700;
        }
        .hero h1 span {
            color: #FBBF24;
        }
        .hero p {
            font-size: 1.3rem;
            color: #334155;
            max-width: 1000px;
            margin: 0 auto 45px;
            line-height: 1.95;
        }
        .hero-buttons {
            margin-top: 45px;
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        .container {
            max-width: 1450px;
            margin: 0 auto;
            padding: 0 30px;
        }
        .section {
            margin-bottom: 90px;
            background-color: white;
            border-radius: 24px;
            padding: 60px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 1px solid #E2E8F0;
        }
        .section h2 {
            font-size: 2.7rem;
            color: #0F172A;
            margin-bottom: 45px;
            padding-bottom: 22px;
            border-bottom: 4px solid #FBBF24;
            display: inline-block;
            font-weight: 700;
        }
        .section h3 {
            font-size: 1.9rem;
            color: #1E293B;
            margin: 50px 0 30px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        .section h3:before {
            content: '⚔️';
            margin-right: 18px;
            font-size: 2rem;
        }
        .section h4 {
            font-size: 1.55rem;
            color: #334155;
            margin: 40px 0 25px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        .section h4:before {
            content: '🔥';
            margin-right: 12px;
        }
        .section p {
            margin-bottom: 35px;
            font-size: 1.15rem;
            color: #334155;
            line-height: 1.95;
            text-align: justify;
        }
        .section ul, .section ol {
            margin-left: 45px;
            margin-bottom: 40px;
        }
        .section li {
            margin-bottom: 25px;
            font-size: 1.15rem;
            color: #334155;
            line-height: 1.9;
        }
        .section li strong {
            color: #0F172A;
        }
        .highlight {
            background-color: #FFFBEB;
            border-left: 7px solid #FBBF24;
            padding: 30px 35px;
            margin: 45px 0;
            border-radius: 0 20px 20px 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-weight: 500;
            color: #78350F;
            font-size: 1.2rem;
            line-height: 1.9;
        }
        .highlight.success {
            background-color: #ECFEFF;
            border-left-color: #10B981;
        }
        .highlight.success p {
            color: #065F46;
        }
        .highlight.info {
            background-color: #DBEAFE;
            border-left-color: #3B82F6;
        }
        .highlight.info p {
            color: #1E40AF;
        }
        .highlight.warning {
            background-color: #FEE2E2;
            border-left-color: #EF4444;
        }
        .highlight.warning p {
            color: #991B1B;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }
        .feature-card {
            background-color: #EFF6FF;
            border-radius: 22px;
            padding: 40px;
            box-shadow: 0 6px 22px rgba(0,0,0,0.1);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            border-top: 6px solid #3B82F6;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        .feature-card h4 {
            font-size: 1.6rem;
            color: #0F172A;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
        }
        .feature-card h4 i {
            margin-right: 18px;
            color: #3B82F6;
            font-size: 2rem;
        }
        .feature-card p {
            margin-bottom: 30px;
        }
        .game-stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 60px 0;
            background-color: #F0F9FF;
            padding: 45px;
            border-radius: 22px;
            border: 1px solid #DBEAFE;
        }
        .stat-item {
            text-align: center;
            margin: 25px 35px;
            flex: 1;
            min-width: 200px;
        }
        .stat-number {
            font-size: 3.8rem;
            font-weight: 700;
            color: #0F172A;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .stat-label {
            font-size: 1.25rem;
            color: #475569;
            font-weight: 500;
        }
        .image-container {
            text-align: center;
            margin: 60px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 22px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
            border: 1px solid #E2E8F0;
            loading: lazy;
        }
        .image-caption {
            margin-top: 25px;
            font-size: 1.1rem;
            color: #64748B;
            font-style: italic;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .tabs {
            display: flex;
            border-bottom: 2px solid #DBEAFE;
            margin-bottom: 45px;
            overflow-x: auto;
            scrollbar-width: none;
            padding-bottom: 8px;
        }
        .tabs::-webkit-scrollbar {
            display: none;
        }
        .tab {
            padding: 20px 35px;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            font-weight: 600;
            color: #64748B;
            transition: all 0.35s ease;
            white-space: nowrap;
            font-size: 1.1rem;
        }
        .tab.active {
            border-bottom: 3px solid #3B82F6;
            color: #0F172A;
            background-color: #EFF6FF;
            border-radius: 10px 10px 0 0;
        }
        .tab:hover {
            color: #0F172A;
            background-color: #F8FAFC;
            border-radius: 10px 10px 0 0;
        }
        .tab-content {
            display: none;
            animation: fadeIn 0.6s ease;
        }
        .tab-content.active {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 45px 0;
            font-size: 1.15rem;
        }
        .data-table th, .data-table td {
            padding: 20px 25px;
            text-align: left;
            border-bottom: 1px solid #DBEAFE;
        }
        .data-table th {
            background-color: #F0F9FF;
            color: #0F172A;
            font-weight: 600;
        }
        .data-table tr:hover {
            background-color: #F8FAFC;
        }
        .data-table tr:nth-child(even) {
            background-color: #F9FAFB;
        }
        .quote {
            font-style: italic;
            padding: 30px 35px;
            background-color: #F0F9FF;
            border-radius: 20px;
            margin: 45px 0;
            border-left: 6px solid #3B82F6;
        }
        .quote p {
            color: #1E293B;
            font-size: 1.2rem;
            line-height: 2;
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 20px;
            color: #475569;
            font-weight: 500;
            font-style: normal;
        }
        .progress-container {
            margin: 35px 0 45px;
        }
        .progress-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        .progress-label {
            font-weight: 500;
            color: #1E293B;
            font-size: 1.1rem;
        }
        .progress-value {
            color: #3B82F6;
            font-weight: 500;
            font-size: 1.1rem;
        }
        .progress-bar {
            height: 14px;
            background-color: #DBEAFE;
            border-radius: 8px;
            overflow: hidden;
        }
        .progress-fill {
            height: 100%;
            background-color: #3B82F6;
            border-radius: 8px;
        }
        .footer {
            background-color: #0F172A;
            color: white;
            padding: 90px 30px 50px;
            margin-top: 120px;
        }
        .footer-container {
            max-width: 1450px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 60px;
        }
        .footer-column h3 {
            font-size: 1.7rem;
            margin-bottom: 40px;
            color: #FBBF24;
            position: relative;
            padding-bottom: 25px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        .footer-column h3:before {
            content: '🎯';
            margin-right: 12px;
        }
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: #FBBF24;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 25px;
        }
        .footer-links a {
            color: #E0F2FE;
            text-decoration: none;
            transition: all 0.35s ease;
            font-size: 1.15rem;
            display: flex;
            align-items: center;
        }
        .footer-links a:before {
            content: '→';
            margin-right: 12px;
            color: #FBBF24;
            opacity: 0;
            transition: all 0.35s ease;
        }
        .footer-links a:hover {
            color: #FBBF24;
            padding-left: 12px;
        }
        .footer-links a:hover:before {
            opacity: 1;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 35px;
        }
        .tag {
            background-color: #3B82F6;
            padding: 12px 25px;
            border-radius: 35px;
            font-size: 1.05rem;
            transition: all 0.35s ease;
        }
        .tag:hover {
            background-color: #FBBF24;
            transform: translateY(-4px);
        }
        .tag a {
            color: white;
            text-decoration: none;
        }
        .tag:hover a {
            color: #0F172A;
        }
        .recommendation {
            background-color: #1E293B;
            border-radius: 22px;
            padding: 40px;
            margin-top: 60px;
            border: 1px solid #3B82F6;
        }
        .recommendation h4 {
            color: #FBBF24;
            font-size: 1.5rem;
            margin-bottom: 25px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        .recommendation h4:before {
            content: '🌟';
            margin-right: 12px;
        }
        .recommendation p {
            color: #E0F2FE;
            margin-bottom: 0;
            line-height: 2;
            font-size: 1.15rem;
        }
        .copyright {
            text-align: center;
            padding-top: 60px;
            margin-top: 60px;
            border-top: 1px solid #3B82F6;
            font-size: 1.1rem;
            color: #93C5FD;
            line-height: 2;
        }
        .copyright-links {
            margin-top: 20px;
        }
        .copyright-links a {
            color: #FBBF24;
            text-decoration: none;
            margin: 0 15px;
        }
        .copyright-links a:hover {
            text-decoration: underline;
        }
        @media (max-width: 1399px) {
            .hero h1 {
                font-size: 3.2rem;
            }
            .section {
                padding: 55px;
            }
            .game-stats {
                padding: 40px;
            }
        }
        @media (max-width: 1199px) {
            .nav-links {
                position: fixed;
                right: 0;
                top: 0;
                height: 100vh;
                background-color: #0F172A;
                flex-direction: column;
                align-items: center;
                width: 80%;
                max-width: 350px;
                transform: translateX(100%);
                padding-top: 130px;
                box-shadow: -5px 0 25px rgba(0,0,0,0.3);
            }
            .nav-links li {
                margin: 30px 0;
            }
            .nav-links a {
                font-size: 1.3rem;
            }
            .hamburger {
                display: block;
            }
            .nav-active {
                transform: translateX(0);
            }
            .hero h1 {
                font-size: 2.9rem;
            }
            .section h2 {
                font-size: 2.4rem;
            }
            .section h3 {
                font-size: 1.8rem;
            }
            .stat-number {
                font-size: 3.4rem;
            }
            .btn {
                padding: 11px 24px;
                font-size: 1.05rem;
            }
        }
        @media (max-width: 991px) {
            .navbar {
                padding: 14px 18px;
            }
            .logo {
                font-size: 1.7rem;
            }
            .hero {
                padding: 0 25px;
                margin: 60px auto 70px;
            }
            .hero h1 {
                font-size: 2.6rem;
            }
            .hero p {
                font-size: 1.25rem;
                margin-bottom: 40px;
            }
            .container {
                padding: 0 25px;
            }
            .section {
                padding: 45px 30px;
                margin-bottom: 75px;
            }
            .section h2 {
                font-size: 2.2rem;
                margin-bottom: 40px;
            }
            .section h3 {
                font-size: 1.7rem;
                margin: 45px 0 25px;
            }
            .section h4 {
                font-size: 1.45rem;
            }
            .btn {
                padding: 11px 22px;
                font-size: 1.05rem;
                width: 100%;
                margin-bottom: 20px;
            }
            .btn-download {
                margin-right: 0;
            }
            .feature-grid {
                gap: 35px;
            }
            .game-stats {
                flex-direction: column;
                align-items: center;
                padding: 35px 25px;
            }
            .stat-item {
                margin: 20px 0;
                width: 100%;
            }
            .tabs {
                margin-bottom: 40px;
            }
            .tab {
                padding: 18px 28px;
                font-size: 1.05rem;
            }
            .data-table th, .data-table td {
                padding: 18px 20px;
                font-size: 1.1rem;
            }
            .highlight {
                padding: 25px 30px;
            }
            .image-caption {
                font-size: 1rem;
            }
        }
        @media (max-width: 767px) {
            .nav-links {
                width: 100%;
                max-width: none;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .section h2 {
                font-size: 2rem;
            }
            .section p {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }
            .footer {
                padding: 75px 25px 40px;
            }
            .footer-container {
                gap: 50px;
            }
            .footer-column h3 {
                font-size: 1.5rem;
                margin-bottom: 35px;
            }
            .tags {
                gap: 15px;
            }
            .tag {
                padding: 10px 22px;
                font-size: 1rem;
            }
            .copyright {
                font-size: 1.05rem;
                padding-top: 50px;
                margin-top: 50px;
            }
        }
        @media (max-width: 575px) {
            .hero h1 {
                font-size: 2rem;
            }
            .section h2 {
                font-size: 1.8rem;
            }
            .section h3 {
                font-size: 1.6rem;
            }
            .section ul, .section ol {
                margin-left: 35px;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .game-stats {
                padding: 30px 20px;
            }
            .stat-number {
                font-size: 2.8rem;
            }
            .stat-label {
                font-size: 1.15rem;
            }
            .quote {
                padding: 25px 28px;
            }
            .quote p {
                font-size: 1.1rem;
            }
            .footer {
                padding: 65px 20px 35px;
            }
            .footer-container {
                gap: 40px;
            }
            .copyright-links a {
                margin: 0 8px;
                display: inline-block;
                margin-bottom: 10px;
            }
        }
        .toggle .line1 {
            transform: rotate(-45deg) translate(-7px, 8px);
        }
        .toggle .line2 {
            opacity: 0;
        }
        .toggle .line3 {
            transform: rotate(45deg) translate(-7px, -8px);
        }
        :focus-visible {
            outline: 3px solid #FBBF24;
            outline-offset: 4px;
        }
        @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;
            }
        }
