* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #F5F5F5;
            color: #1A1A1A;
            line-height: 1.6;
        }
        header {
            background-color: #FF6B00;
            color: white;
            padding: 1rem 5%;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: #1A1A1A;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        nav a:hover {
            color: #1A1A1A;
        }
        .daman-link {
            color: #1A1A1A;
            font-weight: 600;
            text-decoration: underline;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .btn-container {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
        }
        .btn {
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .download-btn {
            background-color: #1A1A1A;
            color: white;
        }
        .login-btn {
            background-color: white;
            color: #FF6B00;
            border: 2px solid #FF6B00;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        main {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 5%;
        }
        h1 {
            font-size: 2.5rem;
            color: #FF6B00;
            margin-bottom: 1.5rem;
            text-align: center;
            line-height: 1.3;
        }
        h2 {
            font-size: 2rem;
            color: #1A1A1A;
            margin: 3rem 0 1.5rem;
            border-bottom: 3px solid #FF6B00;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #FF6B00;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #1A1A1A;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: 700;
            color: #FF6B00;
        }
        .quote {
            font-style: italic;
            border-left: 4px solid #FF6B00;
            padding-left: 1rem;
            margin: 1.5rem 0;
            background-color: #FFF5ED;
            padding: 1rem;
            border-radius: 0 5px 5px 0;
        }
        .emoji {
            margin-right: 0.5rem;
        }
        .intro-section {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 3rem;
            text-align: center;
        }
        .intro-section p {
            max-width: 900px;
            margin: 1rem auto;
        }
        .gameplay-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .gameplay-card {
            background-color: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .gameplay-card h4 {
            color: #FF6B00;
            margin-bottom: 1rem;
        }
        .feature-list {
            list-style: none;
            margin: 1rem 0;
        }
        .feature-list li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
        }
        .feature-list li:before {
            content: "🏀";
            margin-right: 0.8rem;
        }
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .specs-table th, .specs-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #F5F5F5;
        }
        .specs-table th {
            background-color: #FF6B00;
            color: white;
            font-weight: 600;
        }
        .specs-table tr:last-child td {
            border-bottom: none;
        }
        .faq-container {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            margin: 2rem 0;
        }
        .faq-item {
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #F5F5F5;
            padding-bottom: 1rem;
        }
        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .faq-question {
            font-weight: 600;
            color: #1A1A1A;
            margin-bottom: 0.5rem;
        }
        footer {
            background-color: #1A1A1A;
            color: white;
            padding: 3rem 5%;
            margin-top: 5rem;
        }
        .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: #FF6B00;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            border-bottom: 2px solid #FF6B00;
            padding-bottom: 0.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #F5F5F5;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #FF6B00;
        }
        .recommendation {
            background-color: #2D2D2D;
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 1rem;
        }
        .recommendation h4 {
            color: #FF6B00;
            margin-bottom: 1rem;
        }
        .copyright {
            max-width: 1200px;
            margin: 2rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid #3D3D3D;
            text-align: center;
            font-size: 0.9rem;
            color: #AAAAAA;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                margin-top: 1rem;
                width: 100%;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 5%;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn-container {
                flex-direction: column;
            }
            .btn {
                width: 100%;
            }
        }
