:root {
    --bg-900: #050608;
    --bg-850: #0a0c11;
    --bg-800: #11141c;
    --bg-750: #161a24;
    --bg-700: #1c202c;
    --surface-800: #202533;
    --surface-750: #262c3d;
    --surface-700: #2b3144;
    --gold-200: #ffedc2;
    --gold-300: #ffe08a;
    --gold-400: #f8c869;
    --gold-500: #f2b343;
    --gold-600: #e29b1d;
    --text-primary: #f4f3ff;
    --text-muted: #a0a6b8;
    --text-dim: #7e8497;
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --shadow-soft: 0 24px 54px rgba(0, 0, 0, 0.45);
    --shadow-card: 0 20px 40px rgba(9, 12, 18, 0.55);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Animations & Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(248, 200, 105, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(248, 200, 105, 0.8);
    }
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--bg-900);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    border-radius: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    opacity: 0.86;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
    padding: 0 16px;
    max-width: 100%;
    box-sizing: border-box;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(5, 6, 8, 0.92);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand__name {
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand__tagline {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.main-nav a {
    position: relative;
    padding-bottom: 6px;
    transition: color 0.2s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    transition: width 0.2s ease;
}

.main-nav a:hover {
    color: var(--text-primary);
}

.main-nav a:hover::after {
    width: 100%;
}

.auth-group {
    display: flex;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--gold {
    background: linear-gradient(135deg, #f2b343 0%, #ffdb6b 50%, #f8c869 100%);
    color: #1f1400;
    box-shadow:
        0 16px 32px rgba(242, 179, 67, 0.5),
        0 0 25px rgba(248, 200, 105, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow:
            0 16px 32px rgba(242, 179, 67, 0.5),
            0 0 25px rgba(248, 200, 105, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow:
            0 16px 32px rgba(242, 179, 67, 0.6),
            0 0 35px rgba(248, 200, 105, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
}

.btn--gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn--gold:hover {
    animation: none;
}

.btn--gold:hover::before {
    left: 100%;
}

.btn--ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn--outline {
    background: rgba(17, 20, 28, 0.6);
    color: var(--gold-300);
    border: 2px solid rgba(248, 200, 105, 0.5);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn--outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(248, 200, 105, 0.1), rgba(248, 200, 105, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn--outline:hover {
    background: rgba(248, 200, 105, 0.15);
    border-color: var(--gold-400);
    box-shadow:
        0 12px 35px rgba(248, 200, 105, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn--outline:hover::before {
    opacity: 1;
}

.btn--dark {
    background: var(--bg-800);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero {
    padding: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(248, 200, 105, 0.25), transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(255, 105, 180, 0.18), transparent 60%),
        radial-gradient(circle at 60% 80%, rgba(58, 123, 213, 0.22), transparent 70%),
        radial-gradient(circle at 40% 60%, rgba(138, 43, 226, 0.15), transparent 65%),
        linear-gradient(135deg, #1e2435 0%, #141923 30%, #0a0e15 70%, #050709 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(248, 200, 105, 0.03) 0px,
            transparent 2px,
            transparent 4px
        );
    pointer-events: none;
    animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateY(0); }
    100% { transform: translateY(40px); }
}


.hero__banner {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.hero__banner .banner-slider {
    border-radius: 0;
    width: 100%;
    max-width: 100%;
}

.hero__details {
    margin-top: 60px;
    padding-bottom: 120px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 1s ease-out;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(248, 200, 105, 0.15), rgba(248, 200, 105, 0.08));
    border: 1px solid rgba(248, 200, 105, 0.25);
    color: var(--gold-300);
    box-shadow: 0 2px 8px rgba(248, 200, 105, 0.1);
    backdrop-filter: blur(8px);
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 28px 0 24px;
    background: linear-gradient(135deg, #ffffff 0%, #ffe48a 35%, #f8c869 60%, #e29b1d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 24px rgba(248, 200, 105, 0.5)) drop-shadow(0 0 40px rgba(255, 228, 138, 0.3));
    font-weight: 700;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.hero__subtitle {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 500;
    opacity: 0.85;
    display: inline-block;
    margin-top: 8px;
}

@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 4px 24px rgba(248, 200, 105, 0.5)) drop-shadow(0 0 40px rgba(255, 228, 138, 0.3));
    }
    100% {
        filter: drop-shadow(0 4px 32px rgba(248, 200, 105, 0.7)) drop-shadow(0 0 60px rgba(255, 228, 138, 0.5));
    }
}

.hero__details p {
    color: var(--text-muted);
    font-size: 1.06rem;
    max-width: 680px;
    margin: 0 auto 32px;
    line-height: 1.75;
    font-weight: 400;
}


.hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}


.hero__meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}


.hero__meta div {
    background:
        linear-gradient(135deg, rgba(248, 200, 105, 0.08) 0%, transparent 100%),
        rgba(255, 255, 255, 0.04);
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 140px;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.hero__meta div::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(248, 200, 105, 0.12), rgba(255, 105, 180, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero__meta div:hover {
    transform: translateY(-4px);
    border-color: rgba(248, 200, 105, 0.25);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(248, 200, 105, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero__meta div:hover::before {
    opacity: 1;
}

.hero__meta-number {
    display: block;
    font-family: 'Teko', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold-300);
    line-height: 1;
    margin-bottom: 6px;
}

.hero__meta-label {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #a8adb8;
    font-weight: 500;
}

.banner-slider {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    background: var(--bg-900);
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    transform: translateZ(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.banner-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    opacity: 0;
}

.banner-slider:hover {
    /* transform: translateY(-12px) scale(1.03); */
    box-shadow: none;
}

.banner-slider__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    background: transparent;
}

.banner-slide {
    flex: 0 0 100%;
    display: block;
    width: 100%;
    background: var(--bg-900);
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: var(--bg-900);
}

.banner-slider__controls {
    position: absolute;
    inset: 0;
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 0 14px;
    pointer-events: none;
}

.banner-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(5, 6, 8, 0.55);
    color: var(--text-primary);
    font-size: 1.4rem;
    display: grid;
    place-items: center;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.2s ease, background 0.2s ease;
}

.banner-arrow:hover {
    transform: translateY(-2px);
    background: rgba(248, 200, 105, 0.28);
}

.banner-dots {
    position: absolute;
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    z-index: 2;
}

.banner-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    padding: 0;
    cursor: pointer;
    outline: none;
    appearance: none;
    transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.banner-dot.is-active {
    background: var(--gold-400);
    border-color: var(--gold-400);
    transform: scale(1.3);
    box-shadow: 0 0 4px rgba(248, 200, 105, 0.5);
}

.section {
    padding: 120px 0;
}

.section__header {
    text-align: center;
    margin-bottom: 72px;
}

.section__header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #ffe48a 40%, #f8c869 70%, #e29b1d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-weight: 700;
    filter: drop-shadow(0 2px 16px rgba(248, 200, 105, 0.4));
    line-height: 1.3;
}

.section__header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    border-radius: 2px;
}

.section__header p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-muted);
}

.section--cards .card-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.game-card {
    background: var(--bg-800);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.game-card img {
    height: 170px;
    object-fit: cover;
}

.game-card__body {
    padding: 20px 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.game-card__badge {
    align-self: flex-start;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(248, 200, 105, 0.18);
    color: var(--gold-300);
}

.game-card h3 {
    margin: 0;
    font-size: 1.1rem;
}

.game-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.slot-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.slot-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-card);
}

.slot-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(5, 6, 8, 0.85));
}

.slot-card img {
    height: 340px;
    object-fit: cover;
}

.slot-card__body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.slot-card__body h3 {
    margin: 0;
    font-size: 1.4rem;
    font-family: 'Teko', sans-serif;
    letter-spacing: 0.06em;
}

.slot-card__body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.slot-card__link {
    margin-top: 4px;
    font-weight: 600;
    color: var(--gold-300);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
}

.section--sports .sports-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.sports-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--surface-800);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: var(--shadow-card);
}

.sports-card img {
    height: 200px;
    object-fit: cover;
}

.sports-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sports-card__body h3 {
    font-family: 'Teko', sans-serif;
    margin: 0;
    letter-spacing: 0.2em;
    font-size: 1.4rem;
}

.sports-card__body p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.section--providers {
    background: var(--bg-850);
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.provider-grid li {
    padding: 18px;
    text-align: center;
    border-radius: var(--radius-sm);
    background: var(--bg-800);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.provider-grid li:hover {
    transform: translateY(-4px);
    border-color: rgba(248, 200, 105, 0.45);
}

.provider-grid:not(.is-expanded) li:nth-child(n+13) {
    display: none;
}

.provider-toggle {
    display: inline-flex;
    margin: 0 auto;
}

.section--why {
    background: var(--bg-900);
}

/* Promo List - Modern Timeline Style */
.promo-section {
    background: var(--bg-850);
}

.promo-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 0;
    position: relative;
}

.promo-list::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(248, 200, 105, 0.3) 10%,
        rgba(248, 200, 105, 0.3) 90%,
        transparent 100%);
}

.promo-item {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    position: relative;
    transition: all 0.3s ease;
}

.promo-item:hover {
    transform: translateX(8px);
}

.promo-item__icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: linear-gradient(135deg, rgba(248, 200, 105, 0.15) 0%, rgba(248, 200, 105, 0.05) 100%);
    border: 2px solid rgba(248, 200, 105, 0.3);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 4px var(--bg-850);
}

.promo-item:hover .promo-item__icon {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--gold-400);
    box-shadow:
        0 0 0 4px var(--bg-850),
        0 0 20px rgba(248, 200, 105, 0.4);
}

.promo-item__content {
    flex: 1;
    display: grid;
    gap: 10px;
    padding-right: 20px;
}

.promo-item__content h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 0%, #ffe48a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-item__content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.promo-item__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-300);
    padding: 8px 0;
    transition: all 0.3s ease;
}

.promo-item__tag::before {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.promo-item:hover .promo-item__tag::before {
    transform: translateX(4px);
}

@media (max-width: 640px) {
    .promo-list::before {
        left: 24px;
    }

    .promo-item {
        gap: 16px;
        padding: 24px 0;
    }

    .promo-item__icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .promo-item__content h3 {
        font-size: 1.15rem;
    }

    .promo-item__content p {
        font-size: 0.95rem;
    }
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.why-card {
    background: var(--bg-800);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-card h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--gold-300);
}

.why-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.section--contact {
    padding: 70px 0;
}

.contact-banner {
    background: linear-gradient(120deg, rgba(248, 200, 105, 0.95), rgba(226, 155, 29, 0.88));
    border-radius: var(--radius-lg);
    padding: 36px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    align-items: center;
    box-shadow: var(--shadow-card);
    color: #281400;
}

.contact-banner img {
    border-radius: var(--radius-md);
    box-shadow: 0 18px 36px rgba(26, 12, 0, 0.25);
    height: 100%;
    object-fit: cover;
}

.contact-banner__content h2 {
    font-family: 'Teko', sans-serif;
    font-size: 2.4rem;
    margin: 0 0 10px;
}

.contact-banner__content p {
    margin: 0 0 22px;
    font-size: 1rem;
}

.contact-banner__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.section--promos {
    background: var(--bg-850);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.promo-card {
    background: var(--bg-800);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-card);
}

.promo-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.promo-card__amount {
    color: var(--gold-300);
    font-weight: 600;
}

.promo-card h3 {
    margin: 0;
    font-size: 1.2rem;
}

.promo-card p {
    margin: 0;
    color: var(--text-muted);
}

.promo-card__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.promo-card__link {
    font-size: 0.85rem;
    color: var(--gold-300);
    text-decoration: underline;
    font-weight: 500;
}

.footer {
    background:
        radial-gradient(circle at 30% 50%, rgba(248, 200, 105, 0.08), transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(138, 43, 226, 0.06), transparent 60%),
        linear-gradient(180deg, #0a0c11 0%, #05060a 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(248, 200, 105, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(248, 200, 105, 0.3), transparent);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer h4 {
    margin: 0 0 12px;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #f8c869 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer p,
.footer a {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer a {
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer a:hover {
    color: var(--gold-300);
    transform: translateX(4px);
}

.footer__bottom {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.floating-btn {
    position: fixed;
    right: 28px;
    bottom: 28px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
    color: #1f1400;
    padding: 16px 30px;
    border-radius: 999px;
    box-shadow: 0 22px 40px rgba(242, 179, 67, 0.4);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: pulse 2s infinite, glow 3s ease-in-out infinite;
}

.floating-btn:hover {
    transform: translateY(-4px);
    animation: none;
}

@media (max-width: 1080px) {
    .hero h1 {
        font-size: clamp(2rem, 4vw, 3.2rem);
    }
    
    .section {
        padding: 80px 0;
    }
    
    .slot-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 840px) {
    .hero__banner {
        margin-top: 16px;
    }
    
    .banner-dots {
        bottom: 5px;
        gap: 3px;
    }
    
    .banner-dot {
        width: 3px;
        height: 3px;
        opacity: 0.7;
        border-width: 0.5px;
    }
    
    .topbar__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 16px 0;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 14px;
        width: 100%;
        justify-content: flex-start;
    }

    .auth-group {
        align-self: stretch;
        width: 100%;
    }

    .auth-group .btn {
        flex: 1;
    }
    
    .hero__cta {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }
    
    .hero__cta .btn {
        flex-shrink: 0;
    }
    
    .provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .contact-banner {
        text-align: center;
    }
    
    .contact-banner__actions {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 0;
        overflow-x: hidden;
    }
    
    .hero__banner {
        width: 100%;
        margin: 20px 0 0 0;
        padding: 0;
    }
    
    .hero__banner .banner-slider {
        border-radius: 0;
    }
    
    .hero__details {
        margin-top: 40px;
        padding: 0 16px 80px;
    }
    
    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
        margin: 20px 0 16px;
    }
    
    .hero__subtitle {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }
    
    .hero__details p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero__badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .hero__meta {
        gap: 12px;
    }
    
    .hero__meta div {
        flex: 1 1 100px;
        min-width: 100px;
        padding: 16px 8px;
    }
    
    .hero__meta-number {
        font-size: 1.8rem;
    }
    
    .hero__meta-label {
        font-size: 0.7rem;
    }

    .banner-slider {
        border-radius: 0;
        margin: 0;
        width: 100%;
        background: var(--bg-900);
    }
    
    .banner-slider img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        display: block;
    }

    .banner-slider__controls {
        display: none;
    }

    .banner-dots {
        bottom: 5px;
        gap: 3px;
        z-index: 10;
    }
    
    .banner-dot {
        width: 3px;
        height: 3px;
        border: 0.5px solid rgba(255, 255, 255, 0.4);
        background: rgba(255, 255, 255, 0.15);
    }
    
    .banner-dot.is-active {
        background: var(--gold-400);
        border-color: var(--gold-400);
        transform: scale(1.6);
        box-shadow: 0 0 3px rgba(248, 200, 105, 0.7);
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .hero__cta {
        gap: 10px;
        margin-bottom: 32px;
    }
    
    .section__header h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .section__header {
        margin-bottom: 48px;
    }
    
    .section__header p {
        font-size: 0.95rem;
    }
    
    /* Cards responsive */
    .section--cards .card-strip {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 16px;
    }
    
    .game-card img {
        height: 140px;
    }
    
    .game-card__body {
        padding: 16px;
    }
    
    .game-card h3 {
        font-size: 1rem;
    }
    
    .game-card p {
        font-size: 0.85rem;
    }
    
    /* Slots responsive */
    .slot-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .slot-card img {
        height: 240px;
    }
    
    .slot-card__body {
        padding: 20px;
    }
    
    /* Sports responsive */
    .sports-strip {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .sports-card img {
        height: 160px;
    }
    
    .sports-card__body {
        padding: 20px;
    }
    
    /* Providers responsive */
    .provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 12px;
    }
    
    .provider-grid li {
        padding: 14px 8px;
        font-size: 0.7rem;
    }
    
    /* Promo list responsive */
    .promo-list::before {
        left: 20px;
    }
    
    .promo-item {
        gap: 16px;
        padding: 24px 0;
    }
    
    .promo-item__icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    
    .promo-item__content {
        padding-right: 0;
    }
    
    .promo-item__content h3 {
        font-size: 1.1rem;
    }
    
    .promo-item__content p {
        font-size: 0.9rem;
    }
    
    /* Why grid responsive */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .why-card {
        padding: 20px;
    }
    
    .why-card h3 {
        font-size: 1.05rem;
    }
    
    .why-card p {
        font-size: 0.9rem;
    }
    
    /* Contact banner responsive */
    .contact-banner {
        padding: 28px 20px;
        gap: 24px;
    }
    
    .contact-banner__content h2 {
        font-size: 1.8rem;
    }
    
    .contact-banner__content p {
        font-size: 0.95rem;
    }
    
    /* Promo grid responsive */
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .promo-card {
        padding: 20px;
    }
    
    /* Footer responsive */
    .footer {
        padding: 40px 0 24px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer h4 {
        font-size: 0.95rem;
    }
    
    .footer p,
    .footer a {
        font-size: 0.88rem;
    }

    .floating-btn {
        right: 16px;
        bottom: 20px;
        padding: 12px 20px;
        font-size: 0.8rem;
    }
    
    /* Features grid responsive */
    .features-grid {
        grid-template-columns: 1fr;
    }
}


.brand__mark {
    height: 68px;
    max-height: 72px;
    width: auto;
    display: block;
    border: none;
    border-radius: 8px;
    background: none;
    padding: 0;
    box-shadow: none;
    object-fit: contain;
}


/* Features Section - Modern Grid Cards */
.features-section {
    background: var(--bg-900);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 920px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    background: linear-gradient(135deg, rgba(248, 200, 105, 0.05) 0%, transparent 100%), var(--bg-800);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(248, 200, 105, 0.15), rgba(138, 43, 226, 0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(248, 200, 105, 0.3);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(248, 200, 105, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    background: linear-gradient(135deg, rgba(248, 200, 105, 0.2) 0%, rgba(248, 200, 105, 0.1) 100%);
    border: 2px solid rgba(248, 200, 105, 0.3);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(248, 200, 105, 0.2);
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.15) rotate(10deg);
    border-color: var(--gold-400);
    box-shadow: 0 12px 32px rgba(248, 200, 105, 0.4);
}

.feature-card h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.feature-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature-card {
        padding: 28px 24px;
    }

    .feature-card__icon {
        width: 70px;
        height: 70px;
        font-size: 36px;
    }
}

.agency-lead {
    max-width: 860px;
    margin: 0 auto 40px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.overview-grid article {
    background: var(--bg-800);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-soft);
}

.overview-grid h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
    color: var(--gold-300);
}

.agency-benefits {
    background: var(--bg-850);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.benefit-card {
    background:
        linear-gradient(135deg, rgba(248, 200, 105, 0.08) 0%, rgba(138, 43, 226, 0.05) 100%),
        linear-gradient(135deg, var(--bg-800) 0%, var(--surface-800) 100%);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid rgba(248, 200, 105, 0.15);
    color: var(--text-muted);
    min-height: 100%;
    box-shadow:
        var(--shadow-soft),
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300), #ff69b4, var(--gold-500));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(248, 200, 105, 0.15), transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.benefit-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(248, 200, 105, 0.4);
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(248, 200, 105, 0.3),
        0 0 20px rgba(255, 105, 180, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.benefit-card h3 {
    margin: 0 0 16px;
    font-size: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8c869 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.agency-promos {
    background: var(--bg-900);
}

.promo-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.promo-item {
    background: var(--bg-800);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 26px;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.promo-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-300);
    margin-bottom: 14px;
}

.agency-support {
    background: var(--bg-850);
}

.support-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.support-accordion details {
    background: var(--bg-800);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.support-accordion details:hover {
    border-color: rgba(248, 200, 105, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transform: translateX(4px);
}

.support-accordion details[open] {
    background: linear-gradient(135deg, rgba(248, 200, 105, 0.08) 0%, transparent 100%), var(--bg-800);
    border-color: rgba(248, 200, 105, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.support-accordion summary {
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 36px;
    color: var(--text-primary);
    line-height: 1.5;
}

.support-accordion summary::marker,
.support-accordion summary::-webkit-details-marker {
    display: none;
}

.support-accordion summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-300);
    font-weight: 600;
    font-size: 22px;
    background: rgba(248, 200, 105, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.support-accordion details[open] summary::after {
    content: '−';
    background: rgba(248, 200, 105, 0.2);
    transform: translateY(-50%) rotate(180deg);
}

.support-accordion p {
    margin: 16px 0 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    padding-right: 20px;
}

.agency-network {
    background: var(--bg-900);
    padding-bottom: 60px;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.network-grid h3 {
    margin-top: 0;
    margin-bottom: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--gold-300);
}

.network-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    color: var(--text-muted);
}

.network-grid a {
    color: var(--gold-300);
}

@media (max-width: 640px) {
    .agency-lead {
        text-align: left;
    }
}
.agency-heading {
    text-align: center;
    margin-bottom: 26px;
}

.agency-heading__label {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(248, 200, 105, 0.15);
    color: var(--gold-300);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.agency-heading h2 {
    margin: 16px 0 0;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-family: 'Teko', sans-serif;
    letter-spacing: 0.04em;
}

.agency-intro__content {
    display: grid;
    gap: 18px;
}

.agency-intro__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
    color: var(--text-muted);
}

.agency-intro__list .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
    margin-right: 12px;
}

.agency-intro__note {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.promo-strip--cards {
    gap: 18px;
}

.promo-card--image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-800);
    box-shadow: var(--shadow-card);
}

.promo-card--image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.promo-card__body {
    padding: 22px;
    display: grid;
    gap: 10px;
}

.agency-service-nav {
    background: rgba(5, 6, 8, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-nav__bar {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 14px 0;
    flex-wrap: wrap;
}

.service-nav__bar a {
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 4px 0;
}

.service-nav__bar a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    transition: width 0.2s ease;
}

.service-nav__bar a:hover {
    color: var(--text-primary);
}

.service-nav__bar a:hover::after {
    width: 100%;
}

/* Main Header Styles */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    background: #1f1f1f;
}

.header-top .container {
    width: min(1360px, 96vw);
    max-width: 1360px;
}

.header-top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    padding: 18px 0;
    gap: 24px;
    flex-wrap: nowrap;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand__mark {
    height: 72px;
    max-height: 76px;
    width: auto;
    display: block;
    border: none;
    border-radius: 8px;
    background: none;
    padding: 0;
    box-shadow: none;
    object-fit: contain;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1;
    border: 1px solid transparent;
}

.header-btn--primary {
    background: #f0c343;
    color: #181818;
}

.header-btn--primary:hover {
    filter: brightness(0.95);
}

.header-btn--ghost {
    background: #2a2a2a;
    color: #f4f4f4;
}

.header-btn--ghost:hover {
    filter: brightness(1.08);
}

.header-nav {
    background: #1a1a1a;
    border-top: 1px solid rgba(255,255,255,.06);
}

.header-nav .container {
    width: 100%;
    max-width: none;
    margin: 0;
}

.header-nav__inner {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    overflow: auto;
}

.nav-pill {
    color: #a8adb8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-pill:hover {
    color: #fff;
    background: rgba(255,255,255,.08);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(248, 200, 105, 0.15);
}

.nav-pill--active {
    color: #fff;
    background: rgba(248, 200, 105, 0.15);
    border: 1px solid rgba(248, 200, 105, 0.3);
    font-weight: 500;
    box-shadow: 0 0 16px rgba(248, 200, 105, 0.2);
}

.nav-pill--active:hover {
    background: rgba(248, 200, 105, 0.2);
    border-color: rgba(248, 200, 105, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(248, 200, 105, 0.25);
}

.nav-pill__icon {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

.brand-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
}

.brand-text__logo {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--gold-300, #f2b343);
    line-height: 1;
}

.brand-text__name {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
}

@media (max-width: 920px) {
    .header-nav__inner {
        gap: 20px;
    }
}

@media (max-width: 780px) {
    .header-top__inner {
        flex-wrap: wrap;
        gap: 16px;
        padding: 12px 0;
        min-height: auto;
    }
    
    .brand__mark {
        height: 56px;
    }
    
    .header-actions {
        width: 100%;
        gap: 12px;
    }
    
    .header-btn {
        flex: 1;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .header-nav__inner {
        gap: 16px;
        padding: 10px 16px;
        justify-content: flex-start;
    }
    
    .nav-pill {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .nav-pill__icon {
        font-size: 16px;
    }
    
    .brand-text__logo,
    .brand-text__name {
        font-size: 24px;
    }
}

/* Article Layout */
.article {
    animation: fadeInUp 0.6s ease-out;
}

.article h1 {
    font-family: 'Teko', sans-serif;
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #ffe48a 50%, #f8c869 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 16px;
}

.article h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), transparent);
    border-radius: 2px;
}

.article__lead {
    color: var(--text-muted);
    font-size: 1.06rem;
    margin-bottom: 32px;
    line-height: 1.75;
    padding-left: 16px;
    border-left: 3px solid rgba(248, 200, 105, 0.3);
}

.article h2 {
    margin-top: 48px;
    margin-bottom: 16px;
    font-size: 1.5rem;
    color: var(--gold-300);
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.article h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, var(--gold-500), var(--gold-300));
    border-radius: 2px;
}

.article h3 {
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: #e0e0e0;
    font-weight: 600;
}

.article p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--text-muted);
}

.article__figure {
    margin: 32px 0 24px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.article__figure img {
    width: 100%;
    border-radius: 16px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease;
}

.article__figure:hover img {
    transform: scale(1.02);
}

.article__figure figcaption {
    color: var(--text-dim);
    font-size: 0.88rem;
    margin-top: 12px;
    font-style: italic;
    padding-left: 12px;
    border-left: 2px solid rgba(248, 200, 105, 0.2);
}

.article__note {
    color: var(--text-dim);
    font-size: 0.92rem;
}

.article__list {
    color: var(--text-muted);
    display: grid;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.article__list li {
    padding-left: 32px;
    position: relative;
    line-height: 1.7;
    transition: transform 0.2s ease;
}

.article__list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold-400);
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.article__list li:hover {
    transform: translateX(4px);
    color: var(--text-primary);
}

.article__list li:hover::before {
    transform: translateX(4px);
    color: var(--gold-300);
}

.provider-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin: 24px 0;
}

.provider-tiles .tile {
    background: linear-gradient(135deg, rgba(248, 200, 105, 0.05) 0%, transparent 100%), var(--bg-800);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 16px 14px;
    text-align: center;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.provider-tiles .tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(248, 200, 105, 0.15), rgba(138, 43, 226, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.provider-tiles .tile:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(248, 200, 105, 0.4);
    color: var(--gold-300);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(248, 200, 105, 0.2);
}

.provider-tiles .tile:hover::before {
    opacity: 1;
}

.promo-banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    margin: 10px 0 6px;
}

.promo-banner-grid img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

/* VIP Modal - Exact Match */
.modal-backdrop {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 1000;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-backdrop.is-open {
    display: flex;
}

.vip-modal-new {
    width: min(540px, 92vw);
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    color: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.vip-modal__header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    position: relative;
    background: #1f1f1f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vip-logo {
    height: 44px;
    object-fit: contain;
}

.vip-close-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    transition: background 0.2s ease;
    line-height: 1;
}

.vip-close-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.vip-info-btn {
    position: absolute;
    right: 56px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    color: #aaaaaa;
    font-size: 12px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.vip-info-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.vip-info-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    font-style: normal;
}

.vip-modal__body {
    padding: 28px 24px 32px;
    text-align: center;
    background: #1a1a1a;
}

.vip-current-level {
    margin: 0 0 20px;
    color: #b0b0b0;
    font-size: 14px;
    font-weight: 400;
}

.vip-badge-container {
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vip-badge {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.vip-progress-section {
    display: grid;
    gap: 20px;
}

.vip-progress-item {
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    padding: 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vip-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
    color: #e0e0e0;
    font-weight: 500;
}

.vip-dash {
    color: #666666;
    font-weight: 400;
    font-size: 14px;
}

.vip-progress-bar {
    height: 4px;
    background: #2a2a2a;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 8px;
    position: relative;
}

.vip-progress-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmerBar 2s infinite;
}

@keyframes shimmerBar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.vip-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
    transition: width 0.4s ease;
    position: relative;
    border-radius: 2px;
}

.vip-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 20%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
}

.vip-progress-footer {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #999999;
    font-weight: 400;
}

@media (max-width: 640px) {
    .vip-modal-new {
        width: 94vw;
    }

    .vip-info-btn {
        font-size: 0;
        right: 52px;
        padding: 6px;
    }

    .vip-info-icon {
        margin: 0;
    }

    .vip-progress-footer {
        font-size: 10px;
        flex-direction: column;
        gap: 4px;
    }
}
/* Telegram buttons */
.btn .icon { width:18px; height:18px; margin-right:8px; display:inline-block; }
.btn--tg { background: linear-gradient(135deg, var(--gold-500), var(--gold-300)); color:#1f1400; box-shadow: 0 12px 24px rgba(240, 195, 67, .35); border: 1px solid rgba(0,0,0,0); }
.btn--tg:hover { box-shadow: 0 16px 28px rgba(240,195,67,.5); filter: none; }
.btn--tg-outline { background: transparent; color: var(--gold-300); border:1px solid var(--gold-500); box-shadow:none; }
.btn--tg-outline:hover { background: rgba(240,195,67,.1); }

/* Lang dropdown */
.lang-switch { position: relative; margin-left: 8px; }
.lang-current { display:inline-flex; align-items:center; gap:6px; padding:10px 14px; border-radius:10px; background:#2a2a2a; color:#f4f4f4; border:1px solid rgba(255,255,255,.08); cursor:pointer; }
.lang-current .flag { font-size:16px; line-height:1; }
.lang-current .chev { opacity:.7; }
.lang-menu { position:absolute; right:0; top:110%; background:#1e1e1e; border:1px solid rgba(255,255,255,.08); border-radius:10px; min-width:170px; padding:6px; display:none; box-shadow:0 18px 40px rgba(0,0,0,.45); z-index:60; }
.lang-menu li { list-style:none; padding:8px 10px; border-radius:8px; color:#e9edf6; display:flex; align-items:center; gap:8px; cursor:pointer; }
.lang-menu li:hover { background:rgba(255,255,255,.08); }
.lang-switch.open .lang-menu { display:block; }
@media (max-width:700px){ .lang-current{ padding:8px 12px; } }
/* Ensure dropdown is clickable above header */
.lang-switch{ position:relative; z-index:120; }
.lang-menu{ z-index:130; }

/* Extra small devices (phones < 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero__banner {
        margin-top: 15px;
    }
    
    .banner-slider {
        border-radius: 0;
        width: 100%;
        background: var(--bg-900);
    }
    
    .banner-slider img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        display: block;
    }
    
    .banner-dots {
        bottom: 4px;
        gap: 2.5px;
    }
    
    .banner-dot {
        width: 2.5px;
        height: 2.5px;
        border: 0.5px solid rgba(255, 255, 255, 0.3);
    }
    
    .banner-dot.is-active {
        transform: scale(1.8);
        box-shadow: 0 0 2px rgba(248, 200, 105, 0.8);
    }
    
    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero__subtitle {
        font-size: 1.1rem;
    }
    
    .hero__cta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        overflow-x: visible;
    }
    
    .btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .hero__meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .hero__meta div {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 12px 16px;
        min-width: auto;
        text-align: center;
    }
    
    .hero__meta-number {
        font-size: 1.5rem;
    }
    
    .section--cards .card-strip {
        grid-template-columns: 1fr;
    }
    
    .game-card {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    
    .game-card img {
        width: 120px;
        height: 120px;
        object-fit: cover;
    }
    
    .game-card__body {
        flex: 1;
    }
    
    .footer__grid {
        text-align: center;
    }
    
    .floating-btn {
        width: calc(100% - 32px);
        left: 16px;
        right: 16px;
        bottom: 16px;
        text-align: center;
    }
}

/* Smallest phones */
@media (max-width: 360px) {
    .brand__mark {
        height: 48px;
    }
    
    .header-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .nav-pill {
        font-size: 12px;
        padding: 4px 8px;
        gap: 4px;
    }
    
    .hero__badge {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
    
    .hero__banner {
        margin-top: 12px;
    }
    
    .banner-slider {
        border-radius: 0;
        width: 100%;
        background: var(--bg-900);
    }
    
    .banner-slider img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        display: block;
    }
    
    .banner-dots {
        bottom: 3px;
        gap: 2px;
    }
    
    .banner-dot {
        width: 2px;
        height: 2px;
        border: 0.5px solid rgba(255, 255, 255, 0.25);
    }
    
    .banner-dot.is-active {
        transform: scale(2);
        box-shadow: 0 0 2px rgba(248, 200, 105, 0.9);
    }
}

/* Hamburger Menu Styles */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
    z-index: 110;
}

.hamburger-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-line:not(:last-child) {
    margin-bottom: 4px;
}

/* Hamburger animation when active */
.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Panel */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    z-index: 105;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav-panel.active {
    transform: translateX(0);
}

/* Mobile Navigation Header */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.mobile-nav-logo {
    height: 36px;
    width: auto;
}

.mobile-nav-close {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    padding: 24px 0;
}

.mobile-nav-menu .nav-pill {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    margin: 2px 0;
    color: #a8adb8;
    text-decoration: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    min-height: 56px;
}

.mobile-nav-menu .nav-pill:hover {
    background: rgba(248, 200, 105, 0.1);
    color: #ffffff;
    border-left-color: rgba(248, 200, 105, 0.5);
    transform: translateX(0);
    box-shadow: none;
}

.mobile-nav-menu .nav-pill--active {
    background: rgba(248, 200, 105, 0.15);
    color: #ffffff;
    border-left-color: var(--gold-400);
    font-weight: 600;
    box-shadow: none;
}

.mobile-nav-menu .nav-pill--active:hover {
    background: rgba(248, 200, 105, 0.2);
}

.mobile-nav-menu .nav-pill__icon {
    margin-right: 12px;
    font-size: 20px;
}

/* Mobile Navigation Actions */
.mobile-nav-actions {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    background: rgba(0, 0, 0, 0.2);
}

.mobile-nav-actions .header-btn {
    width: 100%;
    margin-bottom: 12px;
    padding: 14px;
    font-size: 16px;
    justify-content: center;
}

.mobile-nav-actions .header-btn:last-child {
    margin-bottom: 0;
}

/* Show hamburger on mobile */
@media (max-width: 920px) {
    .hamburger-btn {
        display: flex;
    }
    
    .header-nav {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .header-top__inner {
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    
    /* Banner optimization for mobile */
    .hero__banner {
        margin-top: 16px;
    }
    
    .banner-slider {
        border-radius: 0;
        background: var(--bg-900);
    }
    
    .banner-slide {
        display: block;
    }
    
    .banner-slide img {
        object-fit: contain;
        object-position: center;
        width: 100%;
        height: auto;
        display: block;
    }
    
    .banner-dots {
        bottom: 4px;
        gap: 2.5px;
    }
    
    .banner-dot {
        width: 2.5px;
        height: 2.5px;
        border-width: 0.5px;
        opacity: 0.6;
    }
    
    .banner-dot.is-active {
        opacity: 1;
        transform: scale(1.8);
        box-shadow: 0 0 2px rgba(248, 200, 105, 0.8);
    }
}

/* Prevent body scroll when menu is open */
body.mobile-nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Ensure touch-friendly tap targets */
@media (hover: none) and (pointer: coarse) {
    a, button, .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Banner dots - smaller for mobile touch */
    .banner-dots {
        bottom: 4px;
        gap: 2.5px;
    }
    
    .banner-dot {
        width: 2.5px;
        height: 2.5px;
        min-width: auto;
        min-height: auto;
        border-width: 0.5px;
        opacity: 0.6;
    }
    
    .banner-dot.is-active {
        transform: scale(2);
        opacity: 1;
    }
    
    .nav-pill {
        min-height: 36px;
    }
    
    .mobile-nav-menu .nav-pill {
        min-height: 56px;
    }
}

/* High DPI mobile devices (Retina displays) */
@media only screen and (max-width: 640px) and (-webkit-min-device-pixel-ratio: 2),
       only screen and (max-width: 640px) and (min-resolution: 192dpi) {
    .banner-dots {
        bottom: 3px;
        gap: 2px;
    }
    
    .banner-dot {
        width: 2px;
        height: 2px;
        border-width: 0.5px;
        opacity: 0.5;
    }
    
    .banner-dot.is-active {
        width: 2px;
        height: 2px;
        transform: scale(2.2);
        opacity: 1;
        box-shadow: 0 0 2px rgba(248, 200, 105, 1);
    }
}
