/* Homepage CSS - Luxury Midnight Emerald & Gold Dark Mode */

/* Hero Banner */
.hero-wrapper {
    position: relative;
    padding: 50px 15px 35px;
    background: radial-gradient(circle at top, #0f3630 0%, #071917 60%, #030a09 100%);
    text-align: center;
    color: var(--color-white);
    overflow: visible;
    z-index: 10;
    border-bottom: 1px solid rgba(212, 175, 122, 0.2);
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 122, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(26, 99, 91, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-glow-sphere {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -15%);
    width: 90%;
    max-width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(212, 175, 122, 0.15) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(35px);
}

.hero-content {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 15px 0;
    color: var(--color-white);
    letter-spacing: -0.5px;
}

.hero-title .title-accent {
    font-style: italic;
    color: #ffd79e;
    font-size: 0.95em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 0 auto 30px;
    line-height: 1.6;
    font-weight: 400;
}

/* Floating Search/Dashboard Bar overlay */
.search-overlay-bar {
    background: #091c1a;
    border-radius: 18px;
    padding: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 122, 0.1);
    border: 1px solid rgba(212, 175, 122, 0.3);
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.search-item:hover {
    background: rgba(212, 175, 122, 0.08);
}

.search-item:last-of-type {
    border-bottom: none;
}

.search-icon {
    font-size: 15px;
    color: var(--color-primary);
    width: 36px;
    height: 36px;
    background: rgba(212, 175, 122, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.search-item:hover .search-icon {
    background: var(--color-primary);
    color: #061110;
}

.search-text-group {
    display: flex;
    flex-direction: column;
}

.search-text-group label {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--color-text-dim);
    letter-spacing: 0.5px;
}

.search-text-group span {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-white);
}

.search-btn-wrapper {
    display: flex;
    width: 100%;
}

.btn-search-cta {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ba9560 100%);
    color: #061110;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 122, 0.3);
}

.btn-search-cta:hover {
    background: var(--color-white);
    color: #061110;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Banner Wrapper Ad Block */
.banner-wrapper {
    display: block !important;
    padding: 25px 15px;
    max-width: 1280px;
    margin: 0 auto;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
}

.banner-logo {
    text-align: center;
    margin-bottom: 20px;
}

.banner-logo img {
    height: 60px;
    filter: drop-shadow(0 4px 15px rgba(212, 175, 122, 0.2));
}

.banner-ad img {
    width: 100%;
    max-width: 900px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Desktop Hero & Banner Enhancements */
@media (min-width: 768px) {
    .hero-wrapper {
        padding: 95px 20px 115px;
    }

    .hero-title {
        font-size: 46px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .search-overlay-bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-radius: 100px;
        padding: 12px 18px 12px 30px;
        gap: 0;
        position: absolute;
        bottom: 0;
        left: 50%;
        width: calc(100% - 40px);
        max-width: 980px;
        transform: translate(-50%, 50%);
    }

    .search-item {
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        flex: 1;
        padding: 8px 18px 8px 0;
        margin-right: 18px;
        border-radius: 0;
    }

    .search-item:hover {
        background: transparent;
    }

    .search-item:nth-child(3) {
        border-right: none;
        margin-right: 0;
    }

    .search-btn-wrapper {
        width: auto;
    }

    .btn-search-cta {
        padding: 15px 32px;
        border-radius: 50px;
        font-size: 14px;
    }

    .banner-wrapper {
        margin-top: 50px;
        padding: 30px 15px;
    }

    .banner-logo img {
        height: 85px;
        margin-bottom: 25px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 50px;
    }
}

/* About & Stats Section */
.about-stats-section {
    padding-top: 30px;
    margin-top: 20px;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-left {
    display: flex;
    flex-direction: column;
}

.about-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-white);
    margin: 0 0 16px 0;
    line-height: 1.25;
}

.about-desc {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.btn-about-cta {
    align-self: flex-start;
    background: var(--color-primary);
    color: #061110;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 122, 0.25);
}

.btn-about-cta:hover {
    background: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.about-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 480px) and (max-width: 767px) {
    .about-right {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md), 0 0 15px rgba(212, 175, 122, 0.15);
    border-color: var(--color-primary);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--color-text-dim);
    font-weight: 700;
}

@media (min-width: 768px) {
    .about-stats-section {
        padding-top: 60px;
        margin-top: 40px;
    }

    .about-container {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }

    .about-left {
        flex: 1.2;
    }

    .about-right {
        flex: 0.8;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .about-heading {
        font-size: 34px;
    }

    .stat-box {
        padding: 24px;
    }

    .stat-value {
        font-size: 36px;
    }
}

/* Sections Global */
.section {
    padding: 0 12px 35px;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section {
        padding: 0 15px 40px;
    }
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 20px;
    padding: 0 5px;
}

.section-title {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 26px;
    }
}

.title-dot {
    width: 5px;
    height: 20px;
    background: var(--color-primary);
    border-radius: 3px;
    margin-right: 10px;
    box-shadow: var(--glow-primary);
}

.view-all {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all:hover {
    color: var(--color-primary-hover);
    text-shadow: 0 0 8px rgba(212, 175, 122, 0.4);
}

/* Category Filters */
.category-filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 5px 5px 15px 5px;
    margin-bottom: 15px;
    -webkit-overflow-scrolling: touch;
}

.category-filters::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    white-space: nowrap;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    background: var(--bg-card);
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-white);
    background: rgba(212, 175, 122, 0.1);
}

.filter-btn.active {
    background: var(--color-primary);
    color: #061110;
    border-color: var(--color-primary);
    box-shadow: var(--glow-primary);
}

/* Games Grid */
.vertical-games {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.game-card {
    background: var(--bg-card);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(212, 175, 122, 0.15);
}

.game-card-top {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-light);
}

.domain-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-primary);
    box-shadow: var(--glow-primary);
}

.game-card-domain {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.game-card:hover .game-card-image {
    transform: scale(1.04);
}

.game-card-info {
    padding: 16px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.game-card-actions {
    display: flex;
    gap: 10px;
    padding: 0 16px 16px;
}

.btn-card {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-card.visite {
    background: var(--color-primary);
    color: #061110;
    border: 1px solid var(--color-primary);
}

.btn-card.visite:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.btn-card.contato {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-card.contato:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* VIP Banner Section */
.vip-banner-section {
    padding: 30px 12px;
}

.vip-banner-container {
    background: linear-gradient(135deg, #0a1f1c 0%, #061311 100%);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 122, 0.3);
    padding: 28px 20px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 25px;
    box-shadow: var(--shadow-lg), 0 0 25px rgba(212, 175, 122, 0.1);
}

.vip-banner-left {
    display: flex;
    flex-direction: column;
}

.vip-tag {
    font-size: 10px;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.vip-heading {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-white);
    margin: 0 0 15px 0;
    line-height: 1.25;
}

.vip-desc {
    font-size: 13px;
    color: var(--color-muted);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.btn-vip-cta {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ba9560 100%);
    color: #061110;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 122, 0.3);
}

.btn-vip-cta:hover {
    background: var(--color-white);
    color: #061110;
    transform: translateY(-2px);
}

.vip-banner-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-badge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
}

.vip-badge-item {
    height: 100px;
    border-radius: 14px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.vip-badge-item:hover {
    transform: scale(1.03);
}

.vip-badge-item .badge-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.vip-badge-item .badge-perk {
    font-size: 10px;
    font-weight: 700;
}

.vip-badge-item.bronze {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.2) 0%, rgba(205, 127, 50, 0.05) 100%);
    color: #ffd2ad;
    border-color: rgba(205, 127, 50, 0.35);
}

.vip-badge-item.silver {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2) 0%, rgba(192, 192, 192, 0.05) 100%);
    color: #e3e9eb;
    border-color: rgba(192, 192, 192, 0.35);
}

.vip-badge-item.gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 215, 0, 0.05) 100%);
    color: #ffe699;
    border-color: rgba(255, 215, 0, 0.4);
}

.vip-badge-item.platinum {
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.3) 0%, rgba(212, 175, 122, 0.08) 100%);
    color: var(--color-primary);
    border-color: rgba(212, 175, 122, 0.5);
    box-shadow: 0 0 15px rgba(212, 175, 122, 0.15);
}

@media (min-width: 768px) {
    .vip-banner-section {
        padding: 40px 15px;
    }

    .vip-banner-container {
        flex-direction: row;
        align-items: center;
        padding: 50px;
        border-radius: 24px;
        gap: 40px;
    }

    .vip-banner-left {
        flex: 1.1;
    }

    .vip-banner-right {
        flex: 0.9;
        width: 100%;
    }

    .vip-heading {
        font-size: 32px;
    }

    .vip-badge-item {
        height: 120px;
        padding: 15px;
    }

    .vip-badge-item .badge-title {
        font-size: 18px;
    }

    .vip-badge-item .badge-perk {
        font-size: 11px;
    }
}

/* Small Games Grid */
.small-games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.small-game {
    width: 100%;
    aspect-ratio: 1.3;
    border-radius: 14px;
    background: var(--bg-card);
    display: block;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.small-game:hover {
    transform: scale(1.04);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md), 0 0 15px rgba(212, 175, 122, 0.2);
    z-index: 5;
}

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

/* Trust Strip */
.trust-strip {
    background: #081615;
    border-bottom: 1px solid var(--border-light);
    padding: 15px 0;
    overflow-x: auto;
    box-shadow: var(--shadow-sm);
    -webkit-overflow-scrolling: touch;
}

.trust-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    min-width: max-content;
    padding: 0 15px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .trust-strip {
        padding: 20px 0;
    }

    .trust-container {
        justify-content: center;
        gap: 40px;
        padding: 0 20px;
        max-width: 1280px;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.trust-item:hover {
    color: var(--color-white);
}

.trust-item i {
    font-size: 18px;
    color: var(--color-primary);
}

/* Featured Promos */
.promos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.promo-card {
    background: var(--bg-card);
    border-radius: 18px;
    padding: 22px 18px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-primary);
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 15px rgba(212, 175, 122, 0.15);
    border-color: var(--color-primary);
}

.promo-card.promo-featured {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, #0e2421 0%, #091a18 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 122, 0.1);
}

.promo-badge {
    align-self: flex-start;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #061110;
    background: var(--color-primary);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.promo-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-white);
    margin: 0 0 8px 0;
    font-weight: 700;
}

.promo-card p {
    font-size: 13px;
    color: var(--color-muted);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.promo-cta {
    font-size: 12px;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.promo-card:hover .promo-cta {
    color: var(--color-white);
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.step-card {
    background: var(--bg-card);
    border-radius: 18px;
    padding: 22px 18px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 15px rgba(212, 175, 122, 0.15);
    border-color: var(--color-primary);
}

.step-number {
    position: absolute;
    top: 12px;
    right: 16px;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: rgba(212, 175, 122, 0.2);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-primary);
    margin: 0 auto 15px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-white);
    margin: 0 0 8px 0;
    font-weight: 700;
}

.step-desc {
    font-size: 13px;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.5;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.benefit-card {
    background: var(--bg-card);
    border-radius: 18px;
    padding: 22px 18px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 15px rgba(212, 175, 122, 0.15);
    border-color: var(--color-primary);
}

.benefit-card i {
    font-size: 20px;
    color: var(--color-primary);
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.benefit-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-white);
    margin: 0 0 8px 0;
    font-weight: 700;
}

.benefit-card p {
    font-size: 13px;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.5;
}

/* Licenses Grid */
.licenses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.license-badge {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.license-badge:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md), 0 0 15px rgba(212, 175, 122, 0.15);
}

.license-badge i {
    font-size: 20px;
    color: var(--color-primary);
}

.license-badge span {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* FAQ Accordion */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-question {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--color-white);
    cursor: pointer;
    font-size: 14px;
}

.faq-question i {
    font-size: 11px;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 16px 16px;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.6;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item.active {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(135deg);
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 15px rgba(212, 175, 122, 0.15);
    border-color: var(--color-primary);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), #9e7943);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #061110;
    font-size: 16px;
}

.testimonial-user {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 700;
    color: var(--color-white);
    font-size: 14px;
}

.testimonial-win {
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
}

.testimonial-stars {
    color: #ffd700;
    font-size: 11px;
    margin-bottom: 8px;
}

.testimonial-text {
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.6;
    font-style: italic;
}

/* Guide Grid */
.guide-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.guide-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 22px 18px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md), 0 0 15px rgba(212, 175, 122, 0.15);
}

.guide-icon {
    width: 46px;
    height: 46px;
    background: rgba(212, 175, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.guide-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-white);
    margin: 0 0 8px 0;
    font-weight: 700;
}

.guide-card p {
    font-size: 13px;
    color: var(--color-muted);
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .guide-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .guide-card {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .guide-card h4 {
        font-size: 18px;
    }

    .guide-card p {
        font-size: 14px;
    }
}

/* Responsible Gaming */
.responsible-gaming-box {
    background: linear-gradient(135deg, rgba(12, 30, 28, 0.8) 0%, rgba(6, 17, 16, 0.8) 100%);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 24px 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.rg-icon {
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.responsible-gaming-box h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-white);
    margin: 0 0 8px 0;
    font-weight: 700;
}

.responsible-gaming-box p {
    font-size: 13px;
    color: var(--color-muted);
    margin: 0 0 16px 0;
}

.rg-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rg-link:hover {
    color: var(--color-white);
}

/* App Download Banner */
.app-download-banner {
    background: linear-gradient(135deg, #0b221f 0%, #061513 100%);
    border-radius: 20px;
    padding: 30px 18px;
    text-align: center;
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 122, 0.3);
}

.app-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.app-title span {
    color: var(--color-primary);
}

.app-desc {
    font-size: 13px;
    color: var(--color-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-app {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 122, 0.3);
    border-radius: 12px;
    padding: 12px 20px;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.btn-app:hover {
    background: var(--color-primary);
    color: #061110;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

.btn-app i {
    font-size: 20px;
}

/* Footer Promo */
.footer-promo {
    margin: 30px 12px;
    background: linear-gradient(135deg, #0b221f 0%, #061513 100%);
    border-radius: 18px;
    padding: 30px 18px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 175, 122, 0.3);
}

.footer-promo h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-primary);
    margin: 0 0 8px 0;
    font-weight: 700;
}

.footer-promo p {
    font-size: 13px;
    color: var(--color-muted);
    margin: 0;
}

/* Responsive Desktop Overrides */
@media (min-width: 768px) {
    .promos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .promo-card {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .promo-card h4 {
        font-size: 20px;
    }

    .promo-card p {
        font-size: 14px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .step-card {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-desc {
        font-size: 14px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .benefit-card {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .benefit-card h4 {
        font-size: 18px;
    }

    .benefit-card p {
        font-size: 14px;
    }
    
    .licenses-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .license-badge {
        padding: 20px 10px;
        border-radius: 16px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .testimonial-card {
        padding: 24px;
        border-radius: 20px;
    }

    .testimonial-name {
        font-size: 15px;
    }

    .testimonial-win {
        font-size: 12px;
    }

    .testimonial-text {
        font-size: 14px;
    }
    
    .vertical-games {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .game-card-image {
        height: 200px;
    }

    .game-card-info {
        padding: 20px;
        font-size: 14px;
    }

    .game-card-actions {
        padding: 0 20px 20px;
        gap: 12px;
    }

    .btn-card {
        padding: 12px;
        font-size: 13px;
        border-radius: 10px;
    }
    
    .small-games-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .app-download-banner {
        padding: 50px;
        border-radius: 24px;
    }

    .app-title {
        font-size: 24px;
    }

    .app-desc {
        font-size: 14px;
    }
    
    .app-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .footer-promo {
        margin: 40px 15px;
        border-radius: 20px;
        padding: 40px 20px;
    }

    .footer-promo h3 {
        font-size: 24px;
    }

    .footer-promo p {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .vertical-games {
        grid-template-columns: repeat(3, 1fr);
    }
}
