/* Homepage — Enhanced Casino UI */

/* ── Hero Banner ── */
.hero-banner {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    padding-top: 80px;
}

.hero-bg-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, rgba(6, 182, 212, 0.08) 30%, transparent 70%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0.1;
    animation: float-particle 20s infinite ease-in-out;
}

.hero-particles::before {
    background: var(--gradient-primary);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.hero-particles::after {
    background: var(--gradient-secondary);
    bottom: 10%;
    right: -5%;
    animation-delay: -10s;
}

@keyframes float-particle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(0, 50px) scale(0.9); }
    75% { transform: translate(-30px, 20px) scale(1.05); }
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 24px;
    animation: pulse-badge 3s infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.3); }
    50% { box-shadow: 0 0 20px 5px rgba(139, 92, 246, 0.15); }
}

.badge-icon {
    font-size: 1.3rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-light);
}

.hero-logo {
    margin-bottom: 28px;
}

.hero-logo img {
    max-height: 70px;
    width: auto;
}

.hero-content .section-label {
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-light);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content > p {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 520px;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    transition: var(--transition);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 1.2rem;
}

.trust-item span:last-child {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

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

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-glow), 0 0 60px rgba(139, 92, 246, 0.2);
    animation: float-image 6s ease-in-out infinite;
}

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

.hero-image {
    max-width: 480px;
    width: 100%;
    height: auto;
    display: block;
}

/* Float Cards */
.hero-float-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    animation: float-card 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

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

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

.float-card-3 {
    bottom: 5%;
    right: 10%;
    animation-delay: -3s;
}

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

.float-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.float-info {
    display: flex;
    flex-direction: column;
}

.float-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.float-amount {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
}

.float-badge-winner {
    margin-left: auto;
    font-size: 1.2rem;
}

.float-badge-online {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.float-badge-online span {
    color: var(--secondary);
    animation: blink 1.5s infinite;
}

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

.float-badge-hot {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Scroll Hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: bounce-scroll 2s infinite;
}

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

.scroll-wheel {
    width: 26px;
    height: 42px;
    border: 2px solid var(--border);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 4px;
    animation: scroll-wheel-anim 2s infinite;
}

@keyframes scroll-wheel-anim {
    0%, 100% { opacity: 1; top: 8px; }
    30% { opacity: 0; top: 20px; }
}

/* ── Ad Block Section ── */
.ad-block-section {
    padding: 40px 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ad-block-section-alt {
    background: var(--bg-dark);
}

.ad-block-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ad-block-item {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.ad-block-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.ad-block-item img {
    width: 100%;
    height: auto;
    display: block;
}

.ad-block {
    text-align: center;
}

.ad-block img {
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

/* ── Ad Strip (legacy) ── */
.ad-strip {
    padding: 24px 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
}

.ad-strip img {
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius);
}

/* ── Section Head ── */
.section-head.center {
    text-align: center;
    margin-bottom: 56px;
}

.center-desc {
    margin: 0 auto;
}

/* ── Services Grid 3×2 ── */
.services-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

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

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-gold);
}

.service-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.06);
}

.service-body {
    padding: 24px;
}

.service-body h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--gold-light);
}

.service-body p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--neon);
}

.service-link:hover {
    color: #00FF88;
}

/* ── About Split ── */
.about-split {
    padding: 100px 0;
    background: var(--bg-elevated);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-main);
    line-height: 1.8;
}

.about-text .btn {
    margin: 8px 0 32px;
}

.about-thumb {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    max-width: 280px;
}

.about-thumb img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-visual {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.about-visual img {
    width: 100%;
    min-height: 480px;
    object-fit: cover;
}

/* ── Steps Timeline ── */
.steps-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.steps-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.steps-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.step-item {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    text-align: center;
    padding: 24px 20px;
    position: relative;
}

.step-icon {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
}

.step-icon-bg {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    transition: var(--transition);
}

.step-item:hover .step-icon-bg {
    border-color: var(--primary);
    background: var(--bg-card-hover);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--glow-primary);
}

.step-number {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    border: 3px solid var(--bg-dark);
}

.step-info h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 10px;
    font-family: var(--font-display);
}

.step-info p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 12px;
}

.step-time {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--secondary);
    background: rgba(6, 182, 212, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
}

.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 45px;
    flex-shrink: 0;
}

.connector-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--border) 0%, var(--primary) 50%, var(--border) 100%);
    opacity: 0.5;
}

.connector-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: -1px;
}

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

.steps-cta .btn {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

/* ── Tabs Section ── */
.tabs-section {
    padding: 100px 0;
    background: var(--bg-elevated);
}

.tabs-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: start;
}

.tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold);
    color: var(--gold-light);
}

.tabs-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.tabs-panel.active {
    display: grid;
}

.tab-image {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.tab-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.tab-info h3 {
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.tab-info p {
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* ── Media Banner ── */
.media-banner {
    padding: 0;
}

.media-wrap {
    position: relative;
    max-height: 480px;
    overflow: hidden;
}

.media-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.media-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 16, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A0A0F;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.play-btn:hover {
    transform: scale(1.08);
}

.media-overlay p {
    color: var(--text-light);
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.06em;
}

/* ── Circle Features ── */
.circle-features {
    padding: 100px 0;
    background: var(--bg-dark);
}

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

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

.circle-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-gold);
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-item h3 {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.circle-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── Stats Split ── */
.stats-split {
    padding: 100px 0;
    background: var(--bg-elevated);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stats-text > p {
    color: var(--text-main);
    margin-bottom: 32px;
    line-height: 1.8;
}

.stats-row {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.stat-block strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-block span {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stats-visual {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.stats-visual img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ── Testimonials ── */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.testimonials-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    margin: 0;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 28px;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

.testimonial-card footer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.winner-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    font-weight: 700;
    color: var(--text-light);
    font-size: 0.95rem;
}

.testimonial-card footer span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ── Blog Grid ── */
.blog-section {
    padding: 100px 0;
    background: var(--bg-elevated);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
}

.blog-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(8, 8, 16, 0.85);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.06em;
}

.blog-body {
    padding: 24px;
}

.blog-body h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.35;
}

.blog-body h3 a {
    color: var(--text-light);
}

.blog-body h3 a:hover {
    color: var(--gold);
}

.blog-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.blog-link {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--neon);
}

.blog-more {
    text-align: center;
}

/* ── Promo Cards ── */
.promo-section {
    padding: 60px 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
}

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

.promo-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.promo-gold::before { background: var(--gradient-gold); }
.promo-neon::before { background: var(--neon); }
.promo-red::before { background: var(--red-accent); }

.promo-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-gold);
}

.promo-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.promo-card h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.promo-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--gold-light);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.promo-card > p:last-of-type {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 24px;
}

/* ── Gallery ── */
.gallery-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8,8,16,0.92) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-cat {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 4px;
}

.gallery-overlay strong {
    color: var(--text-light);
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.gallery-play {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
}

/* ── Payments ── */
.payments-section {
    padding: 80px 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.payments-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.payments-text p {
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 12px;
}

.payments-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pay-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px 16px;
    text-align: center;
    transition: var(--transition);
}

.pay-item:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.06);
}

.pay-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 8px;
}

.pay-item strong {
    display: block;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.pay-item span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ── Winners Ticker ── */
.winners-section {
    padding: 80px 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.winners-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.winners-track::-webkit-scrollbar {
    height: 4px;
}

.winners-track::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

.winner-chip {
    flex: 0 0 260px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    scroll-snap-align: start;
    transition: var(--transition);
}

.winner-chip:hover {
    border-color: var(--neon);
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.15);
}

.winner-chip img {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.winner-info strong {
    display: block;
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.winner-info span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.winner-info em {
    font-style: normal;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--neon);
}

/* ── VIP ── */
.vip-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A1030 0%, #080810 100%);
    border-top: 1px solid var(--border);
}

.vip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vip-visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-strong);
}

.vip-visual img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.vip-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-gold);
    color: #0A0A0F;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 50px;
    letter-spacing: 0.06em;
}

.vip-content p {
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 24px;
}

.vip-perks {
    list-style: none;
    margin-bottom: 32px;
}

.vip-perks li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-main);
    font-size: 0.95rem;
}

.vip-perks li span {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ── FAQ ── */
.faq-section {
    padding: 100px 0;
    background: var(--bg-elevated);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    border-color: var(--border-strong);
}

.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 700;
    color: var(--text-light);
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 24px 20px;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* ── Providers ── */
.providers-section {
    padding: 80px 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
}

.providers-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.provider-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    min-width: 120px;
    transition: var(--transition);
}

.provider-logo:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.provider-logo img {
    width: 64px;
    height: 48px;
    object-fit: contain;
    border-radius: 6px;
}

.provider-logo span {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    font-weight: 600;
}

/* ── Trust Badges ── */
.trust-section {
    padding: 60px 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.trust-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.trust-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.trust-item strong {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.trust-item p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.ad-strip-alt {
    background: var(--bg-dark);
}

/* ── App Section ── */
.app-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-content p {
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 16px;
}

.app-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.app-visual {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.app-visual img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

/* ── More News ── */
.more-news-section {
    padding: 100px 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}

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

.more-news-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.more-news-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.more-news-link {
    display: block;
    color: inherit;
}

.more-news-link img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.more-news-body {
    padding: 20px;
}

.more-news-body time {
    font-size: 0.75rem;
    color: var(--neon);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.more-news-body h3 {
    font-size: 1.15rem;
    color: var(--text-light);
    margin: 8px 0 10px;
    line-height: 1.35;
}

.more-news-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* ── CTA Banner ── */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1030 0%, #080810 50%, #0A2018 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.cta-inner h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 16px;
    color: var(--gold-light);
}

.cta-inner p {
    color: var(--text-main);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .promo-grid,
    .gallery-grid,
    .more-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 40px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 16px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        order: 2;
    }

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

    .hero-logo img {
        max-height: 50px;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .hero-content > p {
        max-width: 100%;
        font-size: 1rem;
    }

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

    .hero-btns .btn {
        width: auto;
        min-width: 200px;
    }

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

    .trust-item {
        padding: 10px 14px;
    }

    .hero-visual {
        order: 1;
    }

    .hero-image-wrapper {
        max-width: 300px;
    }

    .hero-float-card {
        padding: 10px 14px;
        gap: 10px;
    }

    .float-avatar {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .float-title {
        font-size: 0.7rem;
    }

    .float-amount {
        font-size: 1rem;
    }

    .float-card-1 {
        top: 5%;
        right: 0;
    }

    .float-card-2 {
        bottom: 15%;
        left: 0;
    }

    .float-card-3 {
        bottom: 0;
        right: 0;
    }

    .hero-scroll-hint {
        display: none;
    }

    .ad-block-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ad-block-section {
        padding: 28px 0;
    }

    .services-section,
    .about-split,
    .steps-section,
    .tabs-section,
    .circle-features,
    .stats-split,
    .testimonials-section,
    .blog-section,
    .gallery-section,
    .vip-section,
    .faq-section,
    .app-section,
    .more-news-section,
    .promo-section,
    .payments-section,
    .winners-section,
    .providers-section {
        padding: 64px 0;
    }

    .services-grid,
    .steps-grid,
    .about-grid,
    .stats-grid,
    .testimonials-row,
    .blog-grid,
    .promo-grid,
    .gallery-grid,
    .payments-inner,
    .vip-grid,
    .app-grid,
    .more-news-grid {
        grid-template-columns: 1fr;
    }

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

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

    .tabs-layout {
        grid-template-columns: 1fr;
    }

    .tabs-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 1;
        min-width: calc(50% - 4px);
        text-align: center;
        padding: 12px;
        font-size: 0.82rem;
    }

    .tabs-panel.active {
        grid-template-columns: 1fr;
    }

    .tab-image img {
        aspect-ratio: 16/9;
    }

    .about-visual img {
        min-height: 280px;
    }

    .stats-row {
        gap: 20px;
    }

    .stat-block strong {
        font-size: 2.2rem;
    }

    .media-wrap img {
        height: 280px;
    }

    .circle-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .cta-btns .btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .circle-grid {
        grid-template-columns: 1fr;
    }

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

    .promo-grid,
    .gallery-grid,
    .more-news-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .payments-icons {
        grid-template-columns: 1fr 1fr;
    }

    .app-btns {
        flex-direction: column;
    }

    .app-btns .btn {
        width: 100%;
    }

    .step-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .step-num {
        grid-row: auto;
        font-size: 2.5rem;
    }

    .step-img {
        grid-column: 1;
        grid-row: auto;
        max-height: 120px;
    }

    /* Steps Timeline Responsive */
    .steps-timeline {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .step-connector {
        transform: rotate(90deg);
        padding-top: 0;
        padding: 10px 0;
    }

    .connector-line {
        width: 60px;
    }

    .step-item {
        max-width: 100%;
        width: 100%;
    }
}

@media (hover: none) {
    .service-card:hover,
    .blog-card:hover {
        transform: none;
    }
}
