* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0088cc;
    --primary-dark: #006699;
    --primary-light: #e8f4fc;
    --primary-glow: rgba(0, 136, 204, 0.4);
    --accent: #f59e0b;
    --accent-2: #10b981;
    --success: #10b981;
    --danger: #ef4444;
    --dark: #0f172a;
    --gray: #64748b;
    --gray-light: #f8fafc;
    --white: #ffffff;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Premium gradient background */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(0, 136, 204, 0.28) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 100% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 0% 80%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    pointer-events: none;
    z-index: 0;
}

/* Floating glow orbs */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.bg-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(56, 189, 248, 0.15);
    top: -100px;
    right: -100px;
    animation: float-glow 8s ease-in-out infinite;
}

.bg-glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(16, 185, 129, 0.12);
    bottom: 20%;
    left: -80px;
    animation: float-glow 10s ease-in-out infinite reverse;
}

@keyframes float-glow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

/* Decorative grid overlay */
.bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

/* Header - premium glass */
header {
    position: relative;
    z-index: 10;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.telegram-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    text-decoration: none;
    transition: all 0.3s;
}

.telegram-name:hover {
    background: rgba(56, 189, 248, 0.25);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.logo:hover {
    color: #38bdf8;
}

.logo-pic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.35), rgba(56, 189, 248, 0.25));
    border-radius: 14px;
    border: 1px solid rgba(56, 189, 248, 0.35);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.2);
}

.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-cricket {
    font-size: 1.75rem;
}

.logo-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    font-size: 1.25rem;
}

main {
    position: relative;
    z-index: 10;
    max-width: 680px;
    margin: 0 auto;
    padding: 1.5rem;
    text-align: center;
}

.hero {
    padding: 2.5rem 0 2rem;
}

/* Format pills - IPL, T20, etc */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.format-pill {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.format-pill:hover {
    background: rgba(56, 189, 248, 0.2);
    border-color: rgba(56, 189, 248, 0.4);
}

/* Instant recognize - premium */
.instant-recognize {
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(90deg, #38bdf8, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

/* Market badge - premium */
.market-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(16, 185, 129, 0.15));
    color: #38bdf8;
    padding: 0.5rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

/* Urgency badge - premium */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    animation: urgency-glow 2s ease-in-out infinite;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes urgency-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(220, 38, 38, 0.6); }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.live-activity {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.live-pulse {
    color: #34d399;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

h1 {
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

.highlight {
    background: linear-gradient(135deg, #38bdf8, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

/* Features - premium pills */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.65rem 1.2rem;
    border-radius: 14px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.feature-icon {
    color: #34d399;
    font-weight: 700;
}

/* CTA - premium gradient */
.telegram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #0088cc 0%, #38bdf8 100%);
    color: white !important;
    text-decoration: none;
    padding: 1rem 2.25rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4);
}

.telegram-btn:hover {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(56, 189, 248, 0.5);
}

.telegram-btn:active {
    transform: translateY(0);
}

.cta-pulse {
    animation: cta-pulse 2s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(56, 189, 248, 0.6); }
}

.cta-secondary {
    margin-top: 1.25rem;
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
}

.cta-big {
    padding: 1.15rem 2.5rem;
    font-size: 1.2rem;
}

.telegram-icon {
    width: 24px;
    height: 24px;
}

.join-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Sticky CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.75rem 1rem;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sticky-cta .telegram-btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
}

/* Rate cards - premium glass with color accents */
/* Section icons */
.section-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.rates-section,
.number-section {
    margin-top: 2.5rem;
    padding: 1.5rem 0;
}

.rates-section h2,
.number-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--white);
}

.rates-subtitle,
.number-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.rates-grid,
.number-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.rates-three {
    grid-template-columns: repeat(3, 1fr);
}

.rate-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.rate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0;
    transition: opacity 0.3s;
}

.rate-card:nth-child(1)::before { background: #38bdf8; }
.rate-card:nth-child(2)::before { background: #f59e0b; }
.rate-card:nth-child(3)::before { background: #34d399; }

.rate-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.rate-card:hover::before {
    opacity: 1;
}

.rate-card:nth-child(1) h3 { color: #38bdf8; border-color: rgba(56, 189, 248, 0.3); }
.rate-card:nth-child(2) h3 { color: #f59e0b; border-color: rgba(245, 158, 11, 0.3); }
.rate-card:nth-child(3) h3 { color: #34d399; border-color: rgba(52, 211, 153, 0.3); }

.rate-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rate-list {
    list-style: none;
}

.rate-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.rate-list li:last-child {
    border-bottom: none;
}

.rate-list li span:last-child {
    font-weight: 700;
    color: #34d399;
}

/* Number boxes - premium */
.number-box {
    border-radius: 20px;
    padding: 1.75rem;
    border: 2px solid;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.number-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.number-box h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.number-box.khulega {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(52, 211, 153, 0.5);
}

.number-box.khulega h3 {
    color: #34d399;
}

.number-box.nahi-khulega {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(248, 113, 113, 0.4);
}

.number-box.nahi-khulega h3 {
    color: #f87171;
}

/* Cricket - Toss & Match boxes */
.number-box.toss-box {
    background: rgba(56, 189, 248, 0.15);
    border-color: rgba(56, 189, 248, 0.5);
}

.number-box.toss-box h3 {
    color: #38bdf8;
}

.number-box.match-box {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.5);
}

.number-box.match-box h3 {
    color: #f59e0b;
}

.toss-box .num {
    background: rgba(56, 189, 248, 0.25);
    color: #38bdf8;
    border: 2px solid rgba(56, 189, 248, 0.5);
}

.match-box .num {
    background: rgba(245, 158, 11, 0.25);
    color: #fbbf24;
    border: 2px solid rgba(245, 158, 11, 0.5);
}

.number-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.number-list .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 12px;
}

.pred-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.75rem;
}

.khulega .num {
    background: rgba(16, 185, 129, 0.25);
    color: #34d399;
    border: 2px solid rgba(52, 211, 153, 0.5);
}

.nahi-khulega .num {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 2px solid rgba(248, 113, 113, 0.4);
}

/* Stats - premium cards */
.stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stats .stat {
    padding: 0 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stats .stat:last-child {
    border-right: none;
}

.stat {
    text-align: center;
    padding: 0.5rem 1rem;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #38bdf8, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Final CTA - premium */
.final-cta {
    margin-top: 3rem;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 24px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #38bdf8, #10b981);
}

.final-cta-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: bounce-soft 2s ease-in-out infinite;
}

@keyframes bounce-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.final-cta h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.final-cta p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

footer {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

main {
    padding-bottom: 2rem;
}

/* Mobile */
@media (max-width: 600px) {
    main {
        padding: 1rem;
    }
    
    .hero {
        padding: 1.5rem 0 1.5rem;
    }
    
    .rates-grid {
        grid-template-columns: 1fr;
    }
    
    .rates-three {
        grid-template-columns: 1fr;
    }
    
    .number-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .stats .stat {
        border-right: none;
        padding: 0.5rem;
    }
    
    .stat {
        flex: 1;
        min-width: 80px;
    }
    
    .features {
        flex-direction: column;
    }
    
    .sticky-cta {
        display: block;
    }
    
    main {
        padding-bottom: 6rem;
    }
    
    .final-cta h2 {
        font-size: 1.35rem;
    }
}

@media (min-width: 601px) {
    .sticky-cta {
        display: none !important;
    }
}
