/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #0b0f14;
    color: #e0e0e0;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .3s ease;
}

/* ===== VARIABLES ===== */
:root {
    --accent: #2ecc71;
    --accent-light: #4ade80;
    --red: #e63946;
    --gold: #f4c430;
    --dark-bg: #0b0f14;
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.08);
    --text: #e0e0e0;
    --text-muted: #8a8a9a;
    --container: 1200px;
}

/* ===== UTILITIES ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.text-accent {
    color: var(--accent-light);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: all .3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 4px 20px rgba(230, 57, 70, .3);
}

.btn-primary:hover {
    background: #c5303c;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230, 57, 70, .45);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #0b0f14;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(46, 204, 113, .3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(46, 204, 113, .5);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .2);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: 12px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: .85rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 15, 20, .85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding: 12px 0;
}

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

.logo img {
    height: 45px;
    width: auto;
}

.header-nav {
    display: flex;
    gap: 30px;
}

.header-nav a {
    font-weight: 500;
    font-size: .9rem;
    color: var(--text-muted);
}

.header-nav a:hover {
    color: var(--accent-light);
}

.header-cta {
    display: flex;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(11, 15, 20, .97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    z-index: 999;
    border-bottom: 1px solid var(--card-border);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--card-border);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #071210 0%, #0b1a15 40%, #0d1f1a 70%, #0b0f14 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(46, 204, 113, .08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 10% 20%, rgba(46, 204, 113, .3), transparent),
        radial-gradient(2px 2px at 30% 60%, rgba(46, 204, 113, .2), transparent),
        radial-gradient(1px 1px at 50% 10%, rgba(255, 255, 255, .3), transparent),
        radial-gradient(1px 1px at 70% 80%, rgba(46, 204, 113, .2), transparent),
        radial-gradient(2px 2px at 90% 40%, rgba(74, 222, 128, .2), transparent);
    animation: float-particles 20s linear infinite;
}

@keyframes float-particles {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-30px);
    }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 204, 113, .12);
    border: 1px solid rgba(46, 204, 113, .3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: .85rem;
    color: var(--accent-light);
    margin-bottom: 20px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .7;
    }
}

.hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-light);
}

.stat-suffix {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-light);
}

.stat-label {
    display: block;
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 204, 113, .12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.hero-img {
    position: relative;
    z-index: 1;
    max-height: 500px;
    border-radius: 20px;
    object-fit: cover;
    animation: hero-float 6s ease-in-out infinite;
}

@keyframes hero-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== SECTIONS ===== */
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.05rem;
}

/* ===== FEATURES ===== */
.features {
    padding: 100px 0;
}

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

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity .4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(46, 204, 113, .2);
    background: rgba(255, 255, 255, .06);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(46, 204, 113, .15), rgba(74, 222, 128, .08));
    border-radius: 18px;
    font-size: 1.6rem;
    color: var(--accent-light);
}

.feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #fff;
}

.feature-card p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== LIVE BETTING ===== */
.live-betting {
    padding: 80px 0 100px;
    background: rgba(255, 255, 255, .01);
}

.live-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.live-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    transition: all .3s ease;
}

.live-card:hover {
    border-color: rgba(46, 204, 113, .25);
    transform: translateX(8px);
}

.live-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(46, 204, 113, .15), rgba(46, 204, 113, .05));
    border-radius: 14px;
    font-size: 1.4rem;
    color: var(--accent-light);
}

.live-info {
    flex: 1;
}

.live-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 4px;
}

.live-info p {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.live-count {
    font-size: .8rem;
    color: var(--accent);
    font-weight: 600;
}

.live-dot {
    font-size: .5rem;
    animation: blink 1.5s infinite;
    margin-right: 4px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

/* ===== CASINO ===== */
.casino-section {
    padding: 100px 0;
}

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

.casino-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all .4s ease;
}

.casino-card:hover {
    transform: translateY(-8px);
    border-color: rgba(46, 204, 113, .2);
}

.casino-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(230, 57, 70, .1), rgba(230, 57, 70, .04));
    border-radius: 50%;
    font-size: 2rem;
    color: var(--red);
    transition: all .4s ease;
}

.casino-card:hover .casino-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #0b0f14;
}

.casino-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #fff;
}

.casino-card p {
    font-size: .88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ===== BONUS SLIDER ===== */
.bonuses {
    padding: 100px 0;
    background: rgba(255, 255, 255, .01);
}

.bonus-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.bonus-slider {
    display: flex;
    gap: 24px;
    transition: transform .5s ease;
    cursor: grab;
}

.bonus-slider:active {
    cursor: grabbing;
}

.bonus-slide {
    min-width: calc(25% - 18px);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .3s ease;
}

.bonus-slide img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
}

.bonus-slide:hover {
    transform: scale(1.03);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .7);
    border: 1px solid var(--card-border);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.slider-btn:hover {
    background: var(--accent);
    color: #0b0f14;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.bonus-cta {
    text-align: center;
}

/* ===== HOW TO ===== */
.how-to {
    padding: 100px 0;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    transition: all .4s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(46, 204, 113, .25);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #0b0f14;
}

.step-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #fff;
}

.step-card p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

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

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 80px 0;
}

.cta-inner {
    background: linear-gradient(135deg, #0d1f1a 0%, #0b1a15 50%, #0d1f1a 100%);
    border: 1px solid rgba(46, 204, 113, .15);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46, 204, 113, .08), transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 12px;
    color: #fff;
}

.cta-content p {
    color: var(--text-muted);
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: rgba(255, 255, 255, .01);
}

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

.faq-item {
    border: 1px solid var(--card-border);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    background: var(--card-bg);
    transition: border-color .3s ease;
}

.faq-item:hover {
    border-color: rgba(46, 204, 113, .2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

.faq-question i {
    transition: transform .3s ease;
    color: var(--accent);
    font-size: .85rem;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 0;
    max-height: 0;
    overflow: hidden;
    transition: all .4s ease;
}

.faq-answer.active {
    padding: 0 24px 20px;
    max-height: 300px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.7;
}

/* ===== SEO CONTENT ===== */
.seo-content {
    padding: 80px 0;
}

.seo-content article {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.seo-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    color: var(--accent-light);
    margin: 28px 0 12px;
}

.seo-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: .95rem;
}

.seo-content strong {
    color: #fff;
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--card-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-muted);
    transition: all .3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    color: #0b0f14;
    border-color: var(--accent);
}

.footer-links h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: .85rem;
    color: var(--text-muted);
    padding: 5px 0;
}

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

.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding-top: 24px;
    text-align: center;
}

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

.footer-warning {
    margin-top: 10px;
    color: var(--red);
    font-size: .78rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-desc {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .casino-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {

    .header-nav,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .casino-grid {
        grid-template-columns: 1fr;
    }

    .bonus-slide {
        min-width: calc(50% - 12px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .live-card {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .bonus-slide {
        min-width: calc(80% - 12px);
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}