/* ==========================================================================
   UFABET888 - Main Stylesheet
   Unique Design: Electric Blue & Gold Theme with Futuristic Vibes
   ========================================================================== */

/* ==========================================================================
   CSS CUSTOM PROPERTIES (Variables)
   ========================================================================== */
:root {
    /* Primary Colors - Electric Blue Theme */
    --bg-primary: #0a0e1a;
    --bg-secondary: #0f1628;
    --bg-tertiary: #151d35;
    --bg-hover: #1a2442;

    /* Accent Colors - Electric Blue & Gold */
    --accent-primary: #00b4ff;
    --accent-secondary: #ffd700;
    --accent-tertiary: #00e5ff;
    --accent-primary-rgb: 0, 180, 255;
    --accent-gradient: linear-gradient(135deg, #00b4ff 0%, #00e5ff 50%, #ffd700 100%);
    --accent-gradient-hover: linear-gradient(135deg, #00e5ff 0%, #00b4ff 50%, #ffe44d 100%);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
    --text-muted: #6b7c93;

    /* Border Colors */
    --border-primary: rgba(0, 180, 255, 0.15);
    --border-secondary: rgba(255, 215, 0, 0.2);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 180, 255, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 180, 255, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 180, 255, 0.2);
    --shadow-glow: 0 0 20px rgba(0, 180, 255, 0.4);
}

/* ==========================================================================
   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);
    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 for Accessibility */
.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: linear-gradient(180deg, var(--bg-primary) 0%, rgba(10, 14, 26, 0.95) 100%);
    border-bottom: 1px solid var(--border-primary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

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

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

.brand a:hover .header-logo {
    filter: drop-shadow(0 0 12px rgba(0, 180, 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 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);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 1px;
}

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

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

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

.header-cta .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: var(--accent-gradient);
    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: 0 4px 15px rgba(0, 180, 255, 0.3);
}

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

/* 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 {
    background: rgba(0, 180, 255, 0.1);
    border-color: var(--accent-primary);
}

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

.hamburger-line {
    display: block;
    width: 22px;
    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(7px) 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(-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: opacity 0.3s ease, visibility 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%);
    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: 10px;
    border: 1px solid transparent;
}

.nav-menu.active li a:hover {
    border-color: var(--border-primary);
    background: rgba(0, 180, 255, 0.1);
}

.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: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 180, 255, 0.3);
    transition: all 0.3s ease;
}

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

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

footer[role="contentinfo"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-gradient);
    opacity: 0.5;
}

.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: 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, 180, 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: 0.75rem;
}

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

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

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

.footer-heading {
    font-family: 'Prompt', sans-serif;
    font-size: 1.0625rem;
    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-flex;
    align-items: center;
    gap: 0.5rem;
}

.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.9375rem;
    color: var(--text-secondary);
}

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

.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, 180, 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);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    color: var(--text-primary);
}

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

.trust-badge:hover svg {
    color: var(--accent-secondary);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
    transform: scale(1.1);
}

.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.5;
    max-width: 600px;
    margin: 0 auto;
}

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

.sticky-btn {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    border-radius: 50px;
    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 (Login, Register) */
.sticky-btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-primary);
}

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

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

.sticky-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 25px rgba(0, 180, 255, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
}

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

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

/* 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) {
    .header-container {
        padding: 1rem 2rem;
    }

    .header-logo {
        height: 48px;
    }

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

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

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

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

    .header-cta {
        display: block;
    }

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

    .sticky-bottom-bar {
        padding: 1rem 2rem;
        gap: 1rem;
    }

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

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

    .header-logo {
        height: 52px;
    }

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

    .footer-container {
        padding: 4.5rem 3rem 2rem;
    }

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

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

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

    .sticky-bottom-bar {
        justify-content: center;
        padding: 1rem 3rem;
    }

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

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

    .footer-container {
        padding: 5rem 4rem 2rem;
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    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: 0 4px 15px rgba(0, 180, 255, 0.3);
}

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

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

.btn-outline:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

.btn-full {
    width: 100%;
}

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

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

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

/* Section Header */
.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

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

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

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

/* Highlight Text */
.highlight-text {
    color: var(--accent-secondary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--accent-secondary);
    text-underline-offset: 3px;
}

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

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

.hero-bg img {
    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, 26, 0.85) 0%,
        rgba(10, 14, 26, 0.75) 50%,
        rgba(10, 14, 26, 0.95) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    text-align: center;
    padding: 2rem;
}

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

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

.hero-highlight {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: rgba(0, 180, 255, 0.05);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
}

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

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

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

.services-table-wrapper {
    margin-top: 3rem;
}

.services-table-wrapper h3 {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

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

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

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 180, 255, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 16px;
    color: var(--accent-primary);
}

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

.service-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.service-highlight {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent-secondary);
    background: rgba(255, 215, 0, 0.1);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
}

/* ==========================================================================
   CONTENT WITH IMAGE LAYOUT
   ========================================================================== */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

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

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

.content-image {
    order: -1;
}

.content-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-primary);
}

/* Features Box */
.features-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
}

.features-box h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.features-box p {
    margin-bottom: 0;
}

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

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

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

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

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

.device-icon {
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

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

.device-feature p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

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

.payment-methods {
    margin-top: 2rem;
}

.payment-methods h3 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: var(--accent-primary);
}

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

.payment-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.payment-list li:last-child {
    margin-bottom: 0;
}

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

.payment-list li svg {
    flex-shrink: 0;
    color: var(--accent-primary);
    margin-top: 2px;
}

.payment-list li span {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.payment-list li strong {
    color: var(--text-primary);
}

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

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

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

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

.lottery-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-secondary);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.15);
}

.lottery-payout {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--bg-primary);
    background: var(--accent-gradient);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

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

.lottery-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

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

.register-steps {
    max-width: 700px;
    margin: 3rem auto 0;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: none;
}

.steps-list li {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.steps-list li:last-child {
    margin-bottom: 0;
}

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

.step-number {
    flex-shrink: 0;
    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-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
}

.step-content h4 {
    font-size: 1rem;
    margin-bottom: 0.375rem;
    color: var(--text-primary);
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

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

.step-content a:hover {
    text-decoration: underline;
}

.register-cta {
    text-align: center;
    margin-top: 2.5rem;
}

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

.promo-list {
    margin-top: 2rem;
}

.promo-list h3 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: var(--accent-primary);
}

.promo-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promo-list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border-primary);
}

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

.promo-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-gradient);
    border-radius: 50%;
}

.promo-list li strong {
    color: var(--text-primary);
}

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

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

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

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

.badge-icon {
    color: var(--accent-primary);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px rgba(0, 180, 255, 0.3));
}

.security-badge h4 {
    font-size: 1rem;
    margin-bottom: 0.375rem;
    color: var(--text-primary);
}

.security-badge p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

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

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

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

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

.channel-icon {
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.support-channel h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.support-channel p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.support-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 180, 255, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
}

.support-cta p {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

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

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

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

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

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

.faq-item dt {
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 1.25rem 1.5rem;
    background: rgba(0, 180, 255, 0.05);
    border-bottom: 1px solid var(--border-primary);
}

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

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

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

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

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

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

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

    .hero-content {
        padding: 2.5rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .platform-section,
    .slots-section,
    .access-section,
    .deposit-section,
    .casino-section,
    .lottery-section,
    .register-section,
    .promotions-section,
    .security-section,
    .support-section {
        padding: 5rem 0;
    }

    .faq-section {
        padding: 5rem 0 7rem;
    }

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

    .content-image {
        order: 0;
    }

    .content-reverse .content-image {
        order: -1;
    }

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

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

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

    .btn-large {
        padding: 1.125rem 2.5rem;
        font-size: 1.1875rem;
    }
}

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

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

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

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

    .content-with-image {
        gap: 4rem;
    }

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

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

    .platform-section,
    .slots-section,
    .access-section,
    .deposit-section,
    .casino-section,
    .lottery-section,
    .register-section,
    .promotions-section,
    .security-section,
    .support-section {
        padding: 6rem 0;
    }

    .faq-section {
        padding: 6rem 0 8rem;
    }

    .faq-item dt {
        font-size: 1.0625rem;
    }
}

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

    .hero h1 {
        font-size: 3.25rem;
    }

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

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

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

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

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

.promo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 180, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.promo-hero .section-container {
    position: relative;
    z-index: 1;
}

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

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

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

.promo-hero-header > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.promo-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

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

.promo-hero-image {
    max-width: 1000px;
    margin: 0 auto;
}

.promo-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 180, 255, 0.15);
    border: 1px solid var(--border-primary);
}

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

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

/* Promo Card Highlight */
.promo-card-highlight {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, rgba(0, 180, 255, 0.05) 100%);
    border: 2px solid var(--accent-primary);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

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

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

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

.promo-value {
    font-size: 1.125rem;
    color: var(--accent-secondary);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.promo-conditions {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.promo-conditions li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.promo-conditions li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
}

/* Content Sidebar */
.content-sidebar {
    order: 1;
}

.steps-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
}

.steps-card h3 {
    font-size: 1.125rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.steps-card > p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.steps-mini {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    counter-reset: steps;
}

.steps-mini li {
    counter-increment: steps;
    position: relative;
    padding: 0.75rem 0 0.75rem 2.5rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border-primary);
}

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

.steps-mini li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-family: 'Prompt', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50%;
}

.steps-mini li a {
    color: var(--accent-primary);
}

.steps-mini li a:hover {
    text-decoration: underline;
}

.note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    padding: 0.75rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid var(--border-secondary);
    border-radius: 8px;
}

/* Comparison Table */
.comparison-table-wrapper {
    max-width: 800px;
    margin: 3rem auto 0;
}

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

.comparison-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-tertiary);
    border-radius: 16px;
    overflow: hidden;
}

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

.comparison-table th {
    background: rgba(0, 180, 255, 0.1);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table td {
    color: var(--text-secondary);
}

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

.comparison-table .highlight-col {
    background: rgba(0, 180, 255, 0.05);
    color: var(--accent-primary);
    font-weight: 500;
}

.comparison-table .highlight-col strong {
    color: var(--accent-secondary);
}

.promo-cta-center {
    text-align: center;
    margin-top: 2.5rem;
}

/* Promo Cards Grid */
.promo-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.promo-cards-3 {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.promo-badge {
    display: inline-block;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-family: 'Prompt', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.promo-card .promo-value {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.promo-details {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.promo-details li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border-primary);
}

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

.promo-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

/* Promo Info Box */
.promo-info-box {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
}

.promo-info-box h3 {
    font-size: 1.125rem;
    color: var(--accent-primary);
    margin-bottom: 1.25rem;
}

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

.promo-info-box p:last-child {
    margin-bottom: 0;
}

/* Referral Steps */
.referral-steps {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
}

.referral-steps h3 {
    font-size: 1.25rem;
    color: var(--accent-primary);
    margin-bottom: 1.25rem;
    text-align: center;
}

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

.referral-steps a {
    color: var(--accent-primary);
}

.referral-steps a:hover {
    text-decoration: underline;
}

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

.referral-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 180, 255, 0.05);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
}

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

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

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

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

.vip-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-secondary);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.15);
}

.vip-icon {
    color: var(--accent-secondary);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

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

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

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

.promo-cta-box {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(0, 180, 255, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

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

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

.promo-cta-box > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.promo-cta-box a {
    color: var(--accent-primary);
}

.promo-cta-box a:hover {
    text-decoration: underline;
}

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

.promo-cta-buttons .btn {
    width: 100%;
    max-width: 280px;
}

/* Promotions Page - Responsive Styles */
@media (min-width: 360px) {
    .promo-hero-header h1 {
        font-size: 2rem;
    }
}

@media (min-width: 480px) {
    .promo-hero-header h1 {
        font-size: 2.25rem;
    }

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

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

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

    .promo-cards-3 {
        max-width: none;
        grid-template-columns: 1fr;
    }

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

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

@media (min-width: 576px) {
    .referral-highlight {
        gap: 1rem;
    }

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

@media (min-width: 768px) {
    .promo-hero {
        padding: 8rem 0 5rem;
    }

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

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

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

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

    .content-sidebar {
        order: 0;
    }

    .promo-cards-3 {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .promo-cta-box {
        padding: 4rem 3rem;
    }

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

    .comparison-table th,
    .comparison-table td {
        padding: 1.25rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .promo-hero-header h1 {
        font-size: 3rem;
    }

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

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

    .promo-cards-3 {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .referral-steps {
        padding: 3rem;
    }
}

@media (min-width: 1280px) {
    .promo-hero-header h1 {
        font-size: 3.25rem;
    }
}


/* ==========================================================================
   404 ERROR PAGE STYLES
   ========================================================================== */
.error-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.error-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(var(--accent-primary-rgb), 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.error-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    padding: 2rem;
}

.error-code {
    font-family: 'Prompt', sans-serif;
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: none;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(var(--accent-primary-rgb), 0.3));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(var(--accent-primary-rgb), 0.5));
    }
}

.error-title {
    font-family: 'Prompt', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.error-actions .btn {
    min-width: 200px;
}

/* 404 Decorative Elements */
.error-decoration {
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
}

.error-decoration-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.error-decoration-2 {
    bottom: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: var(--accent-gradient);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 8s ease-in-out infinite reverse;
}

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

/* 404 Page Responsive Styles */
@media (min-width: 480px) {
    .error-actions {
        flex-direction: row;
    }

    .error-actions .btn {
        min-width: 180px;
    }
}

@media (min-width: 576px) {
    .error-section {
        padding: 4rem 1.5rem;
    }

    .error-code {
        font-size: 10rem;
    }

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

    .error-message {
        font-size: 1.0625rem;
    }
}

@media (min-width: 768px) {
    .error-section {
        padding: 5rem 2rem;
    }

    .error-code {
        font-size: 12rem;
    }

    .error-title {
        font-size: 2.25rem;
    }

    .error-container {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .error-code {
        font-size: 14rem;
    }

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

    .error-message {
        font-size: 1.125rem;
    }
}


/* 404 Error Icon */
.error-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.15) 0%, rgba(var(--accent-primary-rgb), 0.05) 100%);
    border-radius: 50%;
    border: 2px solid rgba(var(--accent-primary-rgb), 0.2);
    animation: icon-pulse 3s ease-in-out infinite;
}

.error-icon svg {
    color: var(--accent-primary);
    opacity: 0.8;
}

@keyframes icon-pulse {
    0%, 100% {
        transform: scale(1);
        border-color: rgba(var(--accent-primary-rgb), 0.2);
    }
    50% {
        transform: scale(1.05);
        border-color: rgba(var(--accent-primary-rgb), 0.4);
    }
}

/* 404 Quick Links */
.error-quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

.error-quick-label {
    color: var(--text-muted);
    margin-right: 0.25rem;
}

.error-quick-link {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.error-quick-link:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.error-quick-separator {
    color: var(--text-muted);
    opacity: 0.5;
}

/* Enhanced Button Styles for 404 */
.error-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.error-actions .btn svg {
    flex-shrink: 0;
}

/* Responsive Adjustments for 404 Elements */
@media (max-width: 479px) {
    .error-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .error-icon svg {
        width: 48px;
        height: 48px;
    }

    .error-quick-links {
        font-size: 0.875rem;
    }

    .error-quick-label {
        width: 100%;
        text-align: center;
        margin-bottom: 0.25rem;
    }
}

@media (min-width: 576px) {
    .error-icon {
        width: 120px;
        height: 120px;
    }

    .error-icon svg {
        width: 72px;
        height: 72px;
    }
}

@media (min-width: 768px) {
    .error-icon {
        width: 140px;
        height: 140px;
        margin-bottom: 2rem;
    }

    .error-icon svg {
        width: 80px;
        height: 80px;
    }

    .error-quick-links {
        font-size: 1rem;
        gap: 0.75rem;
    }
}
