/* ==========================================================================
   M98VIP - Main Styles
   Theme: Royal Purple & Gold VIP
   ========================================================================== */

/* CSS Variables - Royal Purple & Gold Theme */
:root {
    /* Background Colors */
    --bg-primary: #0d0a1a;
    --bg-secondary: #13102a;
    --bg-tertiary: #1a1636;
    --bg-hover: #231d45;

    /* Accent Colors - Purple & Gold */
    --accent-primary: #9b59b6;
    --accent-primary-rgb: 155, 89, 182;
    --accent-secondary: #ffd700;
    --accent-gradient: linear-gradient(135deg, #9b59b6 0%, #8e44ad 50%, #7d3c98 100%);
    --accent-gradient-gold: linear-gradient(135deg, #ffd700 0%, #f1c40f 50%, #d4ac0d 100%);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8b5c9;
    --text-muted: #7a7793;

    /* Border Colors */
    --border-primary: rgba(155, 89, 182, 0.2);
    --border-secondary: rgba(255, 215, 0, 0.3);

    /* Shadows */
    --shadow-glow: 0 0 30px rgba(155, 89, 182, 0.3);
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.2);
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Typography */
body {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   HEADER STYLES
   ========================================================================== */

header[role="banner"] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(13, 10, 26, 0.95) 100%);
    border-bottom: 1px solid var(--border-primary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
}

/* Logo */
.brand a {
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.brand a:hover {
    transform: scale(1.02);
}

.header-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(155, 89, 182, 0.3));
}

/* Navigation Menu */
.nav-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
}

.nav-menu li a {
    display: block;
    padding: 0.625rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 8px;
    transition: all 0.25s ease;
    white-space: nowrap;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gradient-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-menu li a:hover,
.nav-menu li a:focus {
    color: var(--text-primary);
}

.nav-menu li a:hover::after,
.nav-menu li a:focus::after {
    width: 60%;
}

/* Desktop CTA Button */
.header-cta {
    display: none;
}

.header-cta .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: var(--accent-gradient-gold);
    color: #1a1636;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.header-cta .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--bg-hover);
    border-color: var(--accent-primary);
}

/* When menu is open */
.mobile-menu-toggle[aria-expanded="true"] {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: var(--bg-tertiary);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--accent-secondary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Animation - Open State */
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--text-primary);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--text-primary);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 10, 26, 0.85);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 999;
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    cursor: pointer;
}

/* Mobile Menu - Open State */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 5rem 1.5rem 2rem;
    z-index: 1001;
    overflow-y: auto;
    animation: slideInRight 0.35s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--border-primary);
}

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

.nav-menu.active li a {
    padding: 1rem 1.25rem;
    font-size: 1.0625rem;
    border-radius: 12px;
    margin-bottom: 0.25rem;
    background: transparent;
    border: 1px solid transparent;
}

.nav-menu.active li a:hover {
    background: var(--bg-hover);
    border-color: var(--border-primary);
}

.nav-menu.active li a::after {
    display: none;
}

/* Mobile CTA Item */
.mobile-cta-item {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-primary);
}

.mobile-cta-item .btn-cta {
    display: block;
    text-align: center;
    padding: 1rem 1.5rem;
    background: var(--accent-gradient-gold);
    color: #1a1636;
    border-radius: 12px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.mobile-cta-item .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.5);
}

/* Tablet and Desktop - 768px+ */
@media (min-width: 768px) {
    .header-container {
        padding: 1rem 2rem;
    }

    .header-logo {
        height: 48px;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .mobile-menu-overlay {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        animation: none;
        box-shadow: none;
        border: none;
    }

    .mobile-cta-item {
        display: none;
    }

    .header-cta {
        display: block;
    }
}

/* Large Desktop - 1024px+ */
@media (min-width: 1024px) {
    .header-container {
        padding: 1rem 3rem;
    }

    .header-logo {
        height: 52px;
    }

    .nav-menu li a {
        padding: 0.625rem 1.25rem;
    }
}

/* Extra Large - 1280px+ */
@media (min-width: 1280px) {
    .header-container {
        padding: 1rem 4rem;
    }
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

footer[role="contentinfo"] {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #0a0815 100%);
    border-top: 1px solid var(--border-primary);
    padding-bottom: 90px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3.5rem 1rem 1.5rem;
}

/* Footer Top - Grid Layout */
.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Footer Brand Column */
.footer-brand {
    text-align: center;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1.25rem;
    transition: transform 0.3s;
}

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

.footer-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(155, 89, 182, 0.3));
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border-primary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-primary);
    color: var(--text-primary);
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Footer Columns */
.footer-column {
    text-align: center;
}

.footer-heading {
    font-family: 'Prompt', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--accent-secondary);
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient-gold);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-secondary);
    transform: translateX(4px);
}

/* Footer Contact */
.footer-contact {
    font-style: normal;
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.footer-contact p {
    margin-bottom: 0.375rem;
}

.footer-contact a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--accent-secondary);
}

/* Trust Badges Section */
.footer-trust {
    padding: 2rem 0;
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
    margin-bottom: 2rem;
    background: linear-gradient(90deg, transparent 0%, rgba(155, 89, 182, 0.05) 50%, transparent 100%);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-secondary);
    transition: transform 0.3s;
}

.trust-badge:hover {
    transform: translateY(-4px);
}

.trust-badge svg {
    color: var(--accent-secondary);
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
}

.trust-badge span {
    font-size: 0.8125rem;
    font-weight: 500;
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.disclaimer {
    color: var(--text-muted);
    font-size: 0.8125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tablet - 768px+ */
@media (min-width: 768px) {
    .footer-container {
        padding: 4rem 2rem 2rem;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }

    .footer-column {
        text-align: left;
    }

    .footer-heading::after {
        left: 0;
    }

    .footer-description {
        margin-left: 0;
        margin-right: 0;
    }

    .footer-social {
        justify-content: center;
    }

    .trust-badges {
        gap: 3rem;
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .disclaimer {
        text-align: right;
        margin: 0;
    }
}

/* Desktop - 1024px+ */
@media (min-width: 1024px) {
    .footer-container {
        padding: 4.5rem 3rem 2rem;
    }

    .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: span 1;
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-logo {
        height: 50px;
    }
}

/* Large Desktop - 1280px+ */
@media (min-width: 1280px) {
    .footer-container {
        padding: 5rem 4rem 2.5rem;
    }
}

/* ==========================================================================
   STICKY BOTTOM BUTTONS
   ========================================================================== */

.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(180deg, rgba(13, 10, 26, 0.95) 0%, var(--bg-primary) 100%);
    border-top: 1px solid var(--border-primary);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sticky-btn {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    border-radius: 10px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

/* Secondary Buttons (Login, Register) */
.sticky-btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-primary);
}

.sticky-btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

/* Primary Button (Main CTA) */
.sticky-btn-primary {
    background: var(--accent-gradient-gold);
    color: #1a1636;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.35);
}

.sticky-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

/* Extra Small Mobile (< 360px) */
@media (max-width: 359px) {
    .sticky-bottom-bar {
        padding: 0.5rem 0.5rem;
        gap: 0.375rem;
    }

    .sticky-btn {
        padding: 0.625rem 0.25rem;
        font-size: 0.6875rem;
        border-radius: 8px;
    }
}

/* Small Mobile (360px - 479px) */
@media (min-width: 360px) and (max-width: 479px) {
    .sticky-btn {
        padding: 0.6875rem 0.375rem;
        font-size: 0.75rem;
    }
}

/* Medium Mobile (480px - 575px) */
@media (min-width: 480px) and (max-width: 575px) {
    .sticky-btn {
        padding: 0.75rem 0.5rem;
        font-size: 0.8125rem;
    }
}

/* Large Mobile / Phablet (576px+) */
@media (min-width: 576px) {
    .sticky-bottom-bar {
        padding: 0.875rem 1.5rem;
        gap: 0.75rem;
    }

    .sticky-btn {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
        border-radius: 12px;
    }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .sticky-bottom-bar {
        padding: 1rem 2rem;
        gap: 1rem;
    }

    .sticky-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        max-width: 220px;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .sticky-bottom-bar {
        justify-content: center;
        padding: 1rem 3rem;
    }

    .sticky-btn {
        flex: none;
        min-width: 160px;
        max-width: 240px;
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   MAIN CONTENT STYLES
   ========================================================================== */

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

/* Content Block */
.content-block {
    margin-bottom: 2rem;
}

.content-block p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-gradient-gold);
    color: #1a1636;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-primary);
}

.btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 12px;
}

.btn-xlarge {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
    border-radius: 14px;
}

/* ==========================================================================
   HERO SECTION - Pattern 4: Stacked/Vertical
   ========================================================================== */

.hero-section {
    padding: 2rem 0 3rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

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

.hero-text-content h1 {
    font-size: 1.625rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.35;
}

.hero-text-content h1 strong {
    color: var(--accent-secondary);
}

.hero-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.hero-sub-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-cta-group .btn {
    width: 100%;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 50px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.highlight-item svg {
    color: var(--accent-secondary);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.hero-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(155, 89, 182, 0.15);
    border: 1px solid var(--border-primary);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   ACCESS SECTION
   ========================================================================== */

.access-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.platform-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.25rem 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.platform-icon {
    margin-bottom: 0.75rem;
}

.platform-icon svg {
    color: var(--accent-secondary);
}

.platform-card h3 {
    font-size: 0.9375rem;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.platform-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   SLOTS SECTION
   ========================================================================== */

.slots-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

.slots-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.slots-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-primary);
}

.slots-image img {
    width: 100%;
    height: auto;
    display: block;
}

.slots-text-content h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.slots-text-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Popular Slots */
.popular-slots {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
}

.popular-slots h3 {
    font-size: 1.25rem;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
    text-align: center;
}

.popular-slots > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Game Providers Table */
.game-providers-table {
    background: var(--bg-tertiary);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-primary);
}

.table-header {
    display: none;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr;
    padding: 1rem;
    border-bottom: 1px solid var(--border-primary);
    gap: 0.5rem;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row > div:first-child {
    color: var(--accent-secondary);
    font-weight: 600;
}

.table-row > div:nth-child(2) {
    color: var(--text-primary);
    font-weight: 500;
}

.table-row > div:nth-child(3) {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Slot Tips */
.slot-tips {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem 1rem;
}

.slot-tips h3 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.slot-tips p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==========================================================================
   CASINO SECTION
   ========================================================================== */

.casino-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.casino-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.casino-text-content h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.casino-text-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.casino-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-primary);
    order: -1;
}

.casino-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   SPORTS SECTION
   ========================================================================== */

.sports-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

.leagues-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
}

.league-badge {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.league-badge:hover {
    border-color: var(--accent-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.league-badge span {
    font-family: 'Prompt', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-primary);
}

/* ==========================================================================
   FISHING SECTION
   ========================================================================== */

.fishing-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

/* ==========================================================================
   REGISTRATION SECTION
   ========================================================================== */

.register-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

.register-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.register-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-primary);
}

.register-image img {
    width: 100%;
    height: auto;
    display: block;
}

.register-text-content h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.register-text-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.registration-steps {
    list-style: none;
    counter-reset: step;
    padding: 0;
    margin: 1.5rem 0;
}

.registration-steps li {
    counter-increment: step;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-primary);
    color: var(--text-secondary);
    line-height: 1.6;
}

.registration-steps li:last-child {
    border-bottom: none;
}

.registration-steps li::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: var(--accent-gradient);
    color: var(--text-primary);
    border-radius: 50%;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.registration-steps a {
    color: var(--accent-secondary);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.2s;
}

.registration-steps a:hover {
    text-decoration-color: var(--accent-secondary);
}

.register-text-content > .btn {
    margin-top: 1rem;
    width: 100%;
}

/* ==========================================================================
   PROMOTIONS SECTION
   ========================================================================== */

.promotions-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.promo-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.promo-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient-gold);
}

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

.promo-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--accent-gradient);
    color: var(--text-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.promo-card h3 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.promo-value {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.375rem;
    color: var(--accent-secondary);
    margin-bottom: 0.5rem;
}

.promo-card > p:last-child {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

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

.promo-cta p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.promo-cta a {
    color: var(--accent-secondary);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.2s;
}

.promo-cta a:hover {
    text-decoration-color: var(--accent-secondary);
}

/* ==========================================================================
   PAYMENT SECTION
   ========================================================================== */

.payment-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

.payment-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.payment-text-content h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.payment-text-content > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.payment-methods {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.payment-methods li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all 0.25s ease;
}

.payment-methods li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-secondary);
    border-radius: 50%;
    flex-shrink: 0;
}

.payment-methods li:hover {
    border-color: var(--accent-primary);
    transform: translateX(5px);
}

.payment-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-primary);
}

.payment-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   SECURITY SECTION
   ========================================================================== */

.security-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.security-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.security-badge:hover {
    transform: translateY(-5px);
    border-color: var(--accent-secondary);
    box-shadow: var(--shadow-gold);
}

.security-badge svg {
    color: var(--accent-secondary);
}

.security-badge span {
    font-family: 'Prompt', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-primary);
}

/* ==========================================================================
   SUPPORT SECTION
   ========================================================================== */

.support-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

.support-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.support-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.25rem 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.support-icon {
    margin-bottom: 0.75rem;
}

.support-icon svg {
    color: var(--accent-secondary);
}

.support-card h3 {
    font-size: 0.9375rem;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.support-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.features-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.feature-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    margin-bottom: 0.75rem;
}

.feature-icon svg {
    color: var(--accent-secondary);
}

.feature-card h3 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.features-cta {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
}

.features-cta p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.features-cta a {
    color: var(--accent-secondary);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.2s;
}

.features-cta a:hover {
    text-decoration-color: var(--accent-secondary);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.25rem;
    transition: border-color 0.3s ease;
}

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

.faq-item dt {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.faq-item dt::before {
    content: 'Q';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-secondary);
    font-weight: 700;
}

.faq-item dd {
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
}

.faq-item dd::before {
    content: 'A';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-primary);
    font-weight: 700;
    font-family: 'Prompt', sans-serif;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */

.final-cta-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-content h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.final-cta-content > p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.final-cta-buttons .btn {
    width: 100%;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS - MAIN CONTENT
   ========================================================================== */

/* Small Mobile (360px+) */
@media (min-width: 360px) {
    .section-container {
        padding: 0 1.25rem;
    }

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

    .highlight-item {
        font-size: 0.875rem;
    }
}

/* Medium Mobile (480px+) */
@media (min-width: 480px) {
    .section-container {
        padding: 0 1.5rem;
    }

    .section-header h2 {
        font-size: 1.625rem;
    }

    .hero-section {
        padding: 3rem 0 4rem;
    }

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

    .hero-cta-group {
        flex-direction: row;
        justify-content: center;
    }

    .hero-cta-group .btn {
        width: auto;
    }

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

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

    .final-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .final-cta-buttons .btn {
        width: auto;
    }
}

/* Large Mobile / Phablet (576px+) */
@media (min-width: 576px) {
    .section-header h2 {
        font-size: 1.75rem;
    }

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

    .hero-description {
        font-size: 1.0625rem;
    }

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

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

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

/* Small Tablet (640px+) */
@media (min-width: 640px) {
    .table-header {
        display: grid;
        grid-template-columns: 1.5fr 1fr 2fr;
        background: var(--bg-hover);
        padding: 1rem;
        font-family: 'Prompt', sans-serif;
        font-weight: 600;
        color: var(--accent-secondary);
    }

    .table-row {
        grid-template-columns: 1.5fr 1fr 2fr;
        align-items: center;
        gap: 0;
    }

    .table-row > div:first-child {
        color: var(--text-primary);
    }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .section-container {
        padding: 0 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .access-section,
    .slots-section,
    .casino-section,
    .sports-section,
    .fishing-section,
    .register-section,
    .promotions-section,
    .payment-section,
    .security-section,
    .support-section,
    .features-section,
    .faq-section {
        padding: 4rem 0;
    }

    .hero-section {
        padding: 4rem 0 5rem;
    }

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

    .slots-content-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .slots-image {
        flex: 0 0 45%;
    }

    .slots-text-content {
        flex: 1;
    }

    .slots-text-content h2 {
        font-size: 1.75rem;
    }

    .casino-content-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .casino-text-content {
        flex: 1;
    }

    .casino-image {
        flex: 0 0 45%;
        order: 0;
    }

    .casino-text-content h2 {
        font-size: 1.75rem;
    }

    .register-content-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }

    .register-image {
        flex: 0 0 40%;
    }

    .register-text-content {
        flex: 1;
    }

    .register-text-content h2 {
        font-size: 1.75rem;
    }

    .register-text-content > .btn {
        width: auto;
    }

    .payment-content-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }

    .payment-text-content {
        flex: 1;
    }

    .payment-image {
        flex: 0 0 40%;
    }

    .payment-text-content h2 {
        font-size: 1.75rem;
    }

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

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

    .final-cta-section {
        padding: 5rem 0;
    }

    .final-cta-content h2 {
        font-size: 2rem;
    }
}

/* Large Tablet / Small Desktop (992px+) */
@media (min-width: 992px) {
    .section-header h2 {
        font-size: 2.25rem;
    }

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

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

    .hero-description {
        font-size: 1.125rem;
    }

    .popular-slots {
        padding: 2rem;
    }

    .promo-cards-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .promo-card {
        padding: 1.25rem;
    }

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

    .feature-card {
        padding: 1.5rem 1rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .section-container {
        padding: 0 3rem;
    }

    .access-section,
    .slots-section,
    .casino-section,
    .sports-section,
    .fishing-section,
    .register-section,
    .promotions-section,
    .payment-section,
    .security-section,
    .support-section,
    .features-section,
    .faq-section {
        padding: 5rem 0;
    }

    .hero-section {
        padding: 5rem 0 6rem;
    }

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

    .slots-text-content h2,
    .casino-text-content h2,
    .register-text-content h2,
    .payment-text-content h2 {
        font-size: 2rem;
    }

    .faq-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
    .section-container {
        padding: 0 4rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

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

    .hero-content-wrapper {
        gap: 3rem;
    }

    .final-cta-content h2 {
        font-size: 2.5rem;
    }
}

/* Extra Large (1536px+) */
@media (min-width: 1536px) {
    .hero-text-content h1 {
        font-size: 3.25rem;
    }

    .hero-text-content {
        max-width: 1000px;
    }
}

/* Ultra Wide (1920px+) */
@media (min-width: 1920px) {
    .section-container {
        max-width: 1400px;
    }
}

/* ==========================================================================
   PROMOTIONS PAGE STYLES
   ========================================================================== */

/* Promotions Hero Section - Pattern 3: Centered Full-Width */
.promo-hero-section {
    position: relative;
    padding: 3rem 0 4rem;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.promo-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.promo-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
}

.promo-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.promo-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 10, 26, 0.85) 0%,
        rgba(13, 10, 26, 0.9) 50%,
        rgba(13, 10, 26, 0.95) 100%
    );
}

.promo-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.promo-hero-content h1 {
    font-size: 1.625rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.35;
}

.promo-hero-content h1 strong {
    color: var(--accent-secondary);
}

.promo-hero-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.promo-hero-sub {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.promo-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

.promo-hero-cta .btn {
    width: 100%;
}

/* Promo Detail Card */
.promo-detail-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.promo-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

.promo-detail-alt::before {
    background: var(--accent-gradient-gold);
}

.promo-detail-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent-gradient);
    color: var(--text-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.badge-gold {
    background: var(--accent-gradient-gold);
    color: #1a1636;
}

.badge-vip {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
}

.badge-cashback {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.badge-monthly {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.promo-detail-card h2 {
    font-size: 1.375rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.promo-detail-value {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-secondary);
    margin-bottom: 1.25rem;
}

.promo-detail-content {
    margin-bottom: 1.5rem;
}

.promo-detail-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.promo-detail-content h3 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.promo-detail-content a {
    color: var(--accent-secondary);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.2s;
}

.promo-detail-content a:hover {
    text-decoration-color: var(--accent-secondary);
}

.promo-detail-card > .btn {
    width: 100%;
}

/* Promo Steps */
.promo-steps {
    list-style: none;
    counter-reset: promo-step;
    padding: 0;
    margin: 1rem 0;
}

.promo-steps li {
    counter-increment: promo-step;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-primary);
    color: var(--text-secondary);
    line-height: 1.6;
}

.promo-steps li:last-child {
    border-bottom: none;
}

.promo-steps li::before {
    content: counter(promo-step);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: var(--accent-gradient-gold);
    color: #1a1636;
    border-radius: 50%;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.promo-steps a {
    color: var(--accent-secondary);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.2s;
}

.promo-steps a:hover {
    text-decoration-color: var(--accent-secondary);
}

/* Section Backgrounds */
.promo-welcome-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

.promo-freecredit-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.promo-vip-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

.promo-cashback-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.promo-monthly-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

.promo-deposit-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.promo-summary-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

.promo-faq-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.promo-final-cta {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.promo-final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* VIP Section */
.promo-vip-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.promo-vip-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-primary);
    margin: 0;
}

.promo-vip-image img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-vip-content {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.promo-vip-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd700 100%);
}

/* VIP Table */
.vip-table-wrapper {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    overflow: hidden;
}

.vip-table-wrapper h3 {
    font-size: 1.125rem;
    color: var(--accent-secondary);
    margin-bottom: 1.25rem;
    text-align: center;
}

.vip-table {
    width: 100%;
}

.vip-table-header {
    display: none;
}

.vip-table-row {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border-primary);
    gap: 0.5rem;
}

.vip-table-row:last-child {
    border-bottom: none;
}

.vip-table-row > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vip-table-row > div::before {
    content: attr(data-label);
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.vip-table-row > div:first-child {
    color: var(--accent-primary);
    font-weight: 600;
}

.vip-table-row > div:nth-child(2) {
    color: var(--accent-secondary);
    font-weight: 700;
}

.vip-table-row > div:nth-child(3) {
    color: var(--text-secondary);
}

.vip-row-highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
    border-radius: 12px;
}

.vip-row-highlight > div:nth-child(2) {
    font-size: 1.125rem;
}

/* Deposit Section */
.promo-deposit-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.promo-deposit-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.promo-deposit-info h3 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.promo-deposit-info a {
    color: var(--accent-secondary);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.2s;
}

.promo-deposit-info a:hover {
    text-decoration-color: var(--accent-secondary);
}

.deposit-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.deposit-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.deposit-method:hover {
    border-color: var(--accent-secondary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.deposit-method svg {
    color: var(--accent-secondary);
}

.deposit-method span {
    font-family: 'Prompt', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-primary);
}

/* Summary Section */
.promo-summary-content {
    margin-bottom: 2rem;
}

.promo-summary-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.promo-summary-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.summary-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.summary-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.summary-icon {
    margin-bottom: 0.75rem;
}

.summary-icon svg {
    color: var(--accent-secondary);
}

.summary-card h3 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.summary-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.promo-summary-cta {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.promo-summary-cta p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.promo-summary-cta a {
    color: var(--accent-secondary);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.2s;
}

.promo-summary-cta a:hover {
    text-decoration-color: var(--accent-secondary);
}

/* ==========================================================================
   PROMOTIONS PAGE RESPONSIVE
   ========================================================================== */

/* Small Mobile (360px+) */
@media (min-width: 360px) {
    .promo-hero-content h1 {
        font-size: 1.75rem;
    }

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

    .promo-detail-value {
        font-size: 1.625rem;
    }
}

/* Medium Mobile (480px+) */
@media (min-width: 480px) {
    .promo-hero-section {
        padding: 4rem 0 5rem;
        min-height: 550px;
    }

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

    .promo-hero-cta {
        flex-direction: row;
    }

    .promo-hero-cta .btn {
        width: auto;
    }

    .promo-detail-card {
        padding: 2.5rem 2rem;
    }

    .promo-detail-card h2 {
        font-size: 1.625rem;
    }

    .promo-detail-card > .btn {
        width: auto;
    }

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

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

/* Large Mobile / Phablet (576px+) */
@media (min-width: 576px) {
    .promo-hero-content h1 {
        font-size: 2rem;
    }

    .promo-hero-description {
        font-size: 1.0625rem;
    }

    .promo-detail-card h2 {
        font-size: 1.75rem;
    }

    .promo-detail-value {
        font-size: 1.75rem;
    }

    .vip-table-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* Small Tablet (640px+) */
@media (min-width: 640px) {
    .vip-table-header {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        padding: 1rem 1.5rem;
        background: var(--bg-hover);
        font-family: 'Prompt', sans-serif;
        font-weight: 600;
        color: var(--accent-secondary);
        border-radius: 8px 8px 0 0;
        margin-bottom: 0.5rem;
    }

    .vip-table-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        padding: 1rem 1.5rem;
        align-items: center;
        gap: 0;
    }

    .vip-table-row > div {
        justify-content: flex-start;
    }

    .vip-table-row > div::before {
        display: none;
    }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .promo-hero-section {
        padding: 5rem 0 6rem;
        min-height: 600px;
    }

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

    .promo-welcome-section,
    .promo-freecredit-section,
    .promo-vip-section,
    .promo-cashback-section,
    .promo-monthly-section,
    .promo-deposit-section,
    .promo-summary-section,
    .promo-faq-section {
        padding: 4rem 0;
    }

    .promo-detail-card {
        padding: 3rem 2.5rem;
    }

    .promo-detail-card h2 {
        font-size: 1.875rem;
    }

    .promo-vip-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .promo-vip-image {
        flex: 0 0 45%;
    }

    .promo-vip-content {
        flex: 1;
    }

    .promo-deposit-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .promo-deposit-info {
        flex: 1;
    }

    .deposit-methods-grid {
        flex: 0 0 280px;
        grid-template-columns: repeat(2, 1fr);
    }

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

    .summary-card {
        padding: 1.25rem 0.75rem;
    }

    .summary-card h3 {
        font-size: 0.9375rem;
    }

    .promo-final-cta {
        padding: 5rem 0;
    }
}

/* Large Tablet / Small Desktop (992px+) */
@media (min-width: 992px) {
    .promo-hero-content h1 {
        font-size: 2.5rem;
    }

    .promo-hero-description {
        font-size: 1.125rem;
    }

    .promo-detail-card h2 {
        font-size: 2rem;
    }

    .promo-detail-value {
        font-size: 2rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .promo-hero-section {
        padding: 6rem 0 7rem;
        min-height: 650px;
    }

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

    .promo-welcome-section,
    .promo-freecredit-section,
    .promo-vip-section,
    .promo-cashback-section,
    .promo-monthly-section,
    .promo-deposit-section,
    .promo-summary-section,
    .promo-faq-section {
        padding: 5rem 0;
    }

    .promo-detail-card {
        padding: 3.5rem 3rem;
    }

    .deposit-methods-grid {
        flex: 0 0 320px;
    }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
    .promo-hero-content h1 {
        font-size: 3rem;
    }

    .promo-hero-content {
        max-width: 1000px;
    }

    .promo-detail-card h2 {
        font-size: 2.25rem;
    }
}

/* Extra Large (1536px+) */
@media (min-width: 1536px) {
    .promo-hero-content h1 {
        font-size: 3.25rem;
    }
}
