/* ===== FCBET LANDING PAGE - PREMIUM STYLES ===== */
/* Matching fcbet584.com design exactly */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #00ffc3;
    --primary-dark: #00d9a6;
    --primary-light: #33ffd1;
    --bg-main: #0b0d0f;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.05);
    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-primary: rgba(0, 255, 195, 0.2);
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.4);
    --text-dim: rgba(255, 255, 255, 0.6);
    --gold: #fbbf24;
    --purple: #a855f7;
    --pink: #f43f5e;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 40px;
    --transition: all 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    background: var(--bg-main);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== HERO HEADER (Inside Hero) ===== */
.hero-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 40px 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.hero-header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-header-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 900;
    font-style: italic;
    color: #000000;
    box-shadow: 0 0 25px rgba(0, 255, 195, 0.4);
}

.logo-large .logo-icon {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
    border-radius: 16px;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: -2px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -1.5px;
    line-height: 1;
}

.logo-large .logo-text {
    font-size: 2.2rem;
    letter-spacing: -2px;
}

.logo-text-fc {
    color: var(--primary);
}

.logo-text-bet {
    color: #ffffff;
}

.logo-subtitle {
    font-size: 0.55rem;
    color: #1a3a34;
    letter-spacing: 4.5px;
    margin-top: 1px;
    font-weight: 800;
}

.logo-large .logo-subtitle {
    font-size: 0.65rem;
    letter-spacing: 5px;
}

.logo-accent {
    color: #ffffff;
}

/* Sponsor Badge */
.sponsor-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sponsor-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
}

.sponsor-text {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sponsor-logo {
    height: 28px;
    width: auto;
}

.header-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.75rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn i {
    font-size: 1rem;
}

.btn-login {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: none;
    padding: 10px 16px;
}

.btn-login:hover {
    color: var(--text);
}

.btn-register {
    background: var(--primary);
    color: #0b0d0f;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
}

.btn-register:hover {
    background: var(--primary-light);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    font-weight: 500;
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: #0b0d0f;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 8px;
}

.btn-primary:hover {
    background: var(--primary-light);
    box-shadow: 0 8px 30px rgba(0, 255, 195, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 0.9rem;
    border-radius: 10px;
}

.btn-game {
    background: rgba(0, 245, 212, 0.15);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 30px;
}

.btn-game:hover {
    background: var(--gradient-primary);
    color: var(--bg-dark);
}

.btn-bonus {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    padding: 12px 24px;
    border-radius: 30px;
}

.btn-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 214, 10, 0.3);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.5);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(0, 245, 212, 0);
    }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 48px 80px;
    overflow: hidden;
    background: #0b0d0f;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(0, 255, 195, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 255, 195, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 255, 195, 0.05) 0%, transparent 50%),
        linear-gradient(90deg, #0b0d0f 0%, transparent 20%, transparent 80%, #0b0d0f 100%),
        linear-gradient(180deg, transparent 60%, #0b0d0f 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 160px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 550px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
}

.hero-title {
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s both;
    letter-spacing: -3px;
}

.hero-title span {
    display: block;
}

.title-highlight {
    color: var(--primary);
}

.hero-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 32px;
    max-width: 420px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-cta .btn-primary {
    background: var(--primary);
    color: #0b0d0f;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.hero-cta .btn-outline {
    background: transparent;
    color: var(--text);
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.hero-cta .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-stats {
    display: flex;
    gap: 48px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.stat {
    text-align: left;
}

.stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta .btn-secondary {
    background: transparent;
    color: var(--text);
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.hero-cta .btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.hero-stats {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    padding: 0;
    background: transparent;
    border: none;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.stat {
    text-align: left;
}

.stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    display: none;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-player {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 245, 212, 0.3));
}

/* Hero Bonus Slider */
.hero-bonus-slider {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 245, 212, 0.25);
    animation: float 6s ease-in-out infinite;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    border-radius: 20px;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-dot.active {
    background: var(--primary);
    border-color: white;
    box-shadow: 0 0 10px var(--primary);
    transform: scale(1.2);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== PROMO SLIDER ===== */
.promo-slider {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a12 100%);
    overflow: hidden;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 24px;
}

.slide {
    flex: 0 0 calc(50% - 12px);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.slide:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 245, 212, 0.2);
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 245, 212, 0.1);
    border: 1px solid rgba(0, 245, 212, 0.3);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    border-color: transparent;
}

.slider-btn.prev {
    left: 0;
}

.slider-btn.next {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.dot.active {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

@media (max-width: 900px) {
    .slide {
        flex: 0 0 100%;
    }

    .slider-container {
        padding: 0 50px;
    }
}

@media (max-width: 600px) {
    .slider-container {
        padding: 0 40px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}

/* ===== SECTION STYLES ===== */
section {
    padding: 100px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 6px;
    background: rgba(0, 255, 195, 0.08);
    border: 1px solid rgba(0, 255, 195, 0.2);
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.badge i {
    font-size: 0.8rem;
}

.badge.gold {
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.2);
    color: var(--gold);
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 16px auto 0;
    font-size: 0.95rem;
}

/* ===== SECTION UTILITIES ===== */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 195, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 195, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.section-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 195, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.section-glow.alternate {
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
}

/* ===== GAMES SECTION ===== */
.games {
    position: relative;
    background: #0b0d0f;
    padding: 120px 24px;
    overflow: hidden;
}

.games .container {
    position: relative;
    z-index: 1;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 1100px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
}

.game-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 50%, rgba(255, 255, 255, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.game-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-8px);
    border-color: rgba(0, 255, 195, 0.2);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 255, 195, 0.05);
}

.game-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 195, 0.1);
    border: 1px solid rgba(0, 255, 195, 0.2);
    border-radius: 18px;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(0, 255, 195, 0.1);
}

.game-card:hover .game-icon {
    background: var(--primary);
    color: #000;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 30px rgba(0, 255, 195, 0.4);
}

.game-card.slots .game-icon {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.2);
    color: var(--gold);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.1);
}

.game-card.slots:hover .game-icon {
    background: var(--gold);
}

.game-card.sports .game-icon {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.2);
    color: #a855f7;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
}

.game-card.sports:hover .game-icon {
    background: #a855f7;
}

.game-card.aviator .game-icon {
    background: rgba(244, 63, 94, 0.1);
    border-color: rgba(244, 63, 94, 0.2);
    color: #f43f5e;
    box-shadow: 0 0 20px rgba(244, 63, 94, 0.1);
}

.game-card.aviator:hover .game-icon {
    background: #f43f5e;
}

.game-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.game-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.btn-game {
    margin-top: auto;
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.game-card:hover .btn-game {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
    box-shadow: 0 8px 20px rgba(0, 255, 195, 0.2);
}

.trend-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(244, 63, 94, 0.15);
    border: 1px solid rgba(244, 63, 94, 0.3);
    color: #f43f5e;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* ===== BONUSES SECTION ===== */
.bonuses {
    position: relative;
    background: #0b0d0f;
    padding: 100px 24px 140px;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.bonuses .container {
    position: relative;
    z-index: 1;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 950px) {
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
}

.bonus-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border-radius: 28px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.bonus-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    opacity: 0.3;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.bonus-card.blue::after {
    background: var(--primary);
}

.bonus-card.purple::after {
    background: #a855f7;
}

.bonus-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
}

.bonus-card:hover::after {
    height: 6px;
    opacity: 1;
}

.bonus-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    transition: var(--transition);
}

.bonus-card:hover .bonus-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.bonus-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.bonus-value {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--gold);
    letter-spacing: -2px;
}

.bonus-card.blue .bonus-value {
    color: var(--primary);
}

.bonus-card.purple .bonus-value {
    color: #a855f7;
}

.bonus-value small {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0;
    margin-top: 5px;
}

.bonus-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.btn-bonus {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-bonus i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.bonus-card:hover .btn-bonus {
    color: var(--gold);
}

.bonus-card.blue:hover .btn-bonus {
    color: var(--primary);
}

.bonus-card.purple:hover .btn-bonus {
    color: #a855f7;
}

.bonus-card:hover .btn-bonus i {
    transform: translateX(5px);
}

/* ===== FEATURES SECTION ===== */
.features {
    background: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.feature {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 245, 212, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 245, 212, 0.1);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 auto 20px;
}

.feature h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== PROVIDERS ===== */
.providers {
    background: #08090b;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.providers h3 {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-dim);
    margin-bottom: 40px;
    letter-spacing: 5px;
    opacity: 0.6;
}

.providers-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.providers-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scroll-providers 40s linear infinite;
    align-items: center;
    padding: 20px 0;
}

.providers-track img {
    height: 48px;
    width: auto;
    flex-shrink: 0;
    transition: all 0.4s ease;
    filter: brightness(1.1);
}

.providers-track img:hover {
    transform: scale(1.1);
}

@keyframes scroll-providers {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .providers-track {
        gap: 40px;
        animation-duration: 25s;
    }

    .providers-track img {
        height: 24px;
    }
}

/* ===== FAQ SECTION ===== */
.faq {
    background: #0b0d0f;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 255, 195, 0.1);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(0, 255, 195, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    transition: all 0.3s ease;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    padding: 0 32px 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: #08090c;
    padding: 100px 24px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 195, 0.05) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.footer-refined {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-refined .logo {
    transform: scale(0.9);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 5px;
    color: var(--primary);
    margin-bottom: 40px;
    opacity: 0.8;
}

.footer-nav-refined {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-nav-refined a {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.footer-nav-refined a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 255, 195, 0.3);
}

.footer-social-refined {
    display: flex;
    gap: 24px;
    margin-bottom: 50px;
}

.footer-social-refined a {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-social-refined a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.footer-divider-refined {
    width: 100%;
    max-width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 40px;
}

.footer-bottom-refined {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-legal-refined {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.legal-dot {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.copyright-refined {
    font-size: 0.65rem;
    color: var(--text-muted);
    opacity: 0.5;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .footer-nav-refined {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-legal-refined {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
}

/* ===== FLOATING CHAT ===== */
.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: none;
    font-size: 1.8rem;
    color: var(--bg-dark);
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
    z-index: 999;
}

.floating-chat:hover {
    transform: scale(1.1);
}

/* ===== RESPONSIVE OVERHAUL ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .hero-container {
        gap: 60px;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-header-inner {
        padding: 0 40px;
    }

    .sponsor-badge {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }

    .hero-content {
        align-items: center;
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        margin-top: 60px;
    }

    .hero-image {
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }

    .hero-glow {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hero-header-inner {
        height: 80px;
        padding: 0 24px;
        align-items: center;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 1.05rem;
        line-height: 1.6;
        max-width: 500px;
        margin: 0 auto 40px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .footer-nav-refined {
        gap: 32px;
    }

    .footer-social-refined {
        gap: 20px;
        margin-bottom: 40px;
    }

    .footer-legal-refined {
        flex-direction: column;
        gap: 14px;
    }

    .legal-dot {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 24px;
    }

    .hero-header {
        padding: 20px 16px;
    }

    .hero-header-inner {
        gap: 12px;
        height: auto;
        padding: 0;
        width: 100%;
    }

    .hero-header-left {
        gap: 0;
    }

    .hero-header-right {
        gap: 8px;
    }

    .hero-header-right .btn {
        padding: 10px 14px;
        font-size: 0.65rem;
        border-radius: 6px;
    }

    .hero-badge {
        font-size: 0.65rem;
        letter-spacing: 3px;
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: 2.4rem;
        margin-bottom: 24px;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
        opacity: 0.7;
        margin-bottom: 32px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 16px;
        font-size: 0.85rem;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 12px;
        margin-top: 40px;
        width: 100%;
    }

    .stat {
        flex: 1;
    }

    .stat-value {
        font-size: 1.4rem;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 0.55rem;
        letter-spacing: 1px;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .game-card {
        padding: 40px 24px;
    }

    .faq-question {
        padding: 24px 20px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 20px 24px;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .footer-refined {
        padding-top: 20px;
    }

    .footer-nav-refined {
        gap: 20px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero-header-right .btn {
        padding: 8px 10px;
    }
}