/* CSS Variables */
:root {
    --primary-color: #00ff88;
    --secondary-color: #00b8ff;
    --bg-dark: #0a192f;
    --bg-darker: #060f1e;
    --text-white: #e6f1ff;
    --text-gray: #8892b0;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.highlight {
    color: var(--primary-color);
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Legal Disclaimer Bar */
.top-disclaimer {
    background-color: #ff3333;
    color: white;
    text-align: center;
    padding: 5px 0;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Navigation */
.navbar {
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo img {
    height: 60px;
    /* Adjust height as needed */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-dark);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 700 !important;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
    transition: var(--transition);
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
    transform: translateY(-2px);
    color: var(--bg-dark) !important;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, rgba(10, 25, 47, 0) 70%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.badge {
    display: inline-block;
    background: rgba(0, 184, 255, 0.1);
    color: var(--secondary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 184, 255, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1faf53;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--border);
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.trust-indicators {
    display: flex;
    gap: 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.trust-indicators i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Hero Visual (CSS Only Cricket Ball) */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.cricket-ball-visual {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, #ff3333, #aa0000);
    border-radius: 50%;
    position: relative;
    box-shadow: inset -10px -10px 30px rgba(0, 0, 0, 0.5), 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.cricket-ball-visual::before {
    content: '';
    /* Seam */
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px dashed #fff;
    top: 0;
    left: 0;
    transform: rotate(45deg) scaleX(0.4);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Provider Table */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-gray);
}

.provider-table-wrapper {
    overflow-x: auto;
    background: var(--bg-darker);
    border-radius: 10px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.provider-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.provider-table th,
.provider-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.provider-table th {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-gray);
    font-weight: 600;
}

.provider-table tr:last-child td {
    border-bottom: none;
}

.rank-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-weight: 700;
}

.rank-1 {
    background: #ffd700;
    color: #000;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.platform-info {
    display: flex;
    flex-direction: column;
}

.tag {
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    width: fit-content;
    margin-top: 5px;
}

.tag.recommended {
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary-color);
}

.stars {
    color: #ffd700;
}

.btn-table {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--bg-dark);
    font-weight: 700;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-table:hover {
    transform: scale(1.05);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-dark);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-gray);
}

/* Steps */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    counter-reset: step;
}

.step {
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--bg-darker);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step h3 {
    margin-bottom: 15px;
}

.step p {
    color: var(--text-gray);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer {
    padding: 0 20px;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    padding: 20px;
    height: auto;
    border-top-color: var(--border);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer p {
    color: var(--text-gray);
}

/* SEO Content */
.seo-content {
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
    padding: 40px 0;
}

.seo-content h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.seo-content p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: black;
    padding: 60px 0 20px;
    border-top: 1px solid var(--border);
}

.disclaimer-box {
    border: 1px solid #333;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 40px;
    background: #111;
}

.disclaimer-box h4 {
    color: #ff3333;
    margin-bottom: 10px;
}

.disclaimer-box p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    color: #444;
    border-top: 1px solid #222;
    padding-top: 20px;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-btn 2s infinite;
}

.floating-whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.tooltip-text {
    visibility: hidden;
    width: 100px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.floating-whatsapp:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

@keyframes pulse-btn {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 40px;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .menu-toggle {
        display: block;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 30px;
    }
}