/* ========================================
   TenBet - Maximum Conversion Landing Page
   Multiple Color Variations for Sports, Casino, Slots
   ======================================== */

:root {
    /* Sports Theme (Default) - Blue/Green Energy */
    --primary: #00D9FF;
    --primary-dark: #00A8CC;
    --secondary: #0066FF;
    --accent: #00FF88;
    --gradient-1: linear-gradient(135deg, #00D9FF 0%, #0066FF 100%);
    --gradient-2: linear-gradient(135deg, #0066FF 0%, #00FF88 100%);
    --gradient-glow: rgba(0, 217, 255, 0.3);
}

/* Homepage Theme - Yellow/White Energy */
.hero-home {
    --primary: #FFD700;
    --primary-dark: #FFA500;
    --secondary: #FFEB3B;
    --accent: #00FF88;
    --gradient-1: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-2: linear-gradient(135deg, #FFEB3B 0%, #00FF88 100%);
    --gradient-glow: rgba(255, 215, 0, 0.4);
}

.theme-casino {
    /* Casino Theme - Gold/Purple Luxury */
    --primary: #FFD700;
    --primary-dark: #FFA500;
    --secondary: #8B00FF;
    --accent: #FF00FF;
    --gradient-1: linear-gradient(135deg, #FFD700 0%, #FF6B00 100%);
    --gradient-2: linear-gradient(135deg, #8B00FF 0%, #FF00FF 100%);
    --gradient-glow: rgba(255, 215, 0, 0.3);
}

.theme-slots {
    /* Slots Theme - Vibrant Rainbow */
    --primary: #FF1493;
    --primary-dark: #DC143C;
    --secondary: #FF6B00;
    --accent: #00FFD9;
    --gradient-1: linear-gradient(135deg, #FF1493 0%, #FF6B00 100%);
    --gradient-2: linear-gradient(135deg, #FF6B00 0%, #FFD700 100%);
    --gradient-glow: rgba(255, 20, 147, 0.3);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Heebo', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

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

/* Top Bar */
.top-bar {
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    opacity: 0.9;
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 2px solid var(--primary);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0;
    direction: ltr;
    font-size: 32px;
    font-weight: 900;
}

.logo:hover {
    opacity: 0.9;
}

.logo img {
    height: 50px;
    width: auto;
    display: none; /* Hide if image exists */
}

/* Logo Text Styling - Matches Hero */
.logo .logo-ten {
    font-size: 32px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5),
                 0 2px 10px rgba(255, 215, 0, 0.3);
    letter-spacing: -1px;
}

.logo .logo-bet {
    font-size: 32px;
    font-weight: 900;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4),
                 0 2px 10px rgba(255, 255, 255, 0.2);
    letter-spacing: -1px;
}

.logo-text {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo-ten {
    color: var(--primary);
}

.logo-bet {
    color: white;
}

.nav {
    display: flex;
    gap: 10px;
}

.nav-btn {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.4);
    color: #FFD700;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.nav-btn:hover,
.nav-btn.active {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-color: #FFD700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.nav-btn.active {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    font-weight: 800;
}

.header-cta {
    background: var(--gradient-1);
    color: white;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 5px 20px var(--gradient-glow);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--gradient-glow);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 120px;
    overflow: hidden;
    background: radial-gradient(ellipse at top, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
}

.theme-casino .hero {
    background: radial-gradient(ellipse at top, rgba(139, 0, 255, 0.15) 0%, transparent 70%);
}

.theme-slots .hero {
    background: radial-gradient(ellipse at top, rgba(255, 20, 147, 0.15) 0%, transparent 70%);
}

.hero-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--primary) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--secondary) 0%, transparent 50%);
    animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.1); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
}

.hero-title-main {
    font-size: 40px;
    font-weight: 700;
}

.hero-bonus {
    font-size: 100px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 0 80px var(--gradient-glow);
}

.hero-title-sub {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.hero-description {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.variation-text {
    display: none;
}

.theme-sports .sports-text,
.theme-casino .casino-text,
.theme-slots .slots-text {
    display: block;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.feature-icon {
    font-size: 40px;
    filter: drop-shadow(0 0 10px var(--gradient-glow));
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-size: 18px;
    font-weight: 700;
}

.feature-text span {
    font-size: 14px;
    opacity: 0.8;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-primary,
.cta-secondary {
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.cta-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 10px 30px var(--gradient-glow);
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--gradient-glow);
}

.cta-icon {
    width: 24px;
    height: 24px;
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid var(--primary);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.hero-trust {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 16px;
    opacity: 0.9;
    justify-content: center;
}

/* Hero Visual Card */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    position: relative;
    width: 100%;
    max-width: 450px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid var(--primary);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px var(--gradient-glow);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

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

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-1);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(60px);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.promo-badge {
    background: var(--gradient-2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
}

.promo-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}

.promo-amount {
    font-size: 80px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.promo-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 30px;
}

.promo-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: right;
}

.promo-feature {
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    fill: #0a0a0a;
}

/* Quick Form Section */
.quick-form-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px solid var(--primary);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px var(--gradient-glow);
    position: relative;
    overflow: hidden;
}

.form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    font-size: 18px;
    opacity: 0.8;
}

.quick-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 16px;
    color: white;
    font-family: 'Heebo', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px var(--gradient-glow);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: white;
}

.checkbox-group {
    margin: 10px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary);
}

.form-submit {
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 10px 30px var(--gradient-glow);
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--gradient-glow);
}

.form-trust {
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
    margin-top: 10px;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 30px;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.form-success h3 {
    font-size: 32px;
    margin-bottom: 15px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-success p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.success-cta {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 15px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.success-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Why Section */
.why-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 20px;
    opacity: 0.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px var(--gradient-glow);
}

.benefit-icon {
    font-size: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--gradient-glow));
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.benefit-card p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.6;
}

/* Bonuses Section */
.bonuses-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px var(--gradient-glow);
}

.bonus-card:hover::before {
    opacity: 1;
}

.bonus-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.bonus-card.featured::before {
    opacity: 1;
}

.bonus-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-2);
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

.bonus-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.bonus-amount {
    font-size: 72px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.bonus-description p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.bonus-description ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.bonus-description li {
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-cta {
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.bonus-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--gradient-glow);
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.game-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: none;
}

.theme-sports .sports-card,
.theme-casino .casino-card,
.theme-slots .slots-card {
    display: block;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px var(--gradient-glow);
}

.game-image {
    font-size: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--gradient-glow));
}

.game-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.game-card p {
    font-size: 14px;
    opacity: 0.8;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px var(--gradient-glow);
}

.testimonial-rating {
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary);
}

.testimonial-author span {
    font-size: 14px;
    opacity: 0.7;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
}

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.final-cta .cta-primary {
    background: white;
    color: var(--secondary);
}

.final-cta .cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.final-cta-trust {
    display: flex;
    gap: 40px;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #000000;
    padding: 60px 0 30px;
    border-top: 2px solid var(--primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    font-size: 28px;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-5px);
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 32px;
    margin: 15px 0;
}

.footer-license {
    font-size: 14px;
    opacity: 0.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 15px;
    opacity: 0.7;
}

.footer-disclaimer {
    font-size: 14px;
    opacity: 0.6;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.footer-disclaimer strong {
    color: #ff4444;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        align-items: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .benefits-grid,
    .bonuses-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header - More Compact */
    .header {
        padding: 8px 0;
    }
    
    .header-content {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        gap: 8px;
    }
    
    /* Logo - Smaller on mobile */
    .logo {
        margin: 0;
        font-size: 24px;
    }
    
    .logo img {
        max-height: 32px;
    }
    
    .logo .logo-ten,
    .logo .logo-bet {
        font-size: 24px;
    }
    
    /* Header CTA - Smaller */
    .header-cta {
        padding: 8px 16px;
        font-size: 13px;
        border-radius: 8px;
    }
    
    /* Navigation - Compact and Clean */
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 6px;
        padding: 8px 0 0 0;
        margin-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-btn {
        padding: 6px 12px;
        font-size: 13px;
        border-radius: 6px;
        border-width: 1px;
        min-height: 32px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Hero General */
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-bonus {
        font-size: 64px;
    }
    
    .hero-title-sub {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    
    .feature-item {
        width: 100%;
    }
    
    .hero-ctas {
        flex-direction: column;
        padding: 0 15px;
        gap: 12px;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 16px 25px;
    }
    
    .hero-trust {
        padding: 0 15px;
        flex-direction: column;
        gap: 8px;
        font-size: 14px;
    }
    
    .hero-visual {
        display: none;
    }
    
    /* Form Section */
    .quick-form-section {
        padding: 50px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .form-header h2 {
        font-size: 26px;
    }
    
    .form-header p {
        font-size: 15px;
    }
    
    .form-submit {
        font-size: 16px;
        padding: 16px 30px;
    }
    
    /* Sections */
    .why-section,
    .bonuses-section,
    .games-section,
    .testimonials-section {
        padding: 50px 0;
    }
    
    .benefits-grid,
    .bonuses-grid,
    .games-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card,
    .bonus-card,
    .game-card,
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .benefit-icon {
        font-size: 48px;
    }
    
    .benefit-card h3,
    .bonus-header h3 {
        font-size: 20px;
    }
    
    .bonus-amount {
        font-size: 52px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 18px;
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    /* Final CTA */
    .final-cta {
        padding: 60px 0;
    }
    
    .final-cta h2 {
        font-size: 32px;
    }
    
    .final-cta p {
        font-size: 16px;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .final-cta-trust {
        flex-direction: column;
        gap: 12px;
        font-size: 14px;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    
    /* Top Bar - More Compact */
    .top-bar {
        padding: 6px 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    
    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }
    
    .badge {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .contact-info {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    /* Header Ultra Compact */
    .header {
        padding: 6px 0;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo img {
        max-height: 28px;
    }
    
    .logo .logo-ten,
    .logo .logo-bet {
        font-size: 20px;
    }
    
    .header-cta {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    /* Navigation - Even More Compact */
    .nav {
        gap: 4px;
        padding: 6px 0 0 0;
        margin-top: 6px;
    }
    
    .nav-btn {
        padding: 5px 10px;
        font-size: 12px;
        min-height: 30px;
    }
    
    /* Top Bar */
    .top-bar {
        padding: 5px 0;
    }
    
    .badge {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .contact-info {
        font-size: 11px;
    }
    
    /* Hero Titles */
    .hero-title-main {
        font-size: 24px;
    }
    
    .hero-bonus {
        font-size: 52px;
    }
    
    .hero-title-sub {
        font-size: 18px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 24px;
        padding: 0 10px;
    }
    
    .section-header p {
        font-size: 14px;
        padding: 0 10px;
    }
    
    /* Cards */
    .benefit-card,
    .bonus-card,
    .game-card,
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .benefit-icon {
        font-size: 42px;
    }
    
    .benefit-card h3 {
        font-size: 18px;
    }
    
    .benefit-card p {
        font-size: 14px;
    }
    
    /* Form */
    .form-wrapper {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .form-header h2 {
        font-size: 22px;
    }
    
    .form-submit {
        font-size: 15px;
        padding: 15px 25px;
    }
    
    /* CTAs */
    .cta-primary,
    .cta-secondary {
        font-size: 15px;
        padding: 14px 20px;
    }
    
    /* Bonus Cards */
    .bonus-amount {
        font-size: 48px;
    }
    
    .bonus-card ul li {
        font-size: 14px;
    }
    
    /* Final CTA */
    .final-cta h2 {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .final-cta p {
        font-size: 15px;
        padding: 0 15px;
    }
    
    /* WhatsApp Float */
    .whatsapp-float span {
        display: none;
    }
    
    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
        bottom: 15px;
        left: 15px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    /* Footer */
    .footer-section {
        padding: 15px 10px;
    }
    
    .footer-section h4 {
        font-size: 16px;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 13px;
    }
    
    /* Container Padding */
    .container {
        padding: 0 15px;
    }
    
    /* Hero Container Extra Padding */
    .hero-home .container {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-text-center {
        padding: 0 10px;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-ctas-large {
        padding: 0 10px;
        width: calc(100% - 20px);
        margin: 0 auto 15px;
    }
    
    .cta-primary-large,
    .cta-secondary-large {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .trust-indicators-hero {
        padding: 15px 10px 25px;
        margin: 0 0 30px 0;
        width: 100%;
        box-sizing: border-box;
    }
}

/* ========================================
   HOME PAGE SPECIFIC STYLES
   ======================================== */

/* Hero Home - Different from category pages */
.hero-home {
    padding: 80px 15px 100px;
    text-align: center;
    overflow-x: hidden;
    width: 100%;
    min-height: auto;
}

.hero-home .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.hero-home .hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.hero-text-center {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.hero-badge-large {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 235, 59, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.4);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 20px;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
    color: #FFD700;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    text-align: center;
    box-sizing: border-box;
}

.hero-title-large {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    align-items: center;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

.hero-title-top {
    font-size: 36px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    padding: 0 20px;
    text-align: center;
    width: auto;
    box-sizing: border-box;
    margin: 0 auto;
}

.hero-brand {
    font-size: 96px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 0 80px var(--gradient-glow);
}

/* Split Branding - Ten (Yellow) + Bet (White) */
.hero-brand-split {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    position: relative;
    line-height: 1;
    direction: ltr;
    margin: 0 auto 30px;
}

.brand-ten {
    font-size: 120px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 60px rgba(255, 215, 0, 0.6),
                 0 5px 20px rgba(255, 215, 0, 0.4);
    letter-spacing: -3px;
}

.brand-bet {
    font-size: 120px;
    font-weight: 900;
    color: #FFFFFF;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.5),
                 0 5px 20px rgba(255, 255, 255, 0.3);
    letter-spacing: -3px;
    position: relative;
}

.brand-subtitle {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 36px;
    font-weight: 600;
    color: #FFFFFF;
    white-space: nowrap;
    letter-spacing: 4px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    opacity: 0.95;
}

.hero-title-bottom {
    font-size: 44px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    padding: 0 20px;
    text-align: center;
    width: auto;
    box-sizing: border-box;
    margin: 0 auto;
}

.hero-description-large {
    font-size: 26px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 20px;
    text-align: center;
    width: auto;
    box-sizing: border-box;
    display: block;
}

.trust-indicators-hero {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0 0 50px 0;
    padding: 30px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    text-align: center;
}

.trust-icon {
    font-size: 54px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
}

.trust-item span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.hero-ctas-large {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 0 auto 30px;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
}

.cta-primary-large,
.cta-secondary-large {
    padding: 22px 45px;
    border-radius: 15px;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.cta-primary-large {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    border: none;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
    font-weight: 800;
}

.cta-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
}

.cta-secondary-large {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 215, 0, 0.4);
    backdrop-filter: blur(10px);
}

.cta-secondary-large:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 5px 30px rgba(255, 215, 0, 0.3);
}

/* Categories Showcase */
.categories-showcase {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.category-card:hover::before {
    opacity: 0.1;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.category-card > * {
    position: relative;
    z-index: 1;
}

.category-sports {
    --primary: #00D9FF;
    --gradient-1: linear-gradient(135deg, #00D9FF 0%, #0066FF 100%);
}

.category-casino {
    --primary: #FFD700;
    --gradient-1: linear-gradient(135deg, #FFD700 0%, #FF6B00 100%);
}

.category-slots {
    --primary: #FF1493;
    --gradient-1: linear-gradient(135deg, #FF1493 0%, #FF6B00 100%);
}

.category-icon-large {
    font-size: 72px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 20px var(--primary));
}

.category-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.category-description {
    font-size: 16px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
}

.category-features {
    list-style: none;
    text-align: right;
    margin: 25px 0;
    flex-grow: 1;
}

.category-features li {
    padding: 10px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.bonus-text {
    font-size: 16px;
    font-weight: 600;
}

.bonus-amount {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-cta {
    padding: 15px 30px;
    background: var(--gradient-1);
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.category-card:hover .category-cta {
    transform: scale(1.05);
    box-shadow: 0 5px 20px var(--primary);
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: #000;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.step-icon {
    font-size: 64px;
    margin: 20px 0;
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.3));
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.steps-cta {
    text-align: center;
    margin-top: 50px;
}

.steps-button {
    padding: 20px 50px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    border-radius: 15px;
    color: #000;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
}

.steps-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
}

/* Live Stats Section */
.live-stats-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.stat-icon {
    font-size: 56px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.4));
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Responsive for Homepage */
@media (max-width: 1024px) {
    .categories-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-indicators-hero {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .category-card {
        padding: 30px 25px;
    }
    
    .step-card {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    /* Hero Section */
    .hero-home {
        padding: 60px 15px 60px;
    }
    
    .hero-text-center {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-brand {
        font-size: 64px;
        padding: 0 15px;
    }
    
    .brand-ten,
    .brand-bet {
        font-size: 72px;
    }
    
    .brand-subtitle {
        font-size: 16px;
        bottom: -4px;
    }
    
    .hero-title-top {
        font-size: 18px;
        padding: 0 15px;
    }
    
    .hero-title-bottom {
        font-size: 20px;
        padding: 0 15px;
    }
    
    .hero-description-large {
        font-size: 15px;
        padding: 0 15px;
        margin: 0 auto 20px;
        line-height: 1.5;
    }
    
    .hero-badge-large {
        font-size: 14px;
        padding: 10px 20px;
        margin: 0 15px 15px;
    }
    
    .hero-title-large {
        width: 100%;
        padding: 0 15px;
        margin-bottom: 15px;
    }
    
    /* CTAs */
    .hero-ctas-large {
        flex-direction: column;
        padding: 0 15px;
        width: calc(100% - 30px);
        gap: 15px;
        margin: 0 auto 20px;
    }
    
    .cta-primary-large,
    .cta-secondary-large {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 18px 30px;
        margin: 0;
        box-sizing: border-box;
    }
    
    /* Trust Indicators - Horizontal Scroll on Mobile */
    .trust-indicators-hero {
        display: flex;
        grid-template-columns: none;
        gap: 8px;
        padding: 20px 15px 30px;
        margin: 0 0 40px 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        justify-content: flex-start;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .trust-indicators-hero::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .trust-item {
        flex: 0 0 auto;
        min-width: 85px;
        padding: 12px 8px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        border: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    .trust-item:first-child {
        margin-right: 0;
    }
    
    .trust-item:last-child {
        margin-left: 0;
    }
    
    .trust-icon {
        font-size: 28px;
        margin-bottom: 6px;
    }
    
    .trust-item span {
        font-size: 10px;
        line-height: 1.2;
    }
    
    /* Categories */
    .categories-showcase {
        padding: 60px 0;
    }
    
    .category-card {
        padding: 30px 20px;
    }
    
    .category-icon-large {
        font-size: 56px;
    }
    
    .category-card h3 {
        font-size: 24px;
    }
    
    .category-description {
        font-size: 14px;
    }
    
    .category-features li {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .bonus-amount {
        font-size: 40px;
    }
    
    /* Steps */
    .how-it-works-section {
        padding: 60px 0;
    }
    
    .step-card {
        padding: 35px 20px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
        top: -18px;
        right: 20px;
    }
    
    .step-icon {
        font-size: 52px;
    }
    
    .step-card h3 {
        font-size: 20px;
    }
    
    .step-card p {
        font-size: 15px;
    }
    
    .steps-button {
        font-size: 18px;
        padding: 18px 40px;
    }
    
    /* Stats */
    .live-stats-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-icon {
        font-size: 48px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    /* Hero Ultra Small */
    .hero-home {
        padding: 50px 10px 50px;
    }
    
    .hero-text-center {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-brand {
        padding: 0 10px;
    }
    
    .brand-ten,
    .brand-bet {
        font-size: 56px;
    }
    
    .brand-subtitle {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .hero-title-top {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .hero-title-bottom {
        font-size: 18px;
        padding: 0 10px;
    }
    
    .hero-description-large {
        font-size: 14px;
        padding: 0 10px;
        margin: 0 auto 15px;
        line-height: 1.4;
    }
    
    .hero-badge-large {
        font-size: 13px;
        padding: 8px 16px;
        margin: 0 10px 15px;
    }
    
    .hero-title-large {
        padding: 0 10px;
        margin-bottom: 12px;
    }
    
    /* Trust Indicators - Horizontal Scroll on Small Mobile */
    .trust-indicators-hero {
        gap: 6px;
        padding: 15px 10px 25px;
        margin: 0 0 30px 0;
        width: 100%;
        max-width: 100%;
    }
    
    .trust-item {
        min-width: 75px;
        padding: 10px 6px;
    }
    
    .trust-icon {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .trust-item span {
        font-size: 9px;
        line-height: 1.2;
    }
    
    /* CTAs */
    .cta-primary-large,
    .cta-secondary-large {
        font-size: 15px;
        padding: 16px 25px;
    }
    
    /* Category Cards */
    .category-icon-large {
        font-size: 48px;
    }
    
    .category-card h3 {
        font-size: 22px;
    }
    
    .bonus-amount {
        font-size: 36px;
    }
    
    /* Steps */
    .step-icon {
        font-size: 48px;
    }
    
    .step-card h3 {
        font-size: 18px;
    }
    
    .steps-button {
        font-size: 16px;
        padding: 16px 30px;
    }
    
    /* Stats */
    .stat-icon {
        font-size: 42px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 14px;
    }
}

