/* ==========================================================================
   R39 - Global Styles
   Modern futuristic dark theme with electric cyan/neon blue accents
   ========================================================================== */

/* CSS Custom Properties (Variables) */
:root {
    /* Primary Colors - Electric Cyan/Neon Blue Theme */
    --accent-primary: #00d4ff;
    --accent-secondary: #0099cc;
    --accent-tertiary: #00e5ff;
    --accent-primary-rgb: 0, 212, 255;
    --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #0077b6 50%, #00e5ff 100%);
    --accent-gradient-hover: linear-gradient(135deg, #00e5ff 0%, #00d4ff 50%, #0099cc 100%);

    /* Background Colors */
    --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: #6e7681;
    --text-accent: #00d4ff;

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

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

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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, 153, 204, 0.03) 0%, transparent 50%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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%);
    padding: 0.75rem 1.5rem;
    background: var(--accent-primary);
    color: var(--bg-primary);
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    transition: top var(--transition-base);
}

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

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

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

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

/* Logo */
.brand a {
    display: flex;
    align-items: center;
    transition: transform var(--transition-fast);
}

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

.header-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px 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-family: 'Prompt', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 6px;
    transition: all var(--transition-fast);
    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);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.nav-menu li a:hover,
.nav-menu li a:focus {
    color: var(--text-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 {
    padding: 0.625rem 1.5rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: 8px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.25);
    border: 1px solid transparent;
}

.header-cta .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
    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: none;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    border-radius: 8px;
    transition: background var(--transition-fast);
}

.mobile-menu-toggle:hover {
    background: rgba(0, 212, 255, 0.1);
}

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

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
    box-shadow: 0 0 4px rgba(0, 212, 255, 0.5);
}

/* Hamburger Animation - Open State */
.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.75);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    z-index: 999;
    backdrop-filter: blur(4px);
}

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

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

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

.nav-menu.active li a {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border-radius: 8px;
    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: block;
    text-align: center;
    padding: 1rem 1.25rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: 10px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

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

    .header-logo {
        height: 46px;
    }

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

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

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

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

    .header-cta {
        display: block;
    }
}

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

    .header-logo {
        height: 50px;
    }

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

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

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

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

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

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

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

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

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

.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: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border-primary);
    transition: all var(--transition-base);
}

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

.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: 100%;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
    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.9375rem;
    color: var(--text-secondary);
}

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

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

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

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

.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 var(--transition-base);
}

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

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

.trust-badge:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.6));
}

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

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

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

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

.disclaimer {
    color: var(--text-muted);
    font-size: 0.8125rem;
    line-height: 1.5;
}

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

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

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

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

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

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

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

    .trust-badges {
        gap: 3rem;
    }

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

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

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

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

    .footer-logo {
        margin: 0 0 1.25rem;
    }

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

/* Large Desktop - 1280px+ */
@media (min-width: 1280px) {
    .footer-container {
        padding: 4rem 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.95);
    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: 8px;
    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 var(--transition-base);
}

/* Secondary Buttons (Login, Register) */
.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 (Main CTA) */
.sticky-btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

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

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

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

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

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

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

    .sticky-btn {
        padding: 0.875rem 1rem;
        font-size: 0.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: 10px;
    }
}

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

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 10px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.25);
}

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

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

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

.btn-full {
    width: 100%;
}

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

/* ==========================================================================
   MAIN CONTENT STYLES - HOMEPAGE
   ========================================================================== */

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

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

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

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.section-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
}

/* ==========================================================================
   HERO SECTION - Pattern 3: Centered Full-Width with Background Image
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 1rem 4rem;
}

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

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

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

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

.hero h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

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

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

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

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

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

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

.hero-badge:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

.hero-badge svg {
    width: 18px;
    height: 18px;
    color: var(--accent-primary);
}

/* ==========================================================================
   PLATFORM SECTION
   ========================================================================== */

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

.platform-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

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

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

.feature-icon svg {
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
}

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

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

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

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

.slots-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.slots-image {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-primary);
}

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

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

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

/* Providers Table */
.providers-table-wrapper {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 2rem 1rem;
}

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

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

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

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

.providers-table th {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--accent-primary);
    background: rgba(0, 212, 255, 0.05);
    white-space: nowrap;
}

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

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

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

/* ==========================================================================
   ENTRY SECTION
   ========================================================================== */

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

.entry-content {
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

.entry-steps {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.entry-steps h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-primary);
}

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

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-primary);
}

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

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: 50%;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.step-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    padding-top: 0.25rem;
}

/* ==========================================================================
   DEPOSIT SECTION
   ========================================================================== */

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

.deposit-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.deposit-image {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-primary);
    order: -1;
}

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

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

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

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

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

.promos-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.promos-image {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-primary);
}

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

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

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

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

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

.promo-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all var(--transition-base);
}

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

.promo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    color: var(--accent-primary);
}

.promo-icon svg {
    width: 28px;
    height: 28px;
}

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

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

.promos-cta {
    text-align: center;
    margin-top: 2rem;
}

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

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

.casino-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.casino-image {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-primary);
    order: -1;
}

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

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

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

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

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

.sports-content {
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

.fishing-info {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.fishing-info h3 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.fishing-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
    margin: 0;
}

/* ==========================================================================
   TRUST SECTION
   ========================================================================== */

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

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

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

.trust-content h3 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    text-align: center;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

/* ==========================================================================
   REGISTER CTA SECTION
   ========================================================================== */

.register-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 119, 182, 0.1) 100%);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
}

.register-content {
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

.register-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

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

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

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

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

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

.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);
    padding: 1.25rem 1.5rem;
    background: rgba(0, 212, 255, 0.03);
    border-bottom: 1px solid var(--border-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .feature-card {
        padding: 2.5rem 2rem;
    }

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

    .trust-badge-item {
        padding: 1.25rem 1rem;
    }

    .trust-badge-item svg {
        width: 40px;
        height: 40px;
    }
}

/* Small Tablet (640px+) */
@media (min-width: 640px) {
    .promos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .promo-card {
        flex-direction: column;
        text-align: center;
    }

    .promo-icon {
        margin: 0 auto 0.5rem;
    }
}

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

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

    .platform-section,
    .slots-section,
    .entry-section,
    .deposit-section,
    .promos-section,
    .casino-section,
    .sports-section,
    .trust-section,
    .register-cta-section,
    .faq-section {
        padding: 5rem 0;
    }

    .faq-section {
        padding-bottom: 7rem;
    }

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

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

    .hero-content {
        padding: 2.5rem;
    }

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

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

    .deposit-image {
        order: 0;
    }

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

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

    .casino-image {
        order: 0;
    }

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

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

    .promo-icon {
        margin: 0;
    }
}

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

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

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

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

    .promo-card {
        flex-direction: column;
        text-align: center;
    }

    .promo-icon {
        margin: 0 auto 0.5rem;
    }
}

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

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

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

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

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

    .providers-table-wrapper {
        padding: 2rem;
    }
}

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

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

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

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

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

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

/* ==========================================================================
   PROMOTIONS PAGE STYLES
   Pattern 4: Stacked/Vertical Hero Layout
   ========================================================================== */

/* Promotions Hero Section */
.promo-hero {
    background: var(--bg-secondary);
    padding: 6rem 1rem 3rem;
}

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

.promo-hero h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

.promo-hero-image-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-lg);
}

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

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

.promo-credit-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

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

.promo-credit-steps h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-primary);
}

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

.credit-steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-primary);
}

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

.credit-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: 50%;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.credit-step-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    padding-top: 0.25rem;
}

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

.promo-bonus-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.promo-bonus-image {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-primary);
}

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

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

/* Comparison Table */
.promo-comparison-table {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 2rem 1rem;
}

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

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

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

.comparison-table th {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: rgba(0, 212, 255, 0.05);
    white-space: nowrap;
}

.comparison-table th.highlight-col {
    color: var(--accent-primary);
}

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

.comparison-table td.highlight-col {
    color: var(--accent-primary);
    background: rgba(0, 212, 255, 0.03);
}

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

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

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

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

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

.promo-daily-highlight {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.daily-highlight-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    transition: all var(--transition-base);
}

.daily-highlight-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.daily-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    color: var(--accent-primary);
}

.daily-highlight-icon svg {
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.4));
}

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

.daily-highlight-text p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
    text-align: left;
}

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

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

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

.promo-referral-rewards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.referral-reward-card {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    transition: all var(--transition-base);
}

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

.referral-reward-card.featured {
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 119, 182, 0.05) 100%);
}

.referral-reward-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 50px;
    white-space: nowrap;
}

.referral-reward-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    color: var(--accent-primary);
}

.referral-reward-icon svg {
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
}

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

.referral-amount {
    font-family: 'Prompt', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

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

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

.promo-cashback-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.promo-cashback-image {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-primary);
}

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

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

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

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

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

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

.event-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    transition: all var(--transition-base);
}

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

.event-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    color: var(--accent-primary);
}

.event-feature-icon svg {
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.4));
}

.event-feature span {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

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

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

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

/* Summary Section */
.promo-summary-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 119, 182, 0.1) 100%);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
}

.promo-summary-content {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.promo-summary-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
}

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

.promo-summary-cta > p:first-child {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.promo-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

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

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

.promo-summary-links a {
    color: var(--accent-primary);
    text-decoration: none;
}

.promo-summary-links a:hover {
    text-decoration: underline;
}

/* Promotions FAQ Section */
.promo-faq-section {
    padding-bottom: 6rem;
}

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

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

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

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

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

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

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

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

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

/* Large Mobile / Phablet (576px+) */
@media (min-width: 576px) {
    .promo-hero {
        padding: 7rem 1.5rem 4rem;
    }

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

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

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

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

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

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

    .promo-credit-section,
    .promo-bonus-section,
    .promo-daily-section,
    .promo-referral-section,
    .promo-cashback-section,
    .promo-events-section,
    .promo-terms-section,
    .promo-summary-section {
        padding: 5rem 0;
    }

    .promo-credit-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }

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

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

    .promo-comparison-table {
        padding: 2rem;
    }
}

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

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

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

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

    .promo-hero-subtext {
        font-size: 1rem;
    }
}

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

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

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