        * {
            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;
            font-size: 16px;
        }
        a {
            text-decoration: none;
            color: #2c3e50;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e67e22;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #e67e22;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: #2c3e50;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links li a {
            font-weight: 500;
            padding: 8px 0;
            position: relative;
        }
        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #e67e22;
            transition: width 0.3s ease;
        }
        .nav-links li a:hover::after {
            width: 100%;
        }
        .cta-buttons {
            display: flex;
            gap: 15px;
        }
        .btn {
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        .btn-download {
            background-color: #e67e22;
            color: #fff;
        }
        .btn-download:hover {
            background-color: #d35400;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(230, 126, 34, 0.3);
        }
        .btn-login {
            background-color: #2c3e50;
            color: #fff;
        }
        .btn-login:hover {
            background-color: #1a252f;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(44, 62, 80, 0.3);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #2c3e50;
        }
        .hero {
            background: linear-gradient(135deg, #fdf2e9 0%, #faf0e6 100%);
            padding: 60px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        .hero h1 span {
            color: #e67e22;
        }
        .hero p {
            font-size: 1.2rem;
            color: #555;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .hero .cta-buttons {
            justify-content: center;
            gap: 20px;
        }
        .section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2.2rem;
            color: #2c3e50;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #e67e22;
        }
        .section-content {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 30px;
            margin-bottom: 40px;
        }
        .subsection-title {
            font-size: 1.6rem;
            color: #2c3e50;
            margin: 30px 0 20px;
            padding-left: 15px;
            border-left: 4px solid #e67e22;
        }
        .para {
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: #444;
        }
        .para strong {
            color: #2c3e50;
        }
        .highlight {
            background-color: #fef9f5;
            border-left: 4px solid #e67e22;
            padding: 15px 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .highlight p {
            font-weight: 500;
            color: #333;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .responsive-img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .feature-card {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .feature-icon {
            font-size: 2rem;
            color: #e67e22;
            margin-bottom: 15px;
        }
        .feature-card h3 {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        .feature-card p {
            color: #555;
            font-size: 1rem;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .character-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .character-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        }
        .character-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .character-info {
            padding: 20px;
        }
        .character-info h3 {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        .character-region {
            color: #e67e22;
            font-weight: 500;
            margin-bottom: 15px;
            display: block;
        }
        .character-stats {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }
        .stat {
            text-align: center;
        }
        .stat-label {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 3px;
        }
        .stat-value {
            font-weight: 600;
            color: #2c3e50;
        }
        .character-bio {
            font-size: 0.95rem;
            color: #555;
        }
        .game-mode-list {
            list-style: none;
            margin: 30px 0;
        }
        .game-mode-item {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 15px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }
        .mode-icon {
            font-size: 1.8rem;
            color: #e67e22;
            margin-top: 3px;
        }
        .mode-content h3 {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        .mode-content p {
            color: #555;
            font-size: 1rem;
        }
        .faq-list {
            margin: 30px 0;
        }
        .faq-item {
            margin-bottom: 15px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }
        .faq-question {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-question::after {
            content: '+';
            color: #e67e22;
            font-size: 1.2rem;
        }
        .faq-answer {
            color: #555;
            display: none;
        }
        .faq-item.active .faq-answer {
            display: block;
        }
        .faq-item.active .faq-question::after {
            content: '-';
        }
        footer {
            background-color: #2c3e50;
            color: #fff;
            padding: 60px 0 30px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #e67e22;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links li a {
            color: #ddd;
            transition: color 0.3s ease;
        }
        .footer-links li a:hover {
            color: #e67e22;
            padding-left: 5px;
        }
        .recommendation {
            background-color: #34495e;
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
        }
        .recommendation h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #e67e22;
        }
        .recommendation p {
            color: #eee;
            line-height: 1.7;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #34495e;
            color: #bbb;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.4rem;
            }
            .section-title {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links, .cta-buttons {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .mobile-nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #fff;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                padding: 20px;
                display: none;
            }
            .mobile-nav.active {
                display: block;
            }
            .mobile-nav-links {
                list-style: none;
                margin-bottom: 20px;
            }
            .mobile-nav-links li {
                margin-bottom: 15px;
            }
            .mobile-nav-links li a {
                font-size: 1.1rem;
                color: #2c3e50;
                font-weight: 500;
            }
            .mobile-cta {
                display: flex;
                gap: 15px;
                justify-content: center;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .section {
                padding: 40px 0;
            }
            .section-content {
                padding: 20px;
            }
            .subsection-title {
                font-size: 1.4rem;
            }
            .game-mode-item {
                flex-direction: column;
                gap: 10px;
            }
            .mode-icon {
                align-self: center;
            }
        }
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .btn {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .feature-grid, .character-grid {
                gap: 20px;
            }
            .footer-content {
                gap: 30px;
            }
        }
