/* ==========================================================================
   OLE777 - MAIN STYLESHEET
   Unique Design: Royal Blue & Silver Theme with Modern Sports/Casino Feel
   ========================================================================== */

/* ==========================================================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ========================================================================== */
:root {
    /* Primary Colors - Royal Blue Theme */
    --accent-primary: #2563eb;
    --accent-primary-rgb: 37, 99, 235;
    --accent-secondary: #1e40af;
    --accent-tertiary: #3b82f6;
    --accent-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    --accent-gradient-hover: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);

    /* Silver Metallic Accents */
    --silver-primary: #c0c0c0;
    --silver-light: #e8e8e8;
    --silver-dark: #a0a0a0;

    /* Background Colors - Dark Theme */
    --bg-primary: #0a0e1a;
    --bg-secondary: #0f1629;
    --bg-tertiary: #1a2342;
    --bg-hover: #243156;
    --bg-card: #121a2e;

    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Border Colors */
    --border-primary: rgba(37, 99, 235, 0.2);
    --border-secondary: rgba(192, 192, 192, 0.15);
    --border-accent: rgba(37, 99, 235, 0.4);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.3);

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

    /* Spacing */
    --container-max: 1400px;
    --section-padding: 4rem;
    --card-padding: 1.5rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 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-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: clamp(1.125rem, 2.5vw, 1.25rem); }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

ul, ol {
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

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

.skip-link:focus {
    top: 10px;
}

/* ==========================================================================
   BUTTON STYLES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(var(--accent-primary-rgb), 0.35);
}

.btn-primary:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(var(--accent-primary-rgb), 0.5);
}

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

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

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

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

.btn-full {
    width: 100%;
}

.btn-cta {
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
}

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

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0.875rem 1rem;
}

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

.header-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(var(--accent-primary-rgb), 0.3));
    transition: filter var(--transition-normal);
}

.header-logo:hover {
    filter: drop-shadow(0 0 12px rgba(var(--accent-primary-rgb), 0.5));
}

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

.nav-menu li a {
    display: block;
    padding: 0.625rem 1.125rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a:focus {
    color: var(--text-primary);
    background: rgba(var(--accent-primary-rgb), 0.1);
}

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

.header-cta .btn-cta {
    padding: 0.625rem 1.5rem;
    background: var(--accent-gradient);
    color: var(--text-primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 12px rgba(var(--accent-primary-rgb), 0.3);
}

.header-cta .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(var(--accent-primary-rgb), 0.5);
}

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

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

.hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-normal);
    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: 5.5rem 1.5rem 2rem;
    z-index: 1001;
    overflow-y: auto;
    animation: slideInRight 0.3s ease;
    border-left: 1px solid var(--border-primary);
}

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

.nav-menu.active li a {
    padding: 1rem 1.25rem;
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--border-secondary);
}

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

.mobile-cta-item .btn-cta {
    display: block;
    text-align: center;
    padding: 1rem 1.25rem;
    background: var(--accent-gradient);
    color: var(--text-primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(var(--accent-primary-rgb), 0.35);
}

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

    .header-logo {
        height: 48px;
    }

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

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

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

    .nav-menu li a {
        padding: 0.5rem 1rem;
        border-bottom: none;
    }

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

    .header-cta {
        display: block;
    }
}

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

    .header-logo {
        height: 52px;
    }

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

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

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

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

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

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

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

.footer-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(var(--accent-primary-rgb), 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.875rem;
}

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

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

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

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

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

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 2px;
}

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

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

.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-tertiary);
    transform: translateX(3px);
}

/* 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-tertiary);
    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: 2rem;
}

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

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

.trust-badge svg {
    color: var(--accent-primary);
    transition: all var(--transition-normal);
}

.trust-badge:hover svg {
    color: var(--accent-tertiary);
    filter: drop-shadow(0 0 8px rgba(var(--accent-primary-rgb), 0.5));
}

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

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

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

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

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

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

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

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

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

    .footer-heading::after {
        left: 0;
        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;
    }
}

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

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

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

.sticky-btn {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.5rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    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-normal);
}

/* 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: var(--bg-hover);
    border-color: var(--silver-primary);
    transform: translateY(-2px);
}

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

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

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

    .sticky-btn {
        padding: 0.625rem 0.25rem;
        font-size: 0.6875rem;
        border-radius: var(--radius-sm);
    }
}

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

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

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

    .sticky-btn {
        padding: 0.875rem 0.75rem;
        font-size: 0.875rem;
    }
}

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

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

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

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

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}

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

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

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

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

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

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

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

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

.hero h1 {
    font-size: clamp(1.5rem, 5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--silver-light) 50%, var(--accent-tertiary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(0.9375rem, 2vw, 1.125rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.hero-sub {
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.hero .btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(var(--accent-primary-rgb), 0.1);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.hero-feature:hover {
    background: rgba(var(--accent-primary-rgb), 0.2);
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

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

/* Small Mobile (360px+) */
@media (min-width: 360px) {
    .hero-content {
        padding: 2.5rem 1.5rem;
    }
}

/* Medium Mobile (480px+) */
@media (min-width: 480px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

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

    .hero-content {
        padding: 3rem;
    }

    .hero h1 {
        margin-bottom: 2rem;
    }

    .hero-description {
        margin-bottom: 1.5rem;
    }

    .hero-sub {
        margin-bottom: 2.5rem;
    }

    .hero .btn-lg {
        padding: 1.125rem 2.5rem;
        font-size: 1.0625rem;
    }

    .hero-feature {
        font-size: 0.9375rem;
        padding: 0.625rem 1.25rem;
    }
}

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

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

/* ==========================================================================
   SECTION STYLES
   ========================================================================== */
.section {
    padding: 3rem 1rem;
}

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

.section-header h2 {
    font-size: clamp(1.375rem, 4vw, 2rem);
    font-weight: 600;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

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

.section-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

.section-image {
    margin: 2rem auto;
    max-width: 1000px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-primary);
}

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

.sub-section {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-primary);
}

.sub-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent-tertiary);
}

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

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

    .section-header {
        margin-bottom: 2.5rem;
    }

    .sub-section {
        padding: 2rem;
    }
}

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

    .section-header {
        margin-bottom: 3rem;
    }

    .section-content p {
        font-size: 1.0625rem;
    }

    .sub-section {
        margin-top: 3rem;
        padding: 2.5rem;
    }
}

/* ==========================================================================
   FEATURES GRID
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    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(var(--accent-primary-rgb), 0.1);
    border-radius: 50%;
    color: var(--accent-primary);
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--accent-primary);
    color: var(--text-primary);
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

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

/* Tablet (768px+) */
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

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

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .features-grid {
        gap: 2.5rem;
    }

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

/* ==========================================================================
   GAME PROVIDERS TABLE
   ========================================================================== */
.game-providers-table {
    margin-top: 2.5rem;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-primary);
    background: var(--bg-card);
}

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

caption {
    padding: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-primary);
}

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

th {
    background: var(--bg-secondary);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
    white-space: nowrap;
}

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

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

tbody tr:hover {
    background: rgba(var(--accent-primary-rgb), 0.05);
}

/* Mobile Table Responsiveness */
@media (max-width: 639px) {
    .table-wrapper {
        border: none;
        background: transparent;
    }

    table {
        min-width: auto;
    }

    caption {
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }

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

    tbody {
        display: block;
    }

    tr {
        display: block;
        margin-bottom: 1rem;
        background: var(--bg-card);
        border: 1px solid var(--border-primary);
        border-radius: var(--radius-md);
        padding: 1rem;
    }

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

    td:last-child {
        border-bottom: none;
    }

    td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-primary);
        margin-right: 1rem;
        flex-shrink: 0;
    }

    td:last-child {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    td:last-child::before {
        margin-bottom: 0.25rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .game-providers-table {
        margin-top: 3rem;
    }

    th, td {
        padding: 1.25rem 1.5rem;
    }
}

/* ==========================================================================
   PROMOTIONS GRID
   ========================================================================== */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.promo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-align: center;
    transition: all var(--transition-normal);
}

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

.promo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: rgba(var(--accent-primary-rgb), 0.15);
    border-radius: 50%;
    color: var(--accent-primary);
}

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

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

.promo-links {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .promo-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .promo-card {
        padding: 1.5rem;
    }

    .promo-icon {
        width: 60px;
        height: 60px;
    }

    .promo-card h3 {
        font-size: 1.0625rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .promo-grid {
        gap: 2rem;
    }

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

/* ==========================================================================
   REGISTRATION STEPS
   ========================================================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
}

.step-card:hover {
    border-color: var(--accent-primary);
    background: var(--bg-tertiary);
}

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

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

/* Small Mobile (360px+) */
@media (min-width: 360px) {
    .step-card {
        padding: 1.5rem;
    }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .step-card p {
        font-size: 0.9375rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1.25rem;
    }

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

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
}

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

.payment-methods li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.payment-methods li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(var(--accent-primary-rgb), 0.2);
    color: var(--accent-primary);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

/* Tablet (768px+) */
@media (min-width: 768px) {
    .faq-item dt {
        font-size: 1.0625rem;
        padding: 1.5rem 2rem;
    }

    .faq-item dd {
        padding: 1.5rem 2rem;
        font-size: 1rem;
    }
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(1.375rem, 4vw, 2rem);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    min-width: 200px;
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
    }

    .cta-buttons .btn-lg {
        padding: 1.125rem 2.5rem;
        font-size: 1.0625rem;
    }
}

/* ==========================================================================
   ALTERNATING SECTION BACKGROUNDS
   ========================================================================== */
.direct-website,
.live-casino,
.sports-betting,
.deposit-withdraw,
.registration,
.support-section {
    background: var(--bg-secondary);
}

.slot-games,
.fishing-games,
.lottery,
.promotions,
.app-section,
.faq-section {
    background: var(--bg-primary);
}

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

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

/* Promotions Hero Section */
.promo-hero {
    padding: 6rem 1rem 3rem;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

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

.promo-hero h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--silver-light) 50%, var(--accent-tertiary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.promo-hero-sub {
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

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

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

/* Small Mobile (360px+) */
@media (min-width: 360px) {
    .promo-hero {
        padding: 6rem 1.5rem 3rem;
    }
}

/* Medium Mobile (480px+) */
@media (min-width: 480px) {
    .promo-hero-cta {
        flex-direction: row;
    }
}

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

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

    .promo-hero h1 {
        margin-bottom: 2rem;
    }
}

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

    .promo-hero-content {
        max-width: 1000px;
        margin-bottom: 4rem;
    }
}

/* ==========================================================================
   PROMOTIONS SECTIONS
   ========================================================================== */
.promo-section {
    padding: 3rem 1rem;
}

.promo-free-credit,
.promo-cashback,
.promo-direct-website {
    background: var(--bg-secondary);
}

.promo-first-deposit,
.promo-daily-bonus,
.promo-slots-fishing,
.promo-faq {
    background: var(--bg-primary);
}

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

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

/* ==========================================================================
   PROMO HIGHLIGHT CARDS
   ========================================================================== */
.promo-highlight-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    max-width: 600px;
    margin: 2.5rem auto 0;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glow);
    transition: all var(--transition-normal);
}

.promo-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(var(--accent-primary-rgb), 0.3);
}

.promo-highlight-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1.25rem;
    background: var(--accent-gradient);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(var(--accent-primary-rgb), 0.4);
}

.promo-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(var(--accent-primary-rgb), 0.15);
    border-radius: 50%;
    color: var(--accent-primary);
}

.promo-highlight-content h3 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
}

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

.promo-highlight-content p:not(.promo-highlight-value) {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Gold Variant */
.promo-highlight-gold {
    border-color: rgba(255, 215, 0, 0.4);
}

.promo-highlight-gold .promo-highlight-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
    color: #000;
}

.promo-highlight-gold .promo-highlight-icon {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
}

.promo-highlight-gold .promo-highlight-value {
    color: #ffd700;
}

/* Purple Variant */
.promo-highlight-purple {
    border-color: rgba(139, 92, 246, 0.4);
}

.promo-highlight-purple .promo-highlight-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.promo-highlight-purple .promo-highlight-icon {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.promo-highlight-purple .promo-highlight-value {
    color: #a78bfa;
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .promo-highlight-card {
        flex-direction: row;
        text-align: left;
        max-width: 800px;
        padding: 2.5rem 3rem;
    }

    .promo-highlight-badge {
        left: 2rem;
        transform: none;
    }

    .promo-highlight-icon {
        flex-shrink: 0;
    }

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

    .promo-highlight-content h3 {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   PROMO STEPS LIST
   ========================================================================== */
.promo-steps-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    counter-reset: promo-step;
}

.promo-steps-list li {
    position: relative;
    padding: 1rem 1rem 1rem 3.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    counter-increment: promo-step;
    transition: all var(--transition-normal);
}

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

.promo-steps-list li::before {
    content: counter(promo-step);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--accent-gradient);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50%;
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .promo-steps-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

/* ==========================================================================
   PROMO SCHEDULE TABLE
   ========================================================================== */
.promo-schedule-table {
    margin-top: 2.5rem;
}

.promo-schedule-table table {
    min-width: 400px;
}

.promo-schedule-table td strong {
    color: var(--accent-tertiary);
    font-size: 1.125rem;
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .promo-schedule-table {
        margin-top: 3rem;
    }
}

/* ==========================================================================
   PROMO MINI CARDS GRID
   ========================================================================== */
.promo-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.promo-mini-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    text-align: center;
    transition: all var(--transition-normal);
}

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

.promo-mini-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: rgba(var(--accent-primary-rgb), 0.15);
    border-radius: 50%;
    color: var(--accent-primary);
}

.promo-mini-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.promo-mini-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-tertiary);
    margin-bottom: 0.75rem;
}

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

/* Tablet (768px+) */
@media (min-width: 768px) {
    .promo-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .promo-mini-card {
        padding: 2rem;
    }

    .promo-mini-icon {
        width: 70px;
        height: 70px;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .promo-cards-grid {
        gap: 2.5rem;
    }
}

/* ==========================================================================
   PROMO TRUST FEATURES
   ========================================================================== */
.promo-trust-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
}

.promo-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    min-width: 120px;
    text-align: center;
    transition: all var(--transition-normal);
}

.promo-trust-item:hover {
    transform: translateY(-3px);
}

.promo-trust-item svg {
    color: var(--accent-primary);
    transition: all var(--transition-normal);
}

.promo-trust-item:hover svg {
    color: var(--accent-tertiary);
    filter: drop-shadow(0 0 8px rgba(var(--accent-primary-rgb), 0.5));
}

.promo-trust-item span {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.promo-trust-item:hover span {
    color: var(--text-primary);
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .promo-trust-features {
        gap: 3rem;
        padding: 2.5rem 3rem;
    }

    .promo-trust-item {
        min-width: 140px;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .promo-trust-features {
        gap: 4rem;
    }
}


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