/* ==========================================
   B7 CASINO - STYLES
   Purple & Gold Theme
   ========================================== */

/* ===== CSS Variables ===== */
:root {
    /* Background Colors */
    --bg-dark: #0a0015;
    --bg-purple-dark: #1a0829;
    --bg-purple: #2a0e45;
    --bg-purple-light: #4a1a6b;
    --bg-card: #2d1250;

    /* Purple Shades */
    --purple-primary: #6b2fa3;
    --purple-secondary: #8b4fc7;
    --purple-light: #a366d9;
    --purple-glow: rgba(107, 47, 163, 0.5);

    /* Gold/Yellow Colors */
    --gold-primary: #ffc107;
    --gold-secondary: #ffb700;
    --gold-light: #ffd54f;
    --gold-dark: #f9a825;

    /* Pink/Magenta Accents */
    --pink-primary: #ff1493;
    --pink-secondary: #e91e63;
    --pink-light: #ff69b4;

    /* Text Colors */
    --text-white: #ffffff;
    --text-light: #e8e8e8;
    --text-muted: #b8b8b8;
    --text-dark: #8a8a8a;

    /* Effects */
    --shadow-glow: 0 0 20px rgba(255, 193, 7, 0.4);
    --shadow-purple: 0 0 30px rgba(107, 47, 163, 0.6);
    --shadow-pink: 0 0 25px rgba(255, 20, 147, 0.5);
    --border-glow: rgba(255, 193, 7, 0.3);

    /* Gradients */
    --gradient-purple: linear-gradient(135deg, #4a1a6b 0%, #2a0e45 100%);
    --gradient-gold: linear-gradient(135deg, #ffc107 0%, #f9a825 100%);
    --gradient-pink: linear-gradient(135deg, #ff1493 0%, #e91e63 100%);
    --gradient-hero: linear-gradient(180deg, #1a0829 0%, #0a0015 100%);
}

/* ===== Reset & Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Montserrat', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(107, 47, 163, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

/* ===== Container ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ===== Section Styles ===== */
section {
    padding: 60px 0;
    position: relative;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.3);
}

.section-description {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: -30px;
    margin-bottom: 40px;
}

/* ===== HEADER ===== */
.header {
    background: var(--bg-purple-dark);
    border-bottom: 2px solid var(--purple-primary);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

/* Left section (Logo + Burger) */
.header-wrapper > :first-child,
.header-wrapper > .logo {
    justify-self: start;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-content {
    display: none;
}

.logo-name {
    display: none;
}

.logo-tagline {
    display: none;
}

/* Navigation */
.main-nav {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    justify-self: center;
    white-space: nowrap;
}

.nav-item {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item:hover {
    color: var(--gold-primary);
    background: rgba(255, 193, 7, 0.1);
    transform: translateY(-2px);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 80%;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-self: end;
}

.btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-login {
    background: transparent;
    border: 2px solid var(--purple-primary);
    color: var(--text-white);
}

.btn-login:hover {
    background: var(--purple-primary);
    border-color: var(--purple-secondary);
    box-shadow: var(--shadow-purple);
    transform: translateY(-2px);
}

.btn-register {
    background: var(--gradient-purple);
    color: var(--text-white);
    border: 2px solid transparent;
}

.btn-register:hover {
    background: var(--purple-secondary);
    box-shadow: var(--shadow-purple);
    transform: translateY(-2px);
}

/* JOIN NOW BUTTON - Extra Attention */
.btn-join-now {
    background: var(--gradient-gold);
    color: #000;
    font-weight: 900;
    font-size: 1rem;
    padding: 14px 30px;
    border: 3px solid var(--gold-light);
    box-shadow: var(--shadow-glow);
    animation: pulse-glow 2s infinite;
    position: relative;
}

.btn-join-now::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.5s;
}

.btn-join-now:hover::before {
    left: 100%;
}

.btn-join-now:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px rgba(255, 193, 7, 0.8), 0 0 60px rgba(255, 193, 7, 0.5);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 193, 7, 0.8), 0 0 60px rgba(255, 193, 7, 0.4);
    }
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: var(--bg-purple);
    border-radius: 8px;
    cursor: pointer;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu:hover span {
    background: var(--gold-light);
}

/* ===== MOBILE MENU ===== */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: var(--gradient-purple);
    padding: 30px 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-overlay.active .mobile-menu {
    right: 0;
}

.mobile-close {
    font-size: 2.5rem;
    color: var(--gold-primary);
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.mobile-close:hover {
    transform: rotate(90deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.mobile-link {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-link:hover {
    background: rgba(255, 193, 7, 0.2);
    border-left-color: var(--gold-primary);
    transform: translateX(10px);
}

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

.btn-login-mobile,
.btn-register-mobile {
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    font-weight: 700;
}

.btn-login-mobile {
    background: transparent;
    border: 2px solid var(--gold-primary);
}

.btn-register-mobile {
    background: var(--gradient-gold);
    color: #000;
}

/* ===== HERO SECTION ===== */
.hero-section {
    display: none;
}

/* Main H1 Heading Section */
.main-heading-section {
    background: var(--bg-purple-dark);
    padding: 60px 0;
    text-align: center;
}

.main-h1 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.3;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(107, 47, 163, 0.2) 0%, transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(255, 20, 147, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--gold-primary);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(255, 193, 7, 0.1);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 2.5rem;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-large {
    background: var(--gradient-gold);
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    padding: 18px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-glow);
    animation: pulse-glow 2s infinite;
}

.btn-primary-large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px rgba(255, 193, 7, 0.9);
}

.btn-secondary-large {
    background: transparent;
    border: 2px solid var(--purple-primary);
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 40px;
    border-radius: 12px;
}

.btn-secondary-large:hover {
    background: var(--purple-primary);
    box-shadow: var(--shadow-purple);
    transform: translateY(-3px);
}

.hero-image-wrapper {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.hero-mascot {
    max-width: 100%;
    filter: drop-shadow(0 0 30px rgba(255, 193, 7, 0.3));
}

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

/* ===== BONUS BANNER ===== */
.bonus-banner {
    background: var(--gradient-purple);
    padding: 40px 0;
    border-top: 2px solid var(--gold-primary);
    border-bottom: 2px solid var(--gold-primary);
}

.bonus-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.bonus-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bonus-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.bonus-description {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

.bonus-list {
    list-style: none;
    margin-bottom: 30px;
}

.bonus-list li {
    padding: 10px 0;
    font-size: 1.05rem;
    color: var(--text-light);
}

.btn-claim {
    background: var(--gradient-gold);
    color: #000;
    font-weight: 900;
    padding: 16px 35px;
    border-radius: 12px;
    font-size: 1.1rem;
    box-shadow: var(--shadow-glow);
    animation: pulse-glow 2s infinite;
}

.btn-claim:hover {
    transform: translateY(-3px) scale(1.05);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: var(--bg-dark);
}

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

.feature-box {
    background: var(--gradient-purple);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 2px solid var(--purple-primary);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 47, 163, 0.4);
    border-color: var(--gold-primary);
}

.feature-img {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.feature-img img {
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-img img {
    transform: scale(1.1);
}

.feature-heading {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.feature-text {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
}

.feature-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient-gold);
    color: #000;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* ===== GAME CATEGORIES ===== */
.categories-section {
    background: var(--bg-purple-dark);
}

.categories-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.3);
}

.category-img-wrapper {
    position: relative;
    overflow: hidden;
}

.category-img-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-item:hover .category-img-wrapper img {
    transform: scale(1.15);
}

.category-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
}

.category-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.category-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== GAMES SECTION ===== */
.games-section {
    background: var(--bg-dark);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.btn-view-all {
    background: transparent;
    border: 2px solid var(--purple-primary);
    color: var(--text-white);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-view-all:hover {
    background: var(--purple-primary);
    box-shadow: var(--shadow-purple);
}

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

.game-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.game-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

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

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-icon {
    background: var(--gradient-gold);
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
}

.game-details {
    padding: 15px;
}

.game-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-white);
}

.game-provider {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== PROMOTIONS SECTION ===== */
.promotions-section {
    background: var(--bg-purple-dark);
}

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

.promo-card {
    background: var(--gradient-purple);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--purple-primary);
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.3);
}

.promo-image {
    overflow: hidden;
}

.promo-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promo-card:hover .promo-image img {
    transform: scale(1.1);
}

.promo-content {
    padding: 25px;
}

.promo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.promo-amount {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 20px;
}

.promo-features {
    margin-bottom: 20px;
}

.promo-features li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.btn-promo {
    background: var(--gradient-gold);
    color: #000;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    width: 100%;
    text-align: center;
    display: block;
}

.btn-promo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* ===== PROVIDERS SECTION ===== */
.providers-section {
    background: var(--bg-dark);
}

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

.provider-logo {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 100px;
}

.provider-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.2);
}

.provider-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.provider-logo:hover img {
    opacity: 1;
}

/* ===== PAYMENT METHODS ===== */
.payments-section {
    background: var(--bg-purple-dark);
}

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

.payment-method {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 100px;
}

.payment-method:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.2);
}

.payment-method img {
    max-width: 80%;
    max-height: 50px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-method:hover img {
    opacity: 1;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--bg-dark);
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gradient-purple);
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid var(--purple-primary);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold-primary);
}

.faq-btn {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    color: var(--text-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-btn:hover {
    background: rgba(255, 193, 7, 0.1);
}

.faq-q {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
}

.faq-toggle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer-wrapper {
    max-height: 500px;
}

.faq-answer {
    padding: 0 25px 25px 25px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-purple);
    padding: 80px 0;
    text-align: center;
    border-top: 3px solid var(--gold-primary);
    border-bottom: 3px solid var(--gold-primary);
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.cta-text {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.btn-cta {
    background: var(--gradient-gold);
    color: #000;
    font-weight: 900;
    font-size: 1.3rem;
    padding: 20px 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-glow);
    animation: pulse-glow 2s infinite;
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 50px rgba(255, 193, 7, 1);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-purple-dark);
    padding: 60px 0 30px;
    border-top: 3px solid var(--purple-primary);
}

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

.footer-brand {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.footer-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-license-badge {
    margin-bottom: 15px;
}

.footer-license-badge img {
    max-width: 150px;
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.footer-badge-img {
    max-width: 60px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-badge-img:hover {
    opacity: 1;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list a {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-list a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.footer-payment-icons {
    display: flex;
    gap: 15px;
}

.footer-payment-icon {
    max-width: 50px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-payment-icon:hover {
    opacity: 1;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets (1024px and below) */
@media (max-width: 1024px) {
    .section-heading {
        font-size: 2rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image-wrapper {
        text-align: center;
    }

    .bonus-content {
        grid-template-columns: 1fr;
    }

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

    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .providers-grid {
        grid-template-columns: repeat(6, 1fr);
    }

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

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

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .header-buttons .btn-login,
    .header-buttons .btn-register {
        display: none;
    }

    .header-buttons .btn-join-now {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .main-h1 {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn-primary-large,
    .btn-secondary-large {
        font-size: 1rem;
        padding: 14px 30px;
    }

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

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

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

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

    .providers-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .btn-cta {
        font-size: 1.1rem;
        padding: 16px 35px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .categories-wrapper {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .hero-actions .btn-primary-large,
    .hero-actions .btn-secondary-large {
        width: 100%;
    }
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    background: var(--bg-dark);
    padding: 60px 0;
}

.content-section:nth-child(even) {
    background: var(--bg-purple-dark);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-section h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 20px;
    margin-top: 30px;
}

.content-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.content-section ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 25px;
}

.content-section ul li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

/* ===== TABLE STYLES ===== */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--purple-primary);
}

.info-table thead {
    background: var(--gradient-purple);
}

.info-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    color: var(--gold-primary);
    font-size: 1.1rem;
    border-bottom: 2px solid var(--purple-primary);
}

.info-table td {
    padding: 15px 20px;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
}

.info-table tbody tr:last-child td {
    border-bottom: none;
}

.info-table tbody tr {
    transition: background 0.3s ease;
}

.info-table tbody tr:hover {
    background: rgba(255, 193, 7, 0.05);
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.hidden {
    display: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== SCROLL BAR ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--purple-primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}