/* =============================================
   WowBet Casino - Premium Dark Purple Theme
   Domain: wowbett.net
   ============================================= */

:root {
    --primary-color: #7c3aed;
    --primary-hover: #6d28d9;
    --primary-light: #a78bfa;
    --primary-glow: rgba(124, 58, 237, 0.4);
    --accent-color: #f59e0b;
    --accent-glow: rgba(245, 158, 11, 0.4);
    --dark-bg: #0c0a1a;
    --section-bg: #110e24;
    --card-bg: #1a1535;
    --card-hover: #231d45;
    --header-bg: rgba(12, 10, 26, 0.97);
    --text-color: #ffffff;
    --text-muted: #a3a0c2;
    --text-dim: #6b6890;
    --border-color: rgba(124, 58, 237, 0.25);
    --transition-speed: 0.3s;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #6d28d9 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-card: linear-gradient(145deg, #1a1535 0%, #110e24 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

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

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px var(--primary-glow);
    animation: btn-glow-pulse 2s infinite alternate;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px var(--primary-glow), 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-accent {
    background: var(--gradient-accent);
    color: #000;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 15px var(--accent-glow);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--accent-glow), 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.btn-outline:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
    box-shadow: 0 0 15px var(--primary-glow);
}

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

.btn-play {
    background: var(--gradient-primary);
    color: #fff;
    padding: 10px 24px;
    font-size: 0.85rem;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--primary-glow);
}

@keyframes btn-glow-pulse {
    0% { box-shadow: 0 0 15px var(--primary-glow); }
    100% { box-shadow: 0 0 30px var(--primary-glow); }
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.section-title {
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.highlight {
    color: var(--primary-light);
    text-shadow: 0 0 20px var(--primary-glow);
}

.highlight-accent {
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--accent-glow);
}

/* ==================== HEADER ==================== */
.header {
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
}

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

.logo a {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.logo .logo-text {
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
}

.logo span {
    color: var(--primary-light);
}

.nav-list {
    display: flex;
    gap: 22px;
    align-items: center;
}

.nav-list a {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-light);
    transition: width 0.3s;
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a:hover {
    color: var(--primary-light);
}

.nav-list a.highlight-nav {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 4px 14px;
    border-radius: 6px;
}

.nav-list a.highlight-nav:hover {
    background: var(--accent-color);
    color: #000;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: #fff;
}

/* ==================== LANG SELECTOR ==================== */
.lang-selector {
    position: relative;
    margin-right: 10px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.lang-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-width: 130px;
    display: none;
    z-index: 1001;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    margin-top: 5px;
}

.lang-dropdown.active {
    display: block;
}

.lang-dropdown a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.lang-dropdown a:last-child {
    border-bottom: none;
}

.lang-dropdown a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ==================== HERO SECTION ==================== */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--dark-bg);
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.hero-content .badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid var(--primary-color);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-content h1 .glow-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.hero-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 520px;
}

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

.hero-visual img {
    max-width: 90%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
    border: 2px solid rgba(124, 58, 237, 0.2);
}

.hero-float-badge {
    position: absolute;
    bottom: -20px;
    left: -10px;
    background: rgba(26, 21, 53, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 12px 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float-badge 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-float-badge .icon-circle {
    background: var(--gradient-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-float-badge .icon-circle i {
    color: #fff;
    font-size: 14px;
}

.hero-float-badge .badge-text strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.hero-float-badge .badge-text span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

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

/* ==================== POPULAR SLOTS ==================== */
.popular-slots {
    padding: 80px 0;
    background: var(--section-bg);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.slot-card {
    background: var(--gradient-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.slot-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-light);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.2);
}

.slot-card .slot-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.slot-card .slot-info {
    padding: 16px;
    text-align: center;
}

.slot-card .slot-info h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #fff;
    text-transform: none;
}

.slot-card .slot-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.slot-card .btn-review {
    background: transparent;
    border: 1px solid var(--text-dim);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slot-card .btn-review:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
}

/* ==================== INFO SECTION ==================== */
.info-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

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

.info-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Payment Logo Grid */
.payment-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin: 40px 0;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .payment-logo-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.payment-logo-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(124, 58, 237, 0.1);
    height: 80px;
}

.payment-logo-item:hover {
    transform: translateY(-5px);
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.3);
}

.payment-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.2));
}

/* Language Dropdown Updates */
.lang-dropdown a {
    cursor: pointer;
}

/* Info Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
}

.info-table th,
.info-table td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.info-table th {
    background: rgba(124, 58, 237, 0.15);
    color: var(--primary-light);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.info-table td {
    background: var(--card-bg);
    color: var(--text-muted);
}

.info-table tr:hover td {
    background: var(--card-hover);
}

/* ==================== BONUS SECTION ==================== */
.bonus-section {
    padding: 80px 0;
    background: var(--section-bg);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bonus-card {
    background: var(--gradient-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(124, 58, 237, 0.15);
    transition: all 0.3s;
}

.bonus-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(124, 58, 237, 0.15);
}

.bonus-card .bonus-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.bonus-card h3 {
    color: #fff;
    margin-bottom: 10px;
}

.bonus-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Bonus Table */
.bonus-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
}

.bonus-table th,
.bonus-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.bonus-table th {
    background: rgba(124, 58, 237, 0.2);
    color: var(--primary-light);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.bonus-table td {
    background: var(--card-bg);
    color: var(--text-muted);
}

.bonus-table tr:hover td {
    background: var(--card-hover);
}

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

.games-categories {
    margin-top: 30px;
}

.games-categories ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.games-categories ul li {
    background: var(--card-bg);
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(124, 58, 237, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: 0.3s;
}

.games-categories ul li:hover {
    border-color: var(--primary-color);
    color: var(--primary-light);
    background: var(--card-hover);
}

.games-categories ul li i {
    margin-right: 8px;
    color: var(--primary-light);
}

/* Provider Table */
.provider-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
}

.provider-table th,
.provider-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.provider-table th {
    background: rgba(124, 58, 237, 0.2);
    color: var(--primary-light);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.provider-table td {
    background: var(--card-bg);
    color: var(--text-muted);
}

.provider-table tr:hover td {
    background: var(--card-hover);
}

.community-favorites {
    margin-top: 40px;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.community-favorites h3 {
    color: var(--primary-light);
    margin-bottom: 15px;
}

.community-favorites p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==================== PROMO BLOCKS (IMAGE + TEXT) ==================== */
.promo-showcase {
    padding: 80px 0;
    background: var(--section-bg);
}

.promo-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.promo-block:last-child {
    margin-bottom: 0;
}

.promo-img {
    flex: 1;
    position: relative;
}

.promo-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    transition: transform 0.4s;
}

.promo-img:hover img {
    transform: scale(1.02);
}

.promo-content {
    flex: 1;
}

.promo-content h2 {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.promo-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
}

.promo-content ul {
    margin-bottom: 25px;
}

.promo-content ul li {
    color: var(--text-muted);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-content ul li i {
    color: var(--primary-light);
    font-size: 0.8rem;
}

.promo-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.promo-content ol li {
    color: var(--text-muted);
    padding: 6px 0;
    line-height: 1.6;
}

.promo-block.reverse {
    flex-direction: row-reverse;
}

/* ==================== PAYMENT SECTION ==================== */
.payment-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
}

.payment-table th,
.payment-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.payment-table th {
    background: rgba(124, 58, 237, 0.2);
    color: var(--primary-light);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.payment-table td {
    background: var(--card-bg);
    color: var(--text-muted);
}

.payment-table tr:hover td {
    background: var(--card-hover);
}

/* ==================== SECURITY & SUPPORT ==================== */
.security-section {
    padding: 80px 0;
    background: var(--section-bg);
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.security-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: 0.3s;
}

.security-feature:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.security-feature .sf-icon {
    background: rgba(124, 58, 237, 0.15);
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.3rem;
}

.security-feature h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
    text-transform: none;
}

.security-feature p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==================== FAQ ==================== */
.faq {
    padding: 80px 0;
    background: var(--dark-bg);
}

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

.faq-item {
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
    margin-bottom: 5px;
}

.faq-question {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-question i {
    color: var(--primary-light);
    transition: transform 0.3s;
    font-size: 0.9rem;
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

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

/* ==================== FOOTER ==================== */
.footer {
    padding: 60px 0 30px;
    background: #080616;
    border-top: 1px solid rgba(124, 58, 237, 0.15);
}

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

.footer-brand .footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-brand .footer-logo span {
    color: var(--primary-light);
}

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

.footer-col h4 {
    color: var(--primary-light);
    margin-bottom: 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

.footer-bottom .footer-links a {
    color: var(--text-dim);
    font-size: 0.82rem;
    margin-left: 20px;
}

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

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

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

/* Scroll Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-up"].animate-active {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-right"].animate-active {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="fade-left"].animate-active {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="zoom-in"] {
    transform: scale(0.9);
}

[data-animate="zoom-in"].animate-active {
    opacity: 1;
    transform: scale(1);
}

[data-animate="slide-right"] {
    transform: translateX(-40px);
}

[data-animate="slide-right"].animate-active {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="slide-left"] {
    transform: translateX(40px);
}

[data-animate="slide-left"].animate-active {
    opacity: 1;
    transform: translateX(0);
}

/* ==================== GLASS CARD ==================== */
.glass-card {
    background: rgba(26, 21, 53, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 16px;
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(168, 85, 247, 0.1) 50%, rgba(12, 10, 26, 1) 100%);
    text-align: center;
    border-top: 1px solid rgba(124, 58, 237, 0.15);
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cta-banner p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.4rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content p {
        max-width: 100%;
    }
    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }
    .promo-block,
    .promo-block.reverse {
        flex-direction: column;
        text-align: center;
    }
    .promo-img {
        max-width: 500px;
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-bg);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-list.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .hero {
        padding: 120px 0 50px;
    }

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

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

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

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

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

    .info-table, .bonus-table, .provider-table, .payment-table {
        display: block;
        overflow-x: auto;
    }

    .header-actions .btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .container {
        padding: 0 15px;
    }

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

    .promo-content h2 {
        font-size: 1.5rem;
    }
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 8px;
}

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

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

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

/* =================== MOBILE APP SECTION =================== */
.mobile-section {
    padding: 80px 0;
    background: var(--section-bg);
}

.mobile-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mobile-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ==================== REGULATORY SECTION ==================== */
.regulatory-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.regulatory-content {
    max-width: 800px;
    margin: 0 auto;
}

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