* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #2c3e50;
            line-height: 1.8;
            padding-bottom: 80px;
        }
        .container {
            width: 94%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 3px 15px rgba(0,0,0,0.2);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: #ffeb3b;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            white-space: nowrap;
        }
        .logo span {
            color: white;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 6px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links a:hover {
            color: #ffeb3b;
            border-bottom: 3px solid #ffeb3b;
        }
        .daman-link {
            background-color: #ffeb3b;
            padding: 8px 20px;
            border-radius: 30px;
            color: #e74c3c !important;
            font-weight: 800;
            border-bottom: none !important;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        .daman-link:hover {
            background-color: #fbc02d;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.2);
        }
        .menu-btn {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: white;
            z-index: 10000;
        }
        .hero {
            background: linear-gradient(135deg, #ff6b6b, #e74c3c);
            color: white;
            padding: 60px 0;
            border-radius: 0 0 40px 40px;
            margin-bottom: 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: "🏀";
            position: absolute;
            top: 30px;
            left: 30px;
            font-size: 10rem;
            opacity: 0.12;
            transform: rotate(-20deg);
        }
        .hero::after {
            content: "🔥";
            position: absolute;
            bottom: 30px;
            right: 30px;
            font-size: 10rem;
            opacity: 0.12;
            transform: rotate(20deg);
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            color: #ffeb3b;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            position: relative;
            z-index: 1;
            line-height: 1.3;
        }
        .hero p {
            font-size: 1.35rem;
            max-width: 900px;
            margin: 0 auto 35px;
            position: relative;
            z-index: 1;
        }
        .btn-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .btn {
            padding: 16px 40px;
            border: none;
            border-radius: 40px;
            font-size: 1.25rem;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .download-btn {
            background-color: #27ae60;
            color: white;
        }
        .download-btn:hover {
            background-color: #219653;
            transform: translateY(-4px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.25);
        }
        .login-btn {
            background-color: #ffeb3b;
            color: #e74c3c;
        }
        .login-btn:hover {
            background-color: #fbc02d;
            transform: translateY(-4px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.25);
        }
        .content {
            background-color: white;
            border-radius: 25px;
            padding: 40px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            margin-bottom: 50px;
        }
        h2 {
            font-size: 2.4rem;
            color: #e74c3c;
            margin: 60px 0 30px;
            padding-bottom: 15px;
            border-bottom: 4px solid #ff9800;
            position: relative;
        }
        h2::after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100px;
            height: 4px;
            background-color: #e74c3c;
        }
        h3 {
            font-size: 1.8rem;
            color: #2c3e50;
            margin: 40px 0 20px;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "🔥";
            margin-right: 12px;
            color: #e74c3c;
        }
        h4 {
            font-size: 1.4rem;
            color: #e74c3c;
            margin: 30px 0 18px;
            display: flex;
            align-items: center;
        }
        h4::before {
            content: "🏀";
            margin-right: 10px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.12rem;
            color: #34495e;
        }
        .highlight {
            font-weight: 800;
            color: #e74c3c;
            font-size: 1.18rem;
        }
        .keyword {
            font-weight: 900;
            color: #e74c3c;
            font-size: 1.2rem;
        }
        .emoji {
            margin-right: 12px;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }
        .image-caption {
            font-size: 1.05rem;
            color: #7f8c8d;
            padding: 15px 0;
            background-color: #f8f9fa;
            font-style: italic;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            font-size: 1.1rem;
        }
        .stats-table th, .stats-table td {
            padding: 16px 20px;
            text-align: left;
            border-bottom: 2px solid #ecf0f1;
        }
        .stats-table th {
            background-color: #e74c3c;
            color: white;
            font-weight: 800;
            text-transform: uppercase;
            font-size: 1rem;
            letter-spacing: 1px;
        }
        .stats-table tr:hover {
            background-color: #fff5f5;
            transform: scale(1.008);
            transition: transform 0.2s ease;
        }
        .stats-table tr:nth-child(even) {
            background-color: #fafafa;
        }
        .list-container {
            margin: 30px 0 40px 40px;
        }
        .list-container li {
            margin-bottom: 18px;
            font-size: 1.12rem;
            color: #34495e;
            position: relative;
            padding-left: 25px;
        }
        .list-container li::before {
            content: "🏀";
            position: absolute;
            left: 0;
            top: 2px;
            color: #e74c3c;
        }
        .tabs {
            display: flex;
            gap: 15px;
            margin: 35px 0;
            flex-wrap: wrap;
            border-bottom: 2px solid #ecf0f1;
            padding-bottom: 12px;
        }
        .tab-btn {
            padding: 12px 24px;
            background-color: #f1f2f6;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
        }
        .tab-btn.active {
            background-color: #e74c3c;
            color: white;
            box-shadow: 0 4px 10px rgba(231,76,60,0.3);
        }
        .tab-btn:hover:not(.active) {
            background-color: #ffebee;
            transform: translateY(-3px);
        }
        .tab-content {
            padding: 30px;
            border-radius: 20px;
            background-color: #fef9f9;
            margin-bottom: 30px;
            border-left: 5px solid #e74c3c;
        }
        .community-card {
            background-color: #fff3e0;
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
            border-left: 6px solid #ff9800;
            box-shadow: 0 3px 12px rgba(0,0,0,0.06);
        }
        .community-card h4 {
            color: #e65100;
            margin-bottom: 15px;
            font-size: 1.35rem;
            display: flex;
            align-items: center;
        }
        .community-card h4::before {
            content: "💬";
            margin-right: 10px;
        }
        .community-card p {
            margin-bottom: 18px;
        }
        .dev-response {
            background-color: #e3f2fd;
            padding: 18px;
            border-radius: 10px;
            margin-top: 15px;
            border-left: 4px solid #2196f3;
        }
        .dev-response strong {
            color: #2196f3;
            font-size: 1.15rem;
        }
        .strategy-card {
            background-color: #e8f5e9;
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
            border-top: 6px solid #4caf50;
            box-shadow: 0 3px 12px rgba(0,0,0,0.06);
        }
        .strategy-card h4 {
            color: #2e7d32;
            margin-bottom: 18px;
        }
        .event-card {
            background-color: #fce4ec;
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            align-items: center;
            box-shadow: 0 3px 12px rgba(0,0,0,0.06);
        }
        .event-icon {
            font-size: 3.5rem;
            flex: 1 1 60px;
            text-align: center;
        }
        .event-details {
            flex: 3 1 350px;
        }
        .event-details h4 {
            color: #c2185b;
            margin-bottom: 12px;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 60px 0 30px;
            border-radius: 40px 40px 0 0;
            margin-top: 80px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-section h4 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: #ffeb3b;
            padding-bottom: 12px;
            border-bottom: 3px solid #34495e;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.1rem;
        }
        .footer-links a:hover {
            color: #ffeb3b;
            padding-left: 8px;
        }
        .game-type-nav {
            margin: 40px 0;
        }
        .game-type-nav h4 {
            margin-bottom: 20px;
            color: #ffeb3b;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .type-links a {
            background-color: #34495e;
            padding: 10px 20px;
            border-radius: 30px;
            color: white;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
        }
        .type-links a:hover {
            background-color: #e74c3c;
            transform: translateY(-3px);
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0 50px;
        }
        .tag {
            background-color: #34495e;
            padding: 10px 22px;
            border-radius: 30px;
            font-size: 1.05rem;
            transition: all 0.3s ease;
        }
        .tag a {
            color: white;
            text-decoration: none;
        }
        .tag:hover {
            background-color: #e74c3c;
            transform: translateY(-3px);
        }
        .recommendation {
            background-color: #34495e;
            padding: 30px;
            border-radius: 20px;
            margin: 40px 0;
            text-align: center;
            font-size: 1.25rem;
            line-height: 2;
        }
        .recommendation a {
            color: #ffeb3b;
            font-weight: 800;
            text-decoration: none;
        }
        .recommendation a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 2px solid #34495e;
            font-size: 1.1rem;
            color: #bdc3c7;
        }
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            .hero p {
                font-size: 1.25rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            h3 {
                font-size: 1.7rem;
            }
            .content {
                padding: 35px;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 25px;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .btn {
                padding: 14px 35px;
                font-size: 1.15rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            .stats-table th, .stats-table td {
                padding: 14px 18px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 90px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #e74c3c, #c0392b);
                padding: 30px;
                gap: 25px;
                box-shadow: 0 15px 15px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-btn {
                display: block;
            }
            .hero {
                padding: 50px 0;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.15rem;
            }
            .btn-container {
                gap: 20px;
            }
            .btn {
                padding: 12px 30px;
                font-size: 1.05rem;
            }
            h2 {
                font-size: 1.8rem;
                margin: 50px 0 25px;
            }
            h3 {
                font-size: 1.5rem;
            }
            .content {
                padding: 30px;
            }
            .list-container {
                margin-left: 30px;
            }
            .tabs {
                gap: 10px;
            }
            .tab-btn {
                padding: 10px 20px;
                font-size: 1rem;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.5rem;
            }
            .hero {
                padding: 40px 0;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .btn-container {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            .content {
                padding: 25px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
            }
            .stats-table {
                font-size: 1rem;
            }
            .stats-table th, .stats-table td {
                padding: 12px 15px;
            }
            .event-card {
                flex-direction: column;
                text-align: center;
            }
            .footer-container {
                gap: 35px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.7rem;
            }
            .footer-container {
                gap: 30px;
            }
            .tags {
                gap: 10px;
            }
            .tag {
                padding: 8px 18px;
                font-size: 0.95rem;
            }
        }
