/* ==========================================================================
   KTV1BET - Main Stylesheet
   Color Scheme: Electric Cyan & Neon Blue with Dark Theme
   ========================================================================== */

/* ==========================================================================
   CSS CUSTOM PROPERTIES (Variables)
   ========================================================================== */
:root {
    /* Primary Colors - Cyan/Blue Theme */
    --accent-primary: #00d4ff;
    --accent-primary-rgb: 0, 212, 255;
    --accent-secondary: #0099cc;
    --accent-tertiary: #00ffff;
    --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #0066ff 50%, #00ccff 100%);
    --accent-gradient-hover: linear-gradient(135deg, #00ffff 0%, #0088ff 50%, #00d4ff 100%);

    /* Background Colors */
    --bg-primary: #0a0e17;
    --bg-secondary: #0d1321;
    --bg-tertiary: #141c2e;
    --bg-hover: #1a2540;
    --bg-card: #111827;

    /* Text Colors */
    --text-primary: #f0f4f8;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-accent: #00d4ff;

    /* Border Colors */
    --border-primary: rgba(0, 212, 255, 0.15);
    --border-secondary: rgba(0, 212, 255, 0.25);
    --border-accent: rgba(0, 212, 255, 0.4);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
    --shadow-glow-intense: 0 0 40px rgba(0, 212, 255, 0.5);

    /* Typography */
    --font-heading: 'Prompt', sans-serif;
    --font-body: 'Sarabun', sans-serif;

    /* Spacing */
    --container-max: 1400px;
    --header-height: 70px;
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

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

a:hover {
    color: var(--accent-tertiary);
}

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

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

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

/* ==========================================================================
   HEADER STYLES
   ========================================================================== */
header[role="banner"] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 23, 0.95);
    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: var(--container-max);
    margin: 0 auto;
    padding: 0.875rem 1rem;
}

/* Logo */
.brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
    transition: filter 0.3s ease;
}

.brand a:hover .header-logo {
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.5));
}

/* 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 1.125rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 6px;
    transition: color 0.2s, background-color 0.2s;
    white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a:focus {
    color: var(--accent-primary);
    background-color: rgba(0, 212, 255, 0.08);
}

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

.header-cta .btn-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.5rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: var(--shadow-glow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.header-cta .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-intense);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.mobile-menu-toggle[aria-expanded="true"] {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
    border: 1px solid var(--border-primary);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    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: var(--bg-secondary);
    padding: 5rem 1.5rem 2rem;
    z-index: 1001;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
    border-left: 1px solid var(--border-primary);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.nav-menu.active li a {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border-radius: 8px;
}

.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.25rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: var(--shadow-glow);
}

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

    .header-logo {
        height: 46px;
    }

    .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;
        border: none;
        box-shadow: 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: 50px;
    }

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

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

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
footer[role="contentinfo"] {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
    padding-bottom: 90px;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 3rem 1rem 1.5rem;
}

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

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

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 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: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border-primary);
    transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.footer-social a:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

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

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.125rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--accent-gradient);
    margin: 0.5rem auto 0;
    border-radius: 1px;
}

.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: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-primary);
    padding-left: 4px;
}

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

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

.footer-contact a:hover {
    text-decoration: underline;
}

/* Trust Badges Section */
.footer-trust {
    padding: 1.75rem 0;
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
    margin-bottom: 1.75rem;
}

.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: color 0.2s, transform 0.2s;
}

.trust-badge:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.trust-badge svg {
    color: var(--accent-primary);
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.3));
}

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

/* 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;
    line-height: 1.6;
}

/* Tablet - 768px+ */
@media (min-width: 768px) {
    .footer-container {
        padding: 3.5rem 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 {
        margin: 0.5rem 0 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;
    }
}

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

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

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

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

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

    .footer-top {
        gap: 4rem;
    }
}

/* ==========================================================================
   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: rgba(10, 14, 23, 0.98);
    border-top: 1px solid var(--border-accent);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4), 0 -2px 8px rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
}

.sticky-btn {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.5rem;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

.sticky-btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

/* Primary Button */
.sticky-btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border: none;
    box-shadow: 0 2px 12px rgba(0, 212, 255, 0.35);
}

.sticky-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.55);
}

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

    .sticky-btn {
        padding: 0.6rem 0.375rem;
        font-size: 0.7rem;
        border-radius: 8px;
    }
}

/* Small Mobile (360px - 479px) */
@media (min-width: 360px) and (max-width: 479px) {
    .sticky-btn {
        padding: 0.7rem 0.4rem;
        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;
    }
}

/* 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: 200px;
    }
}

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

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

/* ==========================================================================
   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;
}

/* Button Base Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-intense);
}

.btn-outline {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.btn-outline:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

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

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

/* Section Headers */
.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.section-header p:last-child {
    margin-bottom: 0;
}

.section-intro {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.subsection-heading {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.subsection-intro {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.section-note {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: 2rem;
    padding: 1.25rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border-left: 4px solid var(--accent-primary);
}

/* ==========================================================================
   HERO SECTION - Pattern 3: Centered Full-Width with Background Image
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 1rem 4rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 14, 23, 0.85) 0%,
        rgba(10, 14, 23, 0.75) 50%,
        rgba(10, 14, 23, 0.95) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.hero-content {
    padding: 2rem;
    background: rgba(13, 19, 33, 0.85);
    border-radius: 20px;
    border: 1px solid var(--border-secondary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#hero-heading {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-subdescription {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

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

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

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

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.hero-badge svg {
    color: var(--accent-primary);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   SLOTS SECTION
   ========================================================================== */
.slots-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

/* Providers Table */
.providers-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 12px;
    border: 1px solid var(--border-primary);
}

.providers-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.providers-table th,
.providers-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-primary);
}

.providers-table th {
    background: var(--bg-tertiary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.providers-table td {
    background: var(--bg-card);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.providers-table tbody tr:hover td {
    background: var(--bg-hover);
}

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

.providers-table td strong {
    color: var(--accent-primary);
}

/* ==========================================================================
   CASINO SECTION
   ========================================================================== */
.casino-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

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

.casino-game-card {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.casino-game-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.15);
}

.game-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
}

.game-icon svg {
    color: var(--accent-primary);
    width: 36px;
    height: 36px;
}

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

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

/* ==========================================================================
   DEPOSIT SECTION
   ========================================================================== */
.deposit-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.deposit-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.deposit-content {
    flex: 1;
}

.deposit-image {
    margin: 0;
}

.deposit-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--border-primary);
}

.deposit-image figcaption {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Steps List */
.steps-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    transition: border-color 0.2s;
}

.steps-list li:hover {
    border-color: var(--accent-primary);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 10px;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.step-content strong {
    font-size: 1rem;
    color: var(--text-primary);
}

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

/* ==========================================================================
   PROMOTIONS SECTION
   ========================================================================== */
.promotions-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

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

.promo-card {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.promo-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.15);
}

.promo-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
}

.promo-icon svg {
    color: var(--accent-primary);
}

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

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

/* ==========================================================================
   REGISTER SECTION
   ========================================================================== */
.register-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.register-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.register-image {
    margin: 0;
    order: -1;
}

.register-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--border-primary);
}

.register-image figcaption {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.register-content {
    flex: 1;
}

.steps-list-vertical {
    counter-reset: step;
}

/* ==========================================================================
   LOGIN SECTION
   ========================================================================== */
.login-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.security-content {
    margin-bottom: 2rem;
}

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

.security-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-primary);
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    min-width: 100px;
}

.security-badge svg {
    color: var(--accent-primary);
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
}

.security-badge span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
}

/* ==========================================================================
   SUPPORT SECTION
   ========================================================================== */
.support-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.support-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.support-content {
    flex: 1;
}

.support-image {
    margin: 0;
}

.support-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--border-primary);
}

.support-image figcaption {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

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

.feature-card {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 16px;
}

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

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

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

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

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

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

.faq-item dt {
    padding: 1.25rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-primary);
}

.faq-item dd {
    padding: 1.25rem 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.faq-item dd a {
    color: var(--accent-primary);
}

.faq-item dd a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    animation: pulse-bg 15s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

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

.cta-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

/* ==========================================================================
   RESPONSIVE STYLES - MAIN CONTENT
   ========================================================================== */

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

    #hero-heading {
        font-size: 1.875rem;
    }

    .casino-games-grid {
        gap: 1.25rem;
    }

    .promo-cards-grid {
        gap: 1.25rem;
    }

    .features-grid {
        gap: 1.25rem;
    }
}

/* Medium Mobile (480px+) */
@media (min-width: 480px) {
    .section-header h2 {
        font-size: 1.875rem;
    }

    #hero-heading {
        font-size: 2rem;
    }

    .hero-content {
        padding: 2.5rem;
    }

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

    .hero-cta .btn {
        width: auto;
        min-width: 180px;
    }

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

    .cta-buttons .btn {
        width: auto;
        min-width: 200px;
    }
}

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

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

    #hero-heading {
        font-size: 2.25rem;
    }

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

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

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

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

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

    .subsection-heading {
        font-size: 1.5rem;
    }

    .slots-section,
    .casino-section,
    .deposit-section,
    .promotions-section,
    .register-section,
    .login-section,
    .support-section,
    .features-section,
    .faq-section {
        padding: 5rem 0;
    }

    .hero {
        padding: 8rem 2rem 5rem;
    }

    #hero-heading {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 3rem;
    }

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

    /* Deposit Layout - Two Column */
    .deposit-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .deposit-content {
        flex: 1.2;
    }

    .deposit-image {
        flex: 0.8;
        position: sticky;
        top: 100px;
    }

    /* Register Layout - Two Column */
    .register-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .register-image {
        flex: 0.8;
        order: 0;
        position: sticky;
        top: 100px;
    }

    .register-content {
        flex: 1.2;
    }

    /* Support Layout - Two Column */
    .support-layout {
        flex-direction: row;
        align-items: center;
    }

    .support-content {
        flex: 1.2;
    }

    .support-image {
        flex: 0.8;
    }

    /* Casino Games - 5 columns for 5 items */
    .casino-games-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }

    .casino-game-card {
        padding: 1.25rem;
    }

    /* Promo Cards - 5 columns for 5 items */
    .promo-cards-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }

    .promo-card {
        padding: 1.25rem;
    }

    /* Features - 3 columns */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .cta-section {
        padding: 6rem 0;
    }

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

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

    #hero-heading {
        font-size: 2.75rem;
    }

    .hero-content {
        padding: 3.5rem 4rem;
    }

    /* Features - 6 columns for 6 items */
    .features-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1.25rem;
    }

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

    .feature-icon {
        width: 56px;
        height: 56px;
    }

    .feature-icon svg {
        width: 32px;
        height: 32px;
    }
}

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

    .slots-section,
    .casino-section,
    .deposit-section,
    .promotions-section,
    .register-section,
    .login-section,
    .support-section,
    .features-section,
    .faq-section {
        padding: 6rem 0;
    }

    .hero {
        min-height: 100vh;
        padding: 0 3rem;
    }

    #hero-heading {
        font-size: 3rem;
    }

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

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

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

    #hero-heading {
        font-size: 3.25rem;
    }

    .hero-content {
        padding: 4rem 5rem;
    }

    .deposit-layout,
    .register-layout,
    .support-layout {
        gap: 4rem;
    }
}

/* Extra Large (1536px+) */
@media (min-width: 1536px) {
    .section-header h2 {
        font-size: 3rem;
    }

    #hero-heading {
        font-size: 3.5rem;
    }

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

    .hero-subdescription {
        font-size: 1rem;
    }
}

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

/* Promotions Hero - Pattern 4: Stacked/Vertical */
.promo-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.promo-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

#promo-hero-heading {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.promo-hero-subdescription {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

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

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

.promo-hero-image {
    margin: 0;
}

.promo-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--border-secondary);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* Promo Detail Sections */
.promo-detail-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.promo-detail-section.promo-detail-alt {
    background: var(--bg-secondary);
}

.promo-detail-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.promo-detail-image {
    margin: 0;
}

.promo-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--border-primary);
}

.promo-detail-image figcaption {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Promo Highlight Card */
.promo-highlight-card {
    position: relative;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 16px;
    margin: 2rem 0;
    overflow: hidden;
}

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

.promo-highlight-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.promo-highlight-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.promo-highlight-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 20px;
}

.promo-highlight-icon svg {
    color: var(--accent-primary);
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

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

.promo-highlight-info .promo-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.promo-highlight-info p:last-of-type {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.promo-highlight-card .btn {
    margin-top: 0.5rem;
}

/* Promo Conditions List */
.promo-conditions-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.promo-conditions-list li {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 10px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    transition: border-color 0.2s;
}

.promo-conditions-list li:hover {
    border-color: var(--accent-primary);
}

.condition-icon {
    flex-shrink: 0;
}

.condition-icon svg {
    color: var(--accent-primary);
}

/* Checkin Table */
.checkin-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 12px;
    border: 1px solid var(--border-primary);
}

.checkin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 400px;
}

.checkin-table th,
.checkin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-primary);
}

.checkin-table th {
    background: var(--bg-tertiary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.checkin-table td {
    background: var(--bg-card);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.checkin-table tbody tr:hover td {
    background: var(--bg-hover);
}

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

.checkin-table tbody tr.highlight-row td {
    background: rgba(0, 212, 255, 0.08);
}

.checkin-table tbody tr.highlight-row:hover td {
    background: rgba(0, 212, 255, 0.12);
}

.checkin-table tfoot td {
    background: var(--bg-tertiary);
    border-bottom: none;
    border-top: 2px solid var(--border-secondary);
}

.table-total {
    text-align: center;
    font-size: 1rem;
    color: var(--text-primary);
}

.table-total strong {
    color: var(--accent-primary);
}

/* Referral Benefits Grid */
.referral-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.referral-benefit-card {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.referral-benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.15);
}

.referral-benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 16px;
}

.referral-benefit-icon svg {
    color: var(--accent-primary);
}

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

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

/* VIP Benefits Grid */
.vip-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.vip-benefit-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 102, 255, 0.05) 100%);
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.vip-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.2);
}

.vip-benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 14px;
}

.vip-benefit-icon svg {
    color: var(--bg-primary);
}

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

.vip-benefit-card p {
    font-size: 0.8125rem;
    color: var(--accent-primary);
    font-weight: 500;
}

/* Slot Promo Features */
.slot-promo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.slot-promo-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 10px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.slot-promo-feature svg {
    color: var(--accent-primary);
    flex-shrink: 0;
}

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

/* Small Mobile (360px+) */
@media (min-width: 360px) {
    #promo-hero-heading {
        font-size: 1.875rem;
    }
}

/* Medium Mobile (480px+) */
@media (min-width: 480px) {
    #promo-hero-heading {
        font-size: 2rem;
    }

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

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

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

/* Large Mobile / Phablet (576px+) */
@media (min-width: 576px) {
    #promo-hero-heading {
        font-size: 2.25rem;
    }

    .promo-highlight-content {
        flex-direction: row;
        text-align: left;
    }

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

/* Tablet (768px+) */
@media (min-width: 768px) {
    .promo-hero {
        padding: 8rem 0 4rem;
    }

    #promo-hero-heading {
        font-size: 2.5rem;
    }

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

    .promo-detail-section {
        padding: 5rem 0;
    }

    .promo-detail-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .promo-detail-content {
        flex: 1.2;
    }

    .promo-detail-image {
        flex: 0.8;
        position: sticky;
        top: 100px;
    }

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

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

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

/* Large Tablet / Small Desktop (992px+) */
@media (min-width: 992px) {
    #promo-hero-heading {
        font-size: 2.75rem;
    }

    .promo-hero-content {
        margin-bottom: 3rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .promo-hero {
        padding: 9rem 0 5rem;
    }

    #promo-hero-heading {
        font-size: 3rem;
    }

    .promo-detail-section {
        padding: 6rem 0;
    }

    .promo-detail-layout {
        gap: 4rem;
    }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
    #promo-hero-heading {
        font-size: 3.25rem;
    }

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

/* Extra Large (1536px+) */
@media (min-width: 1536px) {
    #promo-hero-heading {
        font-size: 3.5rem;
    }
}
