/**
 * BetproID Theme - Component Styles
 * All component and section styles
 */

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: #dc2626;
    color: white;
    box-shadow: 
        0 4px 15px rgba(220, 38, 38, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.35);
    background: #ef4444;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-outline:hover {
    border-color: rgba(220, 38, 38, 0.5);
    color: #ef4444;
    background: rgba(220, 38, 38, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.15);
}

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */

.announcement-bar {
    background: #dc2626;
    padding: var(--space-sm) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.announcement-bar p {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 31, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(113, 113, 122, 0.1);
    transition: all var(--transition-base);
}

.main-header.scrolled {
    background: rgba(26, 26, 31, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.main-header.menu-open {
    background: #1a1a1f;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--color-text-primary);
}

.logo-icon {
    font-size: 1.75rem;
}

.logo-bp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: white;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    transition: all var(--transition-base);
}

.logo:hover .logo-bp {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

.logo-text {
    letter-spacing: -0.03em;
}

.logo-text .highlight-red {
    color: var(--color-accent-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
    position: relative;
    text-decoration: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
    color: var(--color-text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links .current-menu-item > a::after,
.nav-links .current_page_item > a::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    padding: var(--space-sm);
    cursor: pointer;
    background: none;
    border: none;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: all var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--space-4xl)) 0 var(--space-4xl);
    overflow: hidden;
    background: #1a1a1f;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 50% 40% at 20% 10%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 50% at 85% 30%, rgba(245, 158, 11, 0.06) 0%, transparent 50%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(26, 26, 31, 0.6) 100%);
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.float-item {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: floatBlob 25s infinite ease-in-out;
}

.float-1 { 
    top: -10%; 
    left: -5%; 
    background: #dc2626;
    animation-delay: 0s; 
}
.float-2 { 
    top: 50%; 
    left: -10%; 
    width: 200px;
    height: 200px;
    background: #3a3a45;
    opacity: 0.3;
    animation-delay: -5s; 
}
.float-3 { 
    top: 10%; 
    right: -5%; 
    width: 250px;
    height: 250px;
    background: var(--color-accent-gold);
    opacity: 0.08;
    animation-delay: -10s; 
}
.float-4 { 
    bottom: -5%; 
    right: 20%; 
    width: 350px;
    height: 350px;
    background: #2d2d35;
    opacity: 0.4;
    animation-delay: -15s; 
}
.float-5 { 
    display: none;
}

@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(227, 28, 28, 0.1);
    border: 1px solid rgba(227, 28, 28, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-accent-secondary);
    margin-bottom: var(--space-lg);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
    padding: var(--space-lg) 0;
    border-top: var(--border-subtle);
    border-bottom: var(--border-subtle);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-primary);
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
}

.trust-label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.trust-logos {
    display: flex;
    gap: var(--space-sm);
}

.payment-badge {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    background: var(--color-bg-tertiary);
    border: var(--border-subtle);
}

.payment-badge.jazzcash { color: #ed1c24; }
.payment-badge.easypaisa { color: #36b449; }
.payment-badge.bank { color: var(--color-accent-gold); }

/* Hero Visual - Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    width: 320px;
    padding: 12px;
    background: linear-gradient(145deg, #2a2a32, #222228);
    border-radius: 40px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(113, 113, 122, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(113, 113, 122, 0.12);
}

.phone-screen {
    background: #1a1a1f;
    border-radius: 32px;
    padding: var(--space-md);
    min-height: 500px;
    border: 1px solid rgba(113, 113, 122, 0.08);
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-md);
    border-bottom: var(--border-subtle);
    margin-bottom: var(--space-md);
}

.app-logo {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-accent-primary);
}

.balance {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--color-accent-green);
}

.match-card {
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
}

.match-league {
    font-size: 0.75rem;
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.vs {
    color: var(--color-text-muted);
    font-size: 0.75rem;
}

.match-odds {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.odd-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-sm);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: all var(--transition-fast);
}

.odd-box.active {
    border-color: var(--color-accent-primary);
    background: rgba(227, 28, 28, 0.1);
}

.odd-label {
    font-size: 0.6875rem;
    color: var(--color-text-muted);
}

.odd-value {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--color-accent-secondary);
}

.bet-slip {
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.slip-header {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.slip-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    padding-bottom: var(--space-sm);
    border-bottom: var(--border-subtle);
    margin-bottom: var(--space-sm);
}

.slip-odd {
    font-family: var(--font-mono);
    color: var(--color-accent-secondary);
}

.slip-input {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

.slip-return {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.return-amount {
    color: var(--color-accent-green);
    font-family: var(--font-mono);
}

.place-bet-btn {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg, rgba(42, 42, 50, 0.95), rgba(37, 37, 48, 0.98));
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(113, 113, 122, 0.1);
    border: 1px solid rgba(113, 113, 122, 0.12);
    font-size: 0.8125rem;
    font-weight: 500;
    animation: floatCard 6s infinite ease-in-out;
    backdrop-filter: blur(10px);
}

.card-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 25%;
    left: -30px;
    animation-delay: -3s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-icon {
    font-size: 1rem;
    color: var(--color-accent-green);
}

/* ============================================
   SECTION STYLING
   ============================================ */

section {
    padding: var(--space-4xl) 0;
}

.section-header {
    margin-bottom: var(--space-3xl);
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(227, 28, 28, 0.1);
    border: 1px solid rgba(227, 28, 28, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-desc {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background: #1e1e24;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(220, 38, 38, 0.3) 50%, transparent 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.lead-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.info-card {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(37, 37, 48, 0.5), rgba(34, 34, 40, 0.7));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(113, 113, 122, 0.08);
    transition: all var(--transition-base);
}

.info-card:hover {
    border-color: rgba(220, 38, 38, 0.2);
    transform: translateX(10px);
    background: linear-gradient(135deg, rgba(42, 42, 50, 0.6), rgba(37, 37, 48, 0.8));
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
}

.info-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Platform Preview */
.image-frame {
    position: relative;
}

.frame-content {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
}

.platform-preview {
    background: var(--color-bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--color-bg-tertiary);
}

.preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.preview-dot.red { background: #ff5f57; }
.preview-dot.yellow { background: #febc2e; }
.preview-dot.green { background: #28c840; }

.preview-url {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    background: var(--color-bg-secondary);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

.preview-body {
    padding: var(--space-md);
}

.preview-nav {
    display: flex;
    gap: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: var(--border-subtle);
    margin-bottom: var(--space-md);
}

.nav-item {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.nav-item.active {
    color: var(--color-accent-primary);
    font-weight: 600;
}

.preview-sports {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.sport-row {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-sm);
}

.sport-icon {
    font-size: 1.25rem;
}

.sport-name {
    font-weight: 500;
    flex: 1;
}

.sport-count {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    background: #1a1a1f;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 40% at 50% 50%, rgba(220, 38, 38, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.steps-container {
    display: flex;
    align-items: stretch;
    gap: var(--space-md);
}

.step-card {
    flex: 1;
    background: linear-gradient(145deg, rgba(37, 37, 48, 0.7), rgba(34, 34, 40, 0.85));
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid rgba(113, 113, 122, 0.1);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.25);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.25);
}

.step-card.featured {
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(220, 38, 38, 0.08) 0%, transparent 60%),
        linear-gradient(145deg, rgba(42, 42, 50, 0.9), rgba(37, 37, 48, 0.95));
    border-color: rgba(220, 38, 38, 0.2);
}

.step-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
}

.step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.step-card h3 {
    margin-bottom: var(--space-md);
}

.step-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.step-link {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent-secondary);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.step-link:hover {
    color: var(--color-accent-primary);
}

.step-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
}

.step-badge.success {
    background: rgba(0, 200, 83, 0.1);
    color: var(--color-accent-green);
}

.step-connector {
    display: flex;
    align-items: center;
    color: var(--color-text-muted);
}

.connector-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent-primary), transparent);
}

.connector-arrow {
    font-size: 1.5rem;
    color: var(--color-accent-primary);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    background: #18181c;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(113, 113, 122, 0.2) 50%, transparent 90%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.service-card {
    background: linear-gradient(145deg, rgba(37, 37, 48, 0.6), rgba(34, 34, 40, 0.8));
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid rgba(113, 113, 122, 0.08);
    transition: all var(--transition-base);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.2);
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.2);
    background: linear-gradient(145deg, rgba(42, 42, 50, 0.7), rgba(37, 37, 48, 0.85));
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    background: rgba(227, 28, 28, 0.1);
    border-radius: var(--radius-md);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-accent-primary);
}

.service-card h3 {
    margin-bottom: var(--space-sm);
}

.service-card > p {
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
}

.service-features li::before {
    content: '✓';
    color: var(--color-accent-green);
    font-weight: bold;
}

/* ============================================
   FEATURES / BETTING MARKETS SECTION
   ============================================ */

.features-section {
    background: #222228;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(220, 38, 38, 0.25) 50%, transparent 100%);
}

.features-tabs {
    background: linear-gradient(145deg, rgba(37, 37, 48, 0.6), rgba(34, 34, 40, 0.8));
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(113, 113, 122, 0.1);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.2);
}

.tabs-nav {
    display: flex;
    border-bottom: var(--border-subtle);
}

.tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-base);
    cursor: pointer;
}

.tab-btn:hover {
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.02);
}

.tab-btn.active {
    color: var(--color-accent-primary);
    border-bottom-color: var(--color-accent-primary);
    background: rgba(227, 28, 28, 0.05);
}

.tab-icon {
    font-size: 1.25rem;
}

.tabs-content {
    padding: var(--space-2xl);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.panel-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.panel-content > p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.sports-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.sport-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-md);
}

.sport-emoji {
    font-size: 2rem;
}

.sport-info strong {
    display: block;
    margin-bottom: var(--space-xs);
}

.sport-info span {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* Odds Display */
.odds-display {
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.odds-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.live-badge {
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-accent-primary);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.odds-match {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: var(--border-subtle);
}

.team {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
}

.team-name {
    font-weight: 600;
}

.team-score {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-accent-green);
}

.odds-row {
    display: flex;
    gap: var(--space-md);
}

.odd-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-md);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.odd-btn:hover,
.odd-btn.highlight {
    background: rgba(227, 28, 28, 0.1);
    border: 1px solid var(--color-accent-primary);
}

.odd-btn span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.odd-btn strong {
    font-family: var(--font-mono);
    font-size: 1.125rem;
    color: var(--color-accent-secondary);
}

/* Casino Preview */
.provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.provider {
    padding: var(--space-xs) var(--space-md);
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.casino-games {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.game-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 500;
}

.game-icon {
    font-size: 1.5rem;
}

.casino-preview {
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dealer-table {
    position: relative;
    width: 280px;
    height: 180px;
    background: linear-gradient(135deg, #1a5c2e, #0d3d1e);
    border-radius: 100px 100px 0 0;
    border: 8px solid #8b5a2b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.cards-row {
    display: flex;
    gap: var(--space-sm);
}

.card {
    width: 50px;
    height: 70px;
    background: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    box-shadow: var(--shadow-md);
}

.card:nth-child(2) { color: #e31c1c; }

.chip-stack {
    display: flex;
    gap: -10px;
}

.chip {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px dashed rgba(255, 255, 255, 0.5);
}

.chip.red { background: var(--color-accent-primary); }
.chip.blue { background: #1565c0; margin-left: -15px; }
.chip.green { background: #2e7d32; margin-left: -15px; }

/* Slots Preview */
.slots-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.slot-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.25rem;
}

.slot-machine {
    display: flex;
    justify-content: center;
}

.slot-frame {
    background: linear-gradient(145deg, #ffd700, #b8860b);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.slot-reels {
    display: flex;
    gap: var(--space-sm);
    background: var(--color-bg-primary);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.reel {
    width: 60px;
    height: 80px;
    background: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.slot-jackpot {
    text-align: center;
    padding: var(--space-sm);
    background: var(--color-accent-primary);
    border-radius: var(--radius-sm);
}

.slot-jackpot span {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
}

.slot-jackpot strong {
    font-family: var(--font-mono);
    font-size: 1.125rem;
    color: white;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-us-section {
    background: #1a1a1f;
    position: relative;
}

.why-us-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 50% at 90% 20%, rgba(220, 38, 38, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.why-card {
    background: linear-gradient(145deg, rgba(37, 37, 48, 0.5), rgba(34, 34, 40, 0.7));
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid rgba(113, 113, 122, 0.08);
    text-align: center;
    transition: all var(--transition-base);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.15);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.2);
}

.why-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    background: rgba(227, 28, 28, 0.1);
    border-radius: var(--radius-full);
}

.why-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-accent-primary);
}

.why-card h3 {
    margin-bottom: var(--space-sm);
}

.why-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    background: #1e1e24;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(113, 113, 122, 0.15) 50%, transparent 90%);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(37, 37, 48, 0.6), rgba(34, 34, 40, 0.8));
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid rgba(113, 113, 122, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-md);
    left: var(--space-lg);
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(220, 38, 38, 0.15);
    line-height: 1;
}

.testimonial-stars {
    color: var(--color-accent-gold);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: white;
}

.author-info strong {
    display: block;
    margin-bottom: var(--space-xs);
}

.author-info span {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    background: #18181c;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 40% at 20% 20%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(37, 37, 48, 0.4);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    border: 1px solid rgba(113, 113, 122, 0.1);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(220, 38, 38, 0.2);
}

.faq-item.active {
    background: rgba(37, 37, 48, 0.6);
    border-color: rgba(220, 38, 38, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-text-primary);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: transparent;
    border: none;
}

.faq-question:hover {
    color: var(--color-accent-primary);
}

.faq-item.active .faq-question {
    color: var(--color-accent-primary);
    border-bottom: 1px solid rgba(220, 38, 38, 0.15);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--color-text-muted);
    transition: transform var(--transition-base), color var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-accent-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: var(--space-lg) var(--space-xl);
}

.faq-answer p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: #222228;
    padding: var(--space-4xl) 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(220, 38, 38, 0.3) 50%, transparent 100%);
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    background: radial-gradient(ellipse 60% 50% at 30% 30%, rgba(220, 38, 38, 0.06) 0%, transparent 50%),
        linear-gradient(145deg, rgba(37, 37, 48, 0.95), rgba(34, 34, 40, 0.98));
    border-radius: var(--radius-xl);
    padding: var(--space-4xl);
    border: 1px solid rgba(220, 38, 38, 0.15);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.35);
}

.cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.cta-content > p {
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    margin-bottom: var(--space-xl);
}

.cta-info {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

.info-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent-green);
}

/* WhatsApp Preview */
.whatsapp-preview {
    background: #0b141a;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.wa-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: #1f2c34;
}

.wa-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: white;
}

.wa-info strong {
    display: block;
    font-size: 0.9375rem;
}

.wa-info span {
    font-size: 0.75rem;
    color: var(--color-accent-green);
}

.wa-messages {
    padding: var(--space-md);
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAFklEQVQYlWNkIAIwDqpC/wEGhG8HAAD8AQFM8PdgAAAAAElFTkSuQmCC') repeat;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.wa-msg {
    max-width: 85%;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    line-height: 1.5;
}

.wa-msg.incoming {
    background: #1f2c34;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.wa-msg.outgoing {
    background: #005c4b;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.wa-msg p {
    color: white;
    margin-bottom: var(--space-xs);
}

.msg-time {
    display: block;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background: #16161a;
    border-top: 1px solid rgba(113, 113, 122, 0.12);
    padding: var(--space-4xl) 0 var(--space-xl);
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.5), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
    text-decoration: none;
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    color: var(--color-text-secondary);
}

.footer-social a:hover {
    background: var(--color-whatsapp);
    transform: translateY(-2px);
    color: white;
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    color: var(--color-text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--color-accent-primary);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: var(--border-subtle);
}

.footer-disclaimer {
    margin-bottom: var(--space-md);
}

.footer-disclaimer p {
    font-size: 0.8125rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.footer-copyright p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--color-whatsapp);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 20px rgba(37, 211, 102, 0.3),
        0 0 0 0 rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
    animation: whatsappPulse 2s infinite;
    text-decoration: none;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3), 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    animation: none;
}

.floating-whatsapp svg {
    width: 30px;
    height: 30px;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--color-bg-card);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */

.reveal {
   
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.stagger-children.active > * {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.6s; }

