        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.8;
            color: #333;
            background-color: #f9f5f0;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #FF6B00 0%, #FF4500 100%);
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(90deg, #fff 0%, #ffd700 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .logo span {
            font-style: italic;
            font-size: 1.5rem;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .btn {
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn-login {
            background-color: #ffffff;
            color: #FF6B00;
            margin-right: 10px;
        }
        .btn-login:hover {
            background-color: #f0f0f0;
            transform: translateY(-2px);
        }
        .btn-download {
            background-color: #ffd700;
            color: #FF4500;
        }
        .btn-download:hover {
            background-color: #ffc107;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        main {
            padding: 40px 0;
        }
        .page-title {
            font-size: 2.5rem;
            color: #FF6B00;
            margin-bottom: 30px;
            text-align: center;
            border-bottom: 3px solid #FF6B00;
            padding-bottom: 15px;
        }
        .intro-section {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 40px;
        }
        .intro-section p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #fff3e0;
            border-left: 4px solid #FF6B00;
            padding: 15px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight h3 {
            color: #FF4500;
            margin-bottom: 10px;
        }
        section {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 40px;
        }
        section h2 {
            color: #FF6B00;
            margin-bottom: 25px;
            font-size: 1.8rem;
            border-bottom: 2px solid #ffcc80;
            padding-bottom: 10px;
        }
        section h3 {
            color: #FF4500;
            margin: 20px 0 15px;
            font-size: 1.4rem;
        }
        section p {
            margin-bottom: 15px;
            text-align: justify;
        }
        .game-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .feature-card {
            background-color: #fff8f0;
            border-radius: 10px;
            padding: 20px;
            border: 1px solid #ffe0b2;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.08);
        }
        .feature-card h4 {
            color: #FF6B00;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feature-card p {
            font-size: 0.95rem;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .character-card {
            background-color: #fff8f0;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            border: 1px solid #ffe0b2;
        }
        .character-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
            border: 2px solid #FF6B00;
        }
        .character-card h4 {
            color: #FF4500;
            margin-bottom: 8px;
        }
        .game-modes {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .mode-card {
            background-color: #fff8f0;
            border-radius: 10px;
            padding: 20px;
            display: flex;
            gap: 20px;
            align-items: center;
        }
        .mode-card img {
            width: 150px;
            height: 100px;
            object-fit: cover;
            border-radius: 8px;
            border: 2px solid #FF6B00;
        }
        .mode-details h4 {
            color: #FF6B00;
            margin-bottom: 10px;
        }
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin: 30px 0;
        }
        .stat-card {
            background-color: #fff8f0;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            border: 1px solid #ffe0b2;
        }
        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: #FF4500;
            margin-bottom: 5px;
        }
        .stat-label {
            font-size: 0.9rem;
            color: #666;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ffe0b2;
        }
        th {
            background-color: #fff3e0;
            color: #FF6B00;
            font-weight: 600;
        }
        tr:hover {
            background-color: #fff8f0;
        }
        blockquote {
            font-style: italic;
            padding: 15px 20px;
            margin: 25px 0;
            border-left: 4px solid #FF6B00;
            background-color: #fff3e0;
            border-radius: 0 8px 8px 0;
            color: #555;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 50px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        .footer-column h3 {
            color: #ffd700;
            margin-bottom: 20px;
            font-size: 1.3rem;
            border-bottom: 2px solid #FF6B00;
            padding-bottom: 10px;
            display: inline-block;
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column ul li {
            margin-bottom: 10px;
        }
        .footer-column a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-column a:hover {
            color: #ffd700;
        }
        .recommendation {
            background-color: #444;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 30px;
        }
        .recommendation h3 {
            color: #ffd700;
            margin-bottom: 15px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #555;
            font-size: 0.9rem;
            color: #ccc;
        }
        @media (max-width: 992px) {
            .mode-card {
                flex-direction: column;
                text-align: center;
            }
            .mode-card img {
                width: 100%;
                max-width: 300px;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            nav {
                display: none;
                width: 100%;
                margin-top: 15px;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 10px;
            }
            .hamburger {
                display: block;
            }
            .btn-group {
                margin-top: 15px;
                width: 100%;
                display: flex;
                justify-content: center;
            }
            .page-title {
                font-size: 2rem;
            }
            section h2 {
                font-size: 1.6rem;
            }
            section h3 {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.5rem;
            }
            .page-title {
                font-size: 1.8rem;
            }
            .intro-section, section {
                padding: 20px;
            }
            .stat-value {
                font-size: 1.5rem;
            }
            th, td {
                padding: 10px;
                font-size: 0.9rem;
            }
        }
