* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
            color: white;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: #fff;
            text-decoration: none;
        }
        .logo span {
            color: #ffdd59;
        }
        nav {
            display: flex;
            gap: 2rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        nav a:hover {
            color: #ffdd59;
        }
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .btn {
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        .btn-download {
            background-color: #ffdd59;
            color: #333;
            margin-right: 1rem;
        }
        .btn-login {
            background-color: #2c3e50;
            color: white;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        h1 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            text-align: center;
            padding-bottom: 1rem;
            border-bottom: 2px solid #ff6b6b;
        }
        h2 {
            font-size: 2rem;
            color: #34495e;
            margin: 2.5rem 0 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        h2::before {
            content: "🏐";
            font-size: 1.8rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #4a6990;
            margin: 1.8rem 0 1rem;
            padding-left: 0.8rem;
            border-left: 3px solid #4ecdc4;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.8;
        }
        .intro-section {
            background-color: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 3rem;
        }
        .intro-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }
        .intro-text {
            flex: 1 1 600px;
        }
        .intro-image {
            flex: 1 1 300px;
            text-align: center;
        }
        .intro-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .feature-card {
            background-color: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.07);
            transition: transform 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-5px);
        }
        .feature-card h3 {
            color: #ff6b6b;
            border-left-color: #ff6b6b;
        }
        .feature-card p {
            font-size: 1rem;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .character-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .character-img {
            height: 200px;
            background-color: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .character-img img {
            max-height: 180px;
            border-radius: 8px;
        }
        .character-info {
            padding: 1.2rem;
        }
        .character-info h3 {
            margin-top: 0;
            color: #2c3e50;
            border-left: none;
            padding-left: 0;
        }
        .character-ability {
            background-color: #f8f9fa;
            padding: 0.8rem;
            border-radius: 6px;
            margin: 1rem 0;
        }
        .character-ability h4 {
            color: #4ecdc4;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }
        .map-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .map-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .map-img {
            height: 180px;
            background-color: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .map-img img {
            max-height: 160px;
            border-radius: 8px;
        }
        .map-info {
            padding: 1.2rem;
        }
        .map-info h3 {
            margin-top: 0;
            color: #34495e;
            border-left: none;
            padding-left: 0;
        }
        .mode-list {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        .mode-item {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
        }
        .mode-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .mode-item h3 {
            color: #4a6990;
        }
        .progression-system {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .currency-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .currency-card {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 1.2rem;
            text-align: center;
        }
        .currency-icon {
            font-size: 2rem;
            margin-bottom: 0.8rem;
        }
        .currency-name {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }
        .technical-specs {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
        }
        .spec-table th, .spec-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        .spec-table th {
            background-color: #f8f9fa;
            color: #2c3e50;
        }
        .community-section {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        .esports-events {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .event-card {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 1.2rem;
            border-left: 4px solid #ff6b6b;
        }
        .event-card h4 {
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }
        .faq-section {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .faq-item {
            margin-bottom: 1.5rem;
        }
        .faq-question {
            font-weight: 600;
            color: #34495e;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .faq-question::before {
            content: "❓";
        }
        .faq-answer {
            color: #555;
            padding-left: 1.5rem;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 3rem 2rem;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h3 {
            color: #ffdd59;
            margin-bottom: 1.5rem;
            border-left: none;
            padding-left: 0;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffdd59;
        }
        .recommendation {
            background-color: #34495e;
            border-radius: 10px;
            padding: 1.5rem;
            margin-top: 1rem;
        }
        .recommendation h4 {
            color: #ffdd59;
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #34495e;
            color: #bdc3c7;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                gap: 1rem;
                width: 100%;
                text-align: center;
                margin-top: 1rem;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 1.5rem;
            }
            .btn-container {
                width: 100%;
                display: flex;
                justify-content: center;
                gap: 1rem;
            }
            .btn-download, .btn-login {
                margin: 0;
                flex: 1;
                text-align: center;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1rem;
            }
            .intro-grid {
                flex-direction: column;
            }
            .container {
                padding: 0 1rem;
            }
            .intro-section, .mode-list, .progression-system, .technical-specs, .community-section, .faq-section {
                padding: 1.5rem;
            }
        }
        @media (max-width: 576px) {
            .feature-grid, .character-grid, .map-grid, .currency-grid, .esports-events {
                grid-template-columns: 1fr;
            }
            .btn {
                padding: 0.7rem 1rem;
                font-size: 0.9rem;
            }
            .logo {
                font-size: 1.5rem;
            }
        }
