        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            line-height: 1.8;
            color: #1C1C1C;
            background-color: #F9F3F0;
            padding-bottom: 60px;
            font-size: 16px;
        }
        .navbar {
            background: linear-gradient(135deg, #8B0000 0%, #B22222 100%);
            padding: 14px 20px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 2px 12px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #FFFFFF;
            font-size: 1.6rem;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .logo span {
            color: #FFD700;
        }
        .nav-links {
            display: flex;
            list-style: none;
            transition: transform 0.3s ease-in-out;
        }
        .nav-links li {
            margin-left: 28px;
        }
        .nav-links a {
            color: #F5F5F5;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.2s ease;
            font-weight: 500;
            padding: 5px 0;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #FFD700;
            transition: width 0.3s ease;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .nav-links a:hover {
            color: #FFD700;
        }
        .btn {
            padding: 10px 22px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            display: inline-block;
            text-align: center;
        }
        .btn-download {
            background-color: #228B22;
            color: white;
            margin-right: 12px;
        }
        .btn-download:hover {
            background-color: #006400;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(34, 139, 34, 0.3);
            color: white;
        }
        .btn-login {
            background-color: #FFD700;
            color: #8B0000;
        }
        .btn-login:hover {
            background-color: #FFC107;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
            color: #8B0000;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 10000;
        }
        .hamburger div {
            width: 26px;
            height: 3px;
            background-color: white;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        .hero {
            max-width: 1300px;
            margin: 45px auto 60px;
            padding: 0 20px;
            text-align: center;
        }
        .hero h1 {
            font-size: 3rem;
            color: #8B0000;
            margin-bottom: 22px;
            line-height: 1.4;
            font-weight: 700;
        }
        .hero h1 span {
            color: #FFD700;
        }
        .hero p {
            font-size: 1.2rem;
            color: #363636;
            max-width: 900px;
            margin: 0 auto 35px;
            line-height: 1.8;
        }
        .hero-buttons {
            margin-top: 35px;
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section {
            margin-bottom: 70px;
            background-color: white;
            border-radius: 18px;
            padding: 45px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            border: 1px solid #F0E6E2;
        }
        .section h2 {
            font-size: 2.3rem;
            color: #8B0000;
            margin-bottom: 35px;
            padding-bottom: 18px;
            border-bottom: 3px solid #FFD700;
            display: inline-block;
            font-weight: 700;
        }
        .section h3 {
            font-size: 1.7rem;
            color: #B22222;
            margin: 40px 0 22px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        .section h3:before {
            content: '⚔️';
            margin-right: 12px;
        }
        .section h4 {
            font-size: 1.35rem;
            color: #CD5C5C;
            margin: 30px 0 18px;
            font-weight: 600;
        }
        .section p {
            margin-bottom: 28px;
            font-size: 1.05rem;
            color: #2D2D2D;
            line-height: 1.8;
            text-align: justify;
        }
        .section ul, .section ol {
            margin-left: 35px;
            margin-bottom: 30px;
        }
        .section li {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #2D2D2D;
            line-height: 1.7;
        }
        .section li strong {
            color: #8B0000;
        }
        .highlight {
            background-color: #FFF8E1;
            border-left: 5px solid #FFD700;
            padding: 20px 25px;
            margin: 35px 0;
            border-radius: 0 12px 12px 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-weight: 500;
            color: #B8860B;
            font-size: 1.08rem;
            line-height: 1.7;
        }
        .highlight.success {
            background-color: #E8F5E9;
            border-left-color: #228B22;
        }
        .highlight.success p {
            color: #006400;
        }
        .highlight.info {
            background-color: #E3F2FD;
            border-left-color: #1976D2;
        }
        .highlight.info p {
            color: #0D47A1;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin: 45px 0;
        }
        .feature-card {
            background-color: #F8F9FA;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid #B22222;
        }
        .feature-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .feature-card h4 {
            font-size: 1.4rem;
            color: #8B0000;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
        }
        .feature-card h4 i {
            margin-right: 12px;
            color: #CD5C5C;
            font-size: 1.6rem;
        }
        .feature-card p {
            margin-bottom: 20px;
        }
        .game-stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 45px 0;
            background-color: #F5F6FA;
            padding: 35px;
            border-radius: 15px;
            border: 1px solid #E0E0E0;
        }
        .stat-item {
            text-align: center;
            margin: 15px 25px;
            flex: 1;
            min-width: 150px;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: #B22222;
            margin-bottom: 8px;
            line-height: 1.2;
        }
        .stat-label {
            font-size: 1.05rem;
            color: #495057;
            font-weight: 500;
        }
        .image-container {
            text-align: center;
            margin: 45px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 1px solid #E0E0E0;
        }
        .image-caption {
            margin-top: 15px;
            font-size: 0.95rem;
            color: #6c757d;
            font-style: italic;
        }
        .tabs {
            display: flex;
            border-bottom: 2px solid #E0E0E0;
            margin-bottom: 35px;
            overflow-x: auto;
            scrollbar-width: none;
        }
        .tabs::-webkit-scrollbar {
            display: none;
        }
        .tab {
            padding: 15px 28px;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            font-weight: 600;
            color: #6c757d;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .tab.active {
            border-bottom: 3px solid #B22222;
            color: #8B0000;
            background-color: #fef7fb;
        }
        .tab:hover {
            color: #8B0000;
            background-color: #f8f9fa;
        }
        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        .tab-content.active {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 35px 0;
            font-size: 1.05rem;
        }
        .data-table th, .data-table td {
            padding: 15px 20px;
            text-align: left;
            border-bottom: 1px solid #E0E0E0;
        }
        .data-table th {
            background-color: #F5F6FA;
            color: #8B0000;
            font-weight: 600;
        }
        .data-table tr:hover {
            background-color: #F8F9FA;
        }
        .footer {
            background-color: #8B0000;
            color: white;
            padding: 70px 30px 30px;
            margin-top: 90px;
        }
        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 45px;
        }
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #FFD700;
            position: relative;
            padding-bottom: 18px;
            font-weight: 600;
        }
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #FFD700;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 18px;
        }
        .footer-links a {
            color: #E0E0E0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-links a:hover {
            color: #FFD700;
            padding-left: 8px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 25px;
        }
        .tag {
            background-color: #B22222;
            padding: 9px 18px;
            border-radius: 25px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #FFD700;
        }
        .tag a {
            color: white;
            text-decoration: none;
        }
        .tag:hover a {
            color: #8B0000;
        }
        .recommendation {
            background-color: #B22222;
            border-radius: 15px;
            padding: 30px;
            margin-top: 40px;
            border: 1px solid #CD5C5C;
        }
        .recommendation h4 {
            color: #FFD700;
            font-size: 1.3rem;
            margin-bottom: 18px;
            font-weight: 600;
        }
        .recommendation p {
            color: #F5F5F5;
            margin-bottom: 0;
            line-height: 1.8;
            font-size: 1.05rem;
        }
        .copyright {
            text-align: center;
            padding-top: 45px;
            margin-top: 45px;
            border-top: 1px solid #CD5C5C;
            font-size: 1rem;
            color: #BDBDBD;
        }
        @media (max-width: 1199px) {
            .hero h1 {
                font-size: 2.6rem;
            }
            .section {
                padding: 40px;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                right: 0;
                top: 0;
                height: 100vh;
                background-color: #8B0000;
                flex-direction: column;
                align-items: center;
                width: 70%;
                max-width: 300px;
                transform: translateX(100%);
                padding-top: 100px;
                box-shadow: -2px 0 15px rgba(0,0,0,0.2);
            }
            .nav-links li {
                margin: 20px 0;
            }
            .nav-links a {
                font-size: 1.1rem;
            }
            .hamburger {
                display: block;
            }
            .nav-active {
                transform: translateX(0);
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .section h2 {
                font-size: 2rem;
            }
            .section h3 {
                font-size: 1.5rem;
            }
            .game-stats {
                padding: 25px;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .navbar {
                padding: 12px 15px;
            }
            .logo {
                font-size: 1.4rem;
            }
            .hero {
                padding: 0 15px;
                margin: 35px auto 45px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1.1rem;
                margin-bottom: 25px;
            }
            .container {
                padding: 0 15px;
            }
            .section {
                padding: 30px 20px;
                margin-bottom: 50px;
            }
            .section h2 {
                font-size: 1.8rem;
                margin-bottom: 25px;
            }
            .section h3 {
                font-size: 1.4rem;
                margin: 30px 0 18px;
            }
            .btn {
                padding: 9px 18px;
                font-size: 0.95rem;
                width: 100%;
                margin-bottom: 10px;
            }
            .btn-download {
                margin-right: 0;
            }
            .feature-grid {
                gap: 20px;
            }
            .game-stats {
                flex-direction: column;
                align-items: center;
            }
            .stat-item {
                margin: 10px 0;
                width: 100%;
            }
            .tabs {
                margin-bottom: 25px;
            }
            .tab {
                padding: 12px 20px;
                font-size: 0.95rem;
            }
            .data-table th, .data-table td {
                padding: 12px 15px;
                font-size: 0.95rem;
            }
        }
        @media (max-width: 576px) {
            .nav-links {
                width: 100%;
                max-width: none;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .section h2 {
                font-size: 1.6rem;
            }
            .section p {
                font-size: 1rem;
                margin-bottom: 22px;
            }
            .highlight {
                padding: 15px 20px;
            }
            .footer {
                padding: 50px 15px 20px;
            }
            .footer-container {
                gap: 30px;
            }
        }
        .toggle .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        .toggle .line2 {
            opacity: 0;
        }
        .toggle .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }
        img {
            loading: lazy;
        }
        :focus-visible {
            outline: 3px solid #FFD700;
            outline-offset: 2px;
        }
