* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', sans-serif;
        }
        body {
            background-color: #f9f5f0;
            color: #1a1a2e;
            line-height: 1.8;
            padding-bottom: 80px;
            font-size: 16px;
        }
        .header {
            background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
            color: #ffffff;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .container {
            width: 92%;
            margin: 0 auto;
            max-width: 1400px;
        }
        .logo {
            font-size: 2.4rem;
            font-weight: 900;
            color: #ffd166;
            text-align: center;
            margin-bottom: 12px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .logo span {
            color: #ffffff;
        }
        .nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 18px;
            align-items: center;
        }
        .nav a {
            color: #fff;
            text-decoration: none;
            padding: 10px 18px;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 1rem;
        }
        .nav a:hover {
            background-color: rgba(255,255,255,0.18);
            transform: translateY(-2px);
        }
        .nav .daman-link {
            background-color: #ffd166;
            color: #0f3460;
            font-weight: 700;
            padding: 10px 22px;
            border: 2px solid #ffd166;
        }
        .nav .daman-link:hover {
            background-color: #fff;
            color: #0f3460;
            box-shadow: 0 4px 8px rgba(255,209,102,0.3);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            text-align: center;
            color: #ffd166;
        }
        @media (max-width: 768px) {
            .nav {
                display: none;
                flex-direction: column;
                align-items: center;
                gap: 12px;
                margin-top: 15px;
                background-color: rgba(15, 52, 96, 0.95);
                padding: 15px;
                border-radius: 10px;
            }
            .nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 1.8rem;
            }
        }
        h1 {
            font-size: 2.5rem;
            color: #0f3460;
            text-align: center;
            margin: 45px 0 30px;
            padding-bottom: 20px;
            border-bottom: 4px solid #ffd166;
            font-weight: 900;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2rem;
            color: #16213e;
            margin: 55px 0 25px;
            padding-left: 20px;
            border-left: 5px solid #e94560;
            font-weight: 800;
        }
        h3 {
            font-size: 1.5rem;
            color: #2b59c3;
            margin: 35px 0 18px;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "🏏 ";
            margin-right: 10px;
        }
        h4 {
            font-size: 1.25rem;
            color: #e94560;
            margin: 25px 0 12px;
            font-weight: 600;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
            line-height: 1.8;
        }
        .bold {
            font-weight: 800;
            color: #e94560;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 2px 8px;
            border-radius: 5px;
            color: #d97706;
            font-weight: 600;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 18px 35px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 6px 15px rgba(0,0,0,0.12);
        }
        .download-btn {
            background: linear-gradient(135deg, #ff9f1c 0%, #e76f51 100%);
            color: #fff;
            border: 2px solid #ff9f1c;
        }
        .download-btn:hover {
            background: linear-gradient(135deg, #e76f51 0%, #d62828 100%);
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(231, 111, 81, 0.3);
        }
        .login-btn {
            background: linear-gradient(135deg, #3a86ff 0%, #2b59c3 100%);
            color: #fff;
            border: 2px solid #3a86ff;
        }
        .login-btn:hover {
            background: linear-gradient(135deg, #2b59c3 0%, #16213e 100%);
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(43, 89, 195, 0.3);
        }
        .img-container {
            text-align: center;
            margin: 45px 0;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border: 4px solid #ffffff;
        }
        ul {
            margin: 25px 0 25px 50px;
        }
        li {
            margin-bottom: 15px;
            font-size: 1.05rem;
            line-height: 1.8;
            position: relative;
        }
        li::before {
            content: "✅ ";
            position: absolute;
            left: -30px;
            color: #2b59c3;
        }
        ol {
            margin: 25px 0 25px 50px;
        }
        ol li::before {
            content: none;
        }
        ol li {
            list-style-type: decimal;
            padding-left: 12px;
        }
        .stats-card {
            background-color: #fff;
            border-radius: 18px;
            padding: 35px;
            margin: 45px 0;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            align-items: center;
        }
        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 180px;
            padding: 18px;
            background-color: #f8f9fa;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #e94560;
            margin-bottom: 8px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        .stat-label {
            font-size: 1rem;
            color: #4a5568;
            font-weight: 500;
        }
        .review-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            margin: 45px 0;
        }
        .review-card {
            background-color: #fff;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 18px rgba(0,0,0,0.07);
            border-top: 5px solid #3a86ff;
        }
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .reviewer-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: #fff;
            font-size: 1.3rem;
            margin-right: 15px;
            box-shadow: 0 4px 10px rgba(22, 33, 62, 0.3);
        }
        .review-rating {
            color: #ffd166;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .review-text {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #4a5568;
        }
        .tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 35px 0;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 12px;
        }
        .tab {
            padding: 10px 20px;
            background-color: #f1f5f9;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            color: #4a5568;
        }
        .tab.active {
            background-color: #2b59c3;
            color: #fff;
            box-shadow: 0 4px 8px rgba(43, 89, 195, 0.2);
        }
        .guide-card {
            background-color: #fff;
            border-radius: 12px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.06);
            border-left: 5px solid #3a86ff;
        }
        .guide-title {
            font-size: 1.3rem;
            color: #0f3460;
            margin-bottom: 15px;
            font-weight: 700;
        }
        .event-card {
            background: linear-gradient(135deg, #fef7fb 0%, #f0f8fb 100%);
            border-radius: 18px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
        }
        .event-title {
            font-size: 1.4rem;
            color: #e94560;
            margin-bottom: 18px;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        .event-title::before {
            content: "🎉 ";
            margin-right: 10px;
        }
        .community-platforms {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 35px 0;
            justify-content: center;
        }
        .community-platform {
            background-color: #fff;
            padding: 22px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            flex: 1;
            min-width: 250px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        .community-platform:hover {
            transform: translateY(-5px);
        }
        .platform-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #2b59c3;
        }
        .platform-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 10px;
        }
        .platform-desc {
            font-size: 1rem;
            color: #718096;
        }
        .footer {
            background-color: #1a1a2e;
            color: #fff;
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .footer h3 {
            color: #ffd166;
            margin-bottom: 30px;
            border-bottom: 3px solid #ffd166;
            padding-bottom: 15px;
            font-size: 1.5rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        .genre-links, .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .genre-links a, .tag-links a {
            color: #e2e8f0;
            text-decoration: none;
            padding: 8px 15px;
            border-radius: 8px;
            background-color: #2b2b43;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .genre-links a:hover, .tag-links a:hover {
            background-color: #ffd166;
            color: #1a1a2e;
            font-weight: 600;
        }
        .recommendation {
            margin: 40px 0;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #f8fafc;
            text-align: center;
            padding: 20px;
            background-color: #2b2b43;
            border-radius: 12px;
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #2b2b43;
            font-size: 1rem;
            color: #a0aec0;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.1rem;
                margin: 35px 0 25px;
                padding-bottom: 18px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 45px 0 22px;
                padding-left: 15px;
            }
            h3 {
                font-size: 1.3rem;
                margin: 30px 0 15px;
            }
            .btn {
                padding: 15px 30px;
                font-size: 1.1rem;
                width: 100%;
                max-width: 350px;
            }
            .stats-card {
                padding: 25px;
                gap: 20px;
            }
            .stat-number {
                font-size: 2.1rem;
            }
            ul, ol {
                margin: 20px 0 20px 40px;
            }
            li {
                font-size: 1rem;
            }
            li::before {
                left: -25px;
            }
            .review-container {
                gap: 20px;
            }
            .footer {
                padding: 45px 0 25px;
            }
            .footer-container {
                gap: 30px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .stat-item {
                min-width: 150px;
                padding: 12px;
            }
            .stat-number {
                font-size: 1.8rem;
            }
            .btn {
                padding: 12px 25px;
                font-size: 1rem;
            }
            .img-container {
                margin: 35px 0;
            }
            p {
                font-size: 1rem;
                line-height: 1.7;
            }
        }
