* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            line-height: 1.5;
            color: #333;
            background-color: #f9f9f9;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #ff7e00, #ffcc00);
            padding: 15px 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #fff;
            text-align: center;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .logo span {
            color: #0066cc;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 20px;
            font-weight: 500;
            transition: background 0.3s;
        }
        .nav-links a:hover {
            background: rgba(255,255,255,0.2);
        }
        .nav-links a.active {
            background: #0066cc;
        }
        .hamburger {
            display: none;
            font-size: 24px;
            color: #fff;
            cursor: pointer;
            text-align: right;
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
        }
        .btn {
            padding: 12px 25px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        .btn-download {
            background: #2ecc71;
            color: #fff;
            box-shadow: 0 4px 0 #27ae60;
        }
        .btn-login {
            background: #0066cc;
            color: #fff;
            box-shadow: 0 4px 0 #004c99;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 0 #27ae60, 0 8px 10px rgba(0,0,0,0.1);
        }
        .btn-login:hover {
            box-shadow: 0 6px 0 #004c99, 0 8px 10px rgba(0,0,0,0.1);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .intro {
            background: #fff;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 36px;
            color: #ff7e00;
            margin-bottom: 20px;
            text-align: center;
            border-bottom: 3px solid #0066cc;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 28px;
            color: #0066cc;
            margin: 40px 0 20px;
            border-left: 5px solid #ff7e00;
            padding-left: 15px;
        }
        h3 {
            font-size: 22px;
            color: #333;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 15px;
            font-size: 18px;
            line-height: 1.7;
        }
        .highlight {
            background: #fff3cd;
            padding: 10px 15px;
            border-radius: 8px;
            margin: 20px 0;
            font-weight: 500;
            border-left: 4px solid #ffc107;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .feature-card {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-5px);
        }
        .feature-card h3 {
            color: #ff7e00;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feature-card p {
            color: #555;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .character-card {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            border: 1px solid #eee;
        }
        .character-card img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin-bottom: 15px;
            object-fit: cover;
            border: 3px solid #0066cc;
        }
        .character-card h4 {
            font-size: 20px;
            color: #333;
            margin-bottom: 5px;
        }
        .character-card .role {
            color: #ff7e00;
            font-weight: 500;
            margin-bottom: 10px;
        }
        .game-mode-list {
            list-style-type: none;
            margin: 20px 0;
        }
        .game-mode-list li {
            background: #fff;
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        .game-mode-list li:before {
            content: "🏀";
            font-size: 20px;
            margin-top: 3px;
        }
        .tech-specs {
            background: #e9f5ff;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
        }
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        .spec-table th, .spec-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        .spec-table th {
            background: #0066cc;
            color: #fff;
            font-weight: bold;
        }
        .spec-table tr:nth-child(even) {
            background: #f0f8ff;
        }
        .faq-container {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }
        .faq-question {
            font-weight: bold;
            color: #0066cc;
            font-size: 19px;
            margin-bottom: 8px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-question:after {
            content: "+";
            font-size: 22px;
            color: #ff7e00;
        }
        .faq-answer {
            color: #555;
            font-size: 17px;
            line-height: 1.6;
        }
        .reception-quotes {
            margin: 30px 0;
        }
        .quote {
            font-style: italic;
            background: #fafafa;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 15px;
            border-left: 4px solid #0066cc;
        }
        .quote-author {
            display: block;
            text-align: right;
            color: #777;
            margin-top: 10px;
            font-weight: 500;
        }
        footer {
            background: #333;
            color: #fff;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .footer-section h3 {
            color: #ff7e00;
            margin-bottom: 20px;
            font-size: 20px;
            border-bottom: 2px solid #ffcc00;
            padding-bottom: 10px;
        }
        .footer-links {
            list-style-type: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #ff7e00;
        }
        .recommendation {
            background: #444;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
        }
        .recommendation h4 {
            color: #ffcc00;
            margin-bottom: 10px;
            font-size: 18px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #555;
            color: #aaa;
            font-size: 14px;
        }
        .daman-link {
            color: #ffcc00;
            font-weight: bold;
            text-decoration: none;
        }
        .daman-link:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 80%;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
            }
            .intro {
                padding: 20px;
            }
            .feature-grid, .character-grid {
                grid-template-columns: 1fr;
            }
        }
