/* ==========================================================================
   D55 SLOT - MAIN STYLESHEET
   Unique Design: Futuristic Neon Blue/Cyan Theme with Cyberpunk Aesthetics
   ========================================================================== */

/* ==========================================================================
   CSS VARIABLES - D55 UNIQUE COLOR SCHEME
   ========================================================================== */
:root {
    /* Primary Colors - Electric Blue/Cyan Neon */
    --accent-primary: #00d4ff;
    --accent-secondary: #0099cc;
    --accent-tertiary: #00ffcc;
    --accent-primary-rgb: 0, 212, 255;

    /* Gradients */
    --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #00ffcc 50%, #00d4ff 100%);
    --accent-gradient-hover: linear-gradient(135deg, #00ffcc 0%, #00d4ff 50%, #00ffcc 100%);
    --neon-glow: 0 0 20px rgba(0, 212, 255, 0.5), 0 0 40px rgba(0, 212, 255, 0.3);

    /* Background Colors - Deep Dark */
    --bg-primary: #0a0e14;
    --bg-secondary: #0d1117;
    --bg-tertiary: #161b22;
    --bg-hover: #1c2128;
    --bg-card: rgba(13, 17, 23, 0.95);

    /* Text Colors */
    --text-primary: #f0f6fc;
    --text-secondary: #8b949e;
    --text-muted: #484f58;

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

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-neon: 0 0 30px rgba(0, 212, 255, 0.3);
}

/* ==========================================================================
   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: 'Sarabun', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    background-image:
        radial-gradient(ellipse at top, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(0, 255, 204, 0.03) 0%, transparent 50%);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
    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: -100%;
    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;
}

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

/* ==========================================================================
   HEADER STYLES
   ========================================================================== */
header[role="banner"] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 20, 0.95);
    border-bottom: 1px solid var(--border-primary);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.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 ease;
}

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

.header-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 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-weight: 500;
    font-size: 0.9375rem;
    border-radius: 6px;
    transition: all 0.2s 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);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

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

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

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

.header-cta .btn-cta,
.mobile-cta-item .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    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: var(--neon-glow);
    border: none;
}

.header-cta .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 0 60px rgba(0, 212, 255, 0.4);
    background: var(--accent-gradient-hover);
}

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

.mobile-menu-toggle:hover {
    border-color: var(--accent-primary);
    background: rgba(0, 212, 255, 0.05);
}

.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-neon);
}

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

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

.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(-7px) 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);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
}

.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%);
    border-left: 1px solid var(--border-primary);
    padding: 5rem 1.5rem 2rem;
    z-index: 1001;
    overflow-y: auto;
    animation: slideInRight 0.3s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

@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: 10px;
    margin-bottom: 0.25rem;
}

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

.mobile-cta-item .btn-cta {
    display: flex;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

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

    .header-logo {
        height: 45px;
    }

    .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.25rem;
    }
}

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

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

footer[role="contentinfo"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--accent-gradient);
    box-shadow: var(--neon-glow);
}

.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;
    transition: transform 0.2s ease;
}

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

.footer-logo {
    height: 45px;
    width: auto;
    margin: 0 auto 1.25rem;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.4));
}

.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: 12px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

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

.footer-social a svg {
    width: 20px;
    height: 20px;
}

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

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

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

.footer-column:not(.footer-brand) .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
}

.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.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-primary);
    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 ease;
}

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

/* 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: rgba(0, 212, 255, 0.02);
}

.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);
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(0, 212, 255, 0.05);
    transform: translateY(-2px);
}

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

.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.875rem;
}

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

/* 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-column:not(.footer-brand) .footer-heading::after {
        left: 0;
        transform: none;
    }

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

    .trust-badges {
        gap: 3rem;
    }

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

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

/* Desktop - 1024px+ */
@media (min-width: 1024px) {
    .footer-container {
        padding: 4.5rem 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;
    }

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

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

/* ==========================================================================
   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, 20, 0.98);
    border-top: 1px solid var(--border-primary);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.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.8125rem;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

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

.sticky-btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

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

.sticky-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 0 50px rgba(0, 212, 255, 0.3);
}

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

    .sticky-btn {
        padding: 0.5rem 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.625rem 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.875rem;
    }
}

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

    .sticky-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9375rem;
        max-width: 200px;
        border-radius: 12px;
    }
}

/* 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
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.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-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Visually Hidden (for accessibility) */
.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: 2.5rem;
}

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

.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Section Content Layout */
.section-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

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

.section-text strong {
    color: var(--accent-primary);
}

.section-text em {
    color: var(--accent-tertiary);
    font-style: normal;
}

.section-text u {
    text-decoration: none;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 212, 255, 0.3) 60%);
}

.section-text a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.section-image {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-lg);
}

.section-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.section-footer-text {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 2rem;
}

.section-footer-text strong {
    color: var(--accent-primary);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 3rem 1rem 2rem;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

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

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

.hero-description strong {
    color: var(--accent-primary);
}

.hero-description em {
    color: var(--accent-tertiary);
    font-style: normal;
}

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

.hero-subtext strong {
    color: var(--accent-primary);
}

.hero-subtext u {
    text-decoration: none;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 212, 255, 0.3) 60%);
}

.hero-subtext a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

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

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 212, 255, 0.15);
}

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

/* Hero Features */
.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding: 0 1rem;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 0.75rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-feature:hover {
    border-color: var(--accent-primary);
    background: rgba(0, 212, 255, 0.05);
    transform: translateY(-2px);
}

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

.hero-feature span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ==========================================================================
   SLOT GAMES SECTION
   ========================================================================== */
.slot-games-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

/* Providers Table */
.providers-table-wrapper {
    margin-top: 2.5rem;
}

.providers-table-wrapper h3 {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    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-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
    white-space: nowrap;
}

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

.providers-table tbody tr {
    transition: background 0.2s ease;
}

.providers-table tbody tr:hover {
    background: rgba(0, 212, 255, 0.05);
}

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

.rtp-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 212, 255, 0.15);
    color: var(--accent-primary);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.rtp-badge.rtp-high {
    background: rgba(0, 255, 204, 0.15);
    color: var(--accent-tertiary);
}

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

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

/* Casino Rooms */
.casino-rooms {
    margin-top: 2.5rem;
}

.casino-rooms h3 {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.casino-rooms-intro {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.casino-rooms-intro strong {
    color: var(--accent-primary);
}

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

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

.casino-room-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-neon);
}

.room-icon {
    margin-bottom: 1rem;
}

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

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

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

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

/* Deposit Steps */
.deposit-steps {
    margin-top: 2.5rem;
}

.deposit-steps h3 {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.steps-intro {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.steps-intro strong {
    color: var(--accent-primary);
}

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

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

.step-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    margin: 0 auto 1rem;
    box-shadow: var(--neon-glow);
}

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

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

.step-card p strong {
    color: var(--accent-primary);
}

.steps-footer {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

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

/* Promos Grid */
.promos-grid {
    margin-top: 2.5rem;
}

.promos-grid h3 {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.promos-intro {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.promos-intro strong {
    color: var(--accent-primary);
}

.promos-intro a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

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

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

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

.promo-badge-free {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.promo-badge-daily {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
}

.promo-badge-cashback {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.promo-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0.5rem 0;
}

.promo-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.promo-card p:not(.promo-value) {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

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

.access-content {
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

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

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

.access-content strong {
    color: var(--accent-primary);
}

.access-content a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Device Support */
.device-support {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 2rem 1.5rem;
}

.device-support h3 {
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.device-support > p {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.device-support > p:last-of-type {
    margin-bottom: 2rem;
}

.device-support strong {
    color: var(--accent-primary);
}

.device-support em {
    color: var(--accent-tertiary);
    font-style: normal;
}

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

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.device-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.device-item svg {
    color: var(--accent-primary);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
}

.device-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ==========================================================================
   REGISTER SECTION
   ========================================================================== */
.register-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(0, 212, 255, 0.05) 100%);
}

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

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

.register-content strong {
    color: var(--accent-primary);
}

.register-content u {
    text-decoration: none;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 212, 255, 0.3) 60%);
}

.register-cta {
    margin-top: 2rem;
}

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

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

.security-content > p {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.security-content strong {
    color: var(--accent-primary);
}

.security-content em {
    color: var(--accent-tertiary);
    font-style: normal;
}

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

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

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

.security-feature svg {
    color: var(--accent-primary);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
}

.security-feature h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.security-feature p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

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

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

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

.support-content > p:last-of-type {
    margin-bottom: 2rem;
}

.support-content strong {
    color: var(--accent-primary);
}

.support-content em {
    color: var(--accent-tertiary);
    font-style: normal;
}

.support-channels {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.support-channel {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-channel:hover {
    border-color: var(--accent-primary);
    background: rgba(0, 212, 255, 0.05);
    transform: translateY(-2px);
}

.support-channel svg {
    color: var(--accent-primary);
}

.support-channel span {
    font-weight: 500;
}

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

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

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

.summary-content strong {
    color: var(--accent-primary);
}

.summary-cta {
    margin-top: 2rem;
}

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

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

.faq-item {
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

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

.faq-item:last-child {
    margin-bottom: 0;
}

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

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

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

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

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

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

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

    .hero-features {
        gap: 1rem;
    }

    .hero-feature span {
        font-size: 0.875rem;
    }
}

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

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

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

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

    .section-container {
        padding: 0 1.5rem;
    }

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

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

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

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

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

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

/* Small Tablet (640px+) */
@media (min-width: 640px) {
    .casino-rooms-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

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

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

    .hero-cta {
        justify-content: flex-start;
    }

    .hero-features {
        padding: 0 2rem;
        margin-top: 3rem;
    }

    .section-container {
        padding: 0 2rem;
    }

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

    .section-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .slot-games-section .section-content,
    .deposit-withdraw-section .section-content {
        grid-template-columns: 45% 1fr;
    }

    .live-casino-section .section-content,
    .promotions-section .section-content {
        grid-template-columns: 1fr 45%;
    }

    .live-casino-section .section-text {
        order: -1;
    }

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

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

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

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

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

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

    .hero-container {
        gap: 4rem;
    }

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

    .hero-features {
        padding: 0 3rem;
    }

    .section-container {
        padding: 0 3rem;
    }

    .slot-games-section,
    .live-casino-section,
    .deposit-withdraw-section,
    .promotions-section,
    .access-section,
    .register-section,
    .security-section,
    .support-section,
    .summary-section,
    .faq-section {
        padding: 5rem 0;
    }
}

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

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

    .section-container {
        padding: 0 4rem;
    }
}

/* Extra Large (1536px+) */
@media (min-width: 1536px) {
    .hero-section {
        padding: 7rem 4rem 6rem;
    }

    .hero-container {
        max-width: 1400px;
    }

    .section-container {
        max-width: 1400px;
    }
}

/* Mobile Table Styles */
@media (max-width: 639px) {
    .providers-table {
        min-width: auto;
    }

    .providers-table thead {
        display: none;
    }

    .providers-table tbody tr {
        display: block;
        padding: 1rem;
        margin-bottom: 1rem;
        background: var(--bg-tertiary);
        border-radius: 12px;
        border: 1px solid var(--border-primary);
    }

    .providers-table tbody tr:last-child {
        margin-bottom: 0;
    }

    .providers-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--border-primary);
    }

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

    .providers-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-primary);
        font-size: 0.8125rem;
    }

    .table-responsive {
        border: none;
    }
}

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

/* Promotions Hero Section - Centered Full-Width Layout */
.promo-hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.promo-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 14, 20, 0.85) 0%,
        rgba(10, 14, 20, 0.9) 50%,
        rgba(10, 14, 20, 0.95) 100%
    );
    z-index: 2;
}

.promo-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 4rem 1rem;
}

.promo-hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.promo-hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.promo-hero-description strong {
    color: var(--accent-primary);
}

.promo-hero-description em {
    color: var(--accent-tertiary);
    font-style: normal;
}

.promo-hero-subtext {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.promo-hero-subtext strong {
    color: var(--accent-primary);
}

.promo-hero-subtext em {
    color: var(--accent-tertiary);
    font-style: normal;
}

.promo-hero-subtext u {
    text-decoration: none;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 212, 255, 0.3) 60%);
}

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

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

/* Promotions Content Block */
.promo-content-block {
    max-width: 900px;
    margin: 0 auto 3rem;
}

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

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

.promo-content-block strong {
    color: var(--accent-primary);
}

.promo-content-block em {
    color: var(--accent-tertiary);
    font-style: normal;
}

.promo-content-block u {
    text-decoration: none;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 212, 255, 0.3) 60%);
}

.promo-content-block a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.promo-content-block a:hover {
    color: var(--accent-tertiary);
}

/* Free Credit Section */
.promo-free-credit-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

/* Steps Wrapper */
.promo-steps-wrapper {
    margin-top: 3rem;
}

.promo-steps-wrapper h3 {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.promo-steps-intro {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.promo-steps-intro strong {
    color: var(--accent-primary);
}

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

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

.promo-step-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}

.promo-step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    margin: 0 auto 1rem;
    box-shadow: var(--neon-glow);
}

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

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

.promo-step-card p a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.promo-steps-footer {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.promo-steps-footer strong {
    color: var(--accent-primary);
}

.promo-steps-footer em {
    color: var(--accent-tertiary);
    font-style: normal;
}

/* New Member Bonus Section */
.promo-new-member-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

/* Content with Image */
.promo-content-with-image {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

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

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

.promo-content-text strong {
    color: var(--accent-primary);
}

.promo-content-text em {
    color: var(--accent-tertiary);
    font-style: normal;
}

.promo-content-text u {
    text-decoration: none;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 212, 255, 0.3) 60%);
}

.promo-image {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 212, 255, 0.1);
}

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

/* Table Wrapper */
.promo-table-wrapper {
    margin-top: 3rem;
}

.promo-table-wrapper h3 {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.promo-table-intro {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.promo-table-intro em {
    color: var(--accent-tertiary);
    font-style: normal;
}

.promo-conditions-table {
    width: 100%;
    border-collapse: collapse;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.promo-conditions-table td {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.promo-conditions-table tbody tr {
    transition: background 0.2s ease;
}

.promo-conditions-table tbody tr:hover {
    background: rgba(0, 212, 255, 0.05);
}

.highlight-value {
    color: var(--accent-primary);
    font-weight: 600;
}

.promo-table-footer {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Cashback Section */
.promo-cashback-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.promo-content-reversed .promo-image {
    order: 0;
}

.promo-content-reversed .promo-content-text {
    order: 1;
}

.promo-cashback-details {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.promo-cashback-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.promo-cashback-details p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: center;
}

.promo-cashback-details p:last-child {
    margin-bottom: 0;
}

.promo-cashback-details strong {
    color: var(--accent-primary);
}

.promo-cashback-details u {
    text-decoration: none;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 212, 255, 0.3) 60%);
}

.promo-cashback-details a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Daily Deposit Section */
.promo-daily-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.promo-special-time {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.promo-special-time h3 {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.promo-special-time p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: center;
}

.promo-special-time p:last-child {
    margin-bottom: 0;
}

.promo-special-time strong {
    color: var(--accent-primary);
}

.promo-special-time em {
    color: var(--accent-tertiary);
    font-style: normal;
}

/* Verify Section */
.promo-verify-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

/* Tips Section */
.promo-tips {
    margin-top: 3rem;
}

.promo-tips h3 {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.promo-tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

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

.promo-tip-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}

.promo-tip-icon {
    margin-bottom: 1rem;
}

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

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

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

.promo-tip-card p strong {
    color: var(--accent-primary);
}

/* VIP Section */
.promo-vip-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

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

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

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

.promo-vip-content strong {
    color: var(--accent-primary);
}

.promo-vip-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.vip-benefit-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-neon);
}

.vip-benefit-icon {
    margin-bottom: 1rem;
}

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

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

.vip-benefit-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* CTA Section */
.promo-cta-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(0, 212, 255, 0.05) 100%);
}

.promo-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

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

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

.promo-cta-content p strong {
    color: var(--accent-primary);
}

.promo-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

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

/* Promotions FAQ Section */
.promo-faq-section {
    background: var(--bg-primary);
}

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

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

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

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

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

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

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

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

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

/* Tablet (768px+) */
@media (min-width: 768px) {
    .promo-hero-section {
        min-height: 550px;
    }

    .promo-hero-content {
        padding: 5rem 2rem;
    }

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

    .promo-content-with-image {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .promo-content-reversed .promo-image {
        order: 1;
    }

    .promo-content-reversed .promo-content-text {
        order: 0;
    }

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

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

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

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .promo-hero-section {
        min-height: 600px;
    }

    .promo-hero-content {
        padding: 6rem 3rem;
    }

    .promo-hero-title {
        font-size: 3rem;
    }

    .promo-free-credit-section,
    .promo-new-member-section,
    .promo-cashback-section,
    .promo-daily-section,
    .promo-verify-section,
    .promo-vip-section,
    .promo-cta-section {
        padding: 5rem 0;
    }
}

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

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

/* Mobile Promotions Table Styles */
@media (max-width: 639px) {
    .promo-conditions-table {
        max-width: 100%;
    }

    .promo-conditions-table thead {
        display: none;
    }

    .promo-conditions-table tbody tr {
        display: block;
        padding: 1rem;
        margin-bottom: 0.75rem;
        background: var(--bg-tertiary);
        border-radius: 10px;
        border: 1px solid var(--border-primary);
    }

    .promo-conditions-table tbody tr:last-child {
        margin-bottom: 0;
    }

    .promo-conditions-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--border-primary);
    }

    .promo-conditions-table td:last-child {
        border-bottom: none;
    }

    .promo-conditions-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-primary);
        font-size: 0.8125rem;
    }

    .promo-table-wrapper .table-responsive {
        border: none;
    }
}
