/* ===========================
   CSS VARIABLES - CARIBBEAN DESIGN SYSTEM
   =========================== */
:root {
    /* Primary Background - Deep Ocean Night */
    --bg-primary: #0a1628;
    /* Secondary Background - Reef Depth */
    --bg-secondary: #0f2035;
    /* Elevated Surface - Soft Translucent */
    --bg-elevated: rgba(15, 40, 65, 0.7);
    /* Card Surface */
    --bg-card: rgba(18, 48, 78, 0.5);
    /* Glass Surface */
    --bg-glass: rgba(15, 35, 60, 0.6);

    /* Primary Accent - Sunset Coral */
    --accent-primary: #f0845a;
    /* Secondary Accent - Ocean Teal */
    --accent-secondary: #18b5a0;
    /* Highlight Accent - Sunset Gold */
    --accent-highlight: #f5c842;
    /* Warm Accent */
    --accent-warm: #e8734a;
    /* Coral */
    --accent-coral: #ff7f6e;

    /* Ocean Tones */
    --ocean-deep: #0a2540;
    --ocean-mid: #0d6e7e;
    --ocean-light: #22c1c3;
    --ocean-glow: rgba(24, 181, 160, 0.15);

    /* Sunset Tones */
    --sunset-deep: #c0392b;
    --sunset-mid: #e67e22;
    --sunset-light: #f39c12;
    --sunset-glow: rgba(240, 132, 90, 0.15);

    /* Nature Tones */
    --palm-green: #27ae60;
    --palm-dark: #1e8449;
    --sand-light: #f5e6d3;
    --sand-mid: #d4b896;

    /* Text Colors */
    --text-primary: #f0f4f8;
    --text-secondary: #a8c0d8;
    --text-muted: #6b8aab;
    --text-accent: var(--accent-highlight);

    /* Gradients */
    --gradient-sunset: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-highlight) 100%);
    --gradient-ocean: linear-gradient(135deg, var(--accent-secondary) 0%, var(--ocean-light) 100%);
    --gradient-hero: linear-gradient(180deg, rgba(10, 22, 40, 0.3) 0%, var(--bg-primary) 100%);
    --gradient-card: linear-gradient(145deg, rgba(18, 48, 78, 0.6) 0%, rgba(10, 37, 64, 0.4) 100%);

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.3);
    --shadow-glow-sunset: 0 0 30px rgba(240, 132, 90, 0.2);
    --shadow-glow-ocean: 0 0 30px rgba(24, 181, 160, 0.2);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --max-width: 1320px;
    --header-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--accent-secondary);
    text-decoration: none;
    transition: color var(--transition-base);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent-secondary);
    outline-offset: 2px;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

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

/* ===========================
   LAYOUT
   =========================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-narrow {
    max-width: 860px;
}

/* ===========================
   SCROLL PROGRESS BAR
   =========================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-sunset);
    z-index: 10001;
    transition: width 0.1s linear;
}

/* ===========================
   AMBIENT PARTICLES
   =========================== */
.ambient-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(245, 200, 66, 0.15);
    border-radius: 50%;
    animation: floatParticle 20s infinite ease-in-out;
}

.particle-1 { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 25s; }
.particle-2 { left: 25%; top: 60%; animation-delay: 3s; animation-duration: 22s; width: 3px; height: 3px; }
.particle-3 { left: 50%; top: 30%; animation-delay: 6s; animation-duration: 28s; }
.particle-4 { left: 70%; top: 70%; animation-delay: 2s; animation-duration: 20s; width: 5px; height: 5px; background: rgba(24, 181, 160, 0.12); }
.particle-5 { left: 85%; top: 15%; animation-delay: 8s; animation-duration: 24s; }
.particle-6 { left: 40%; top: 80%; animation-delay: 4s; animation-duration: 26s; width: 3px; height: 3px; background: rgba(24, 181, 160, 0.1); }
.particle-7 { left: 60%; top: 50%; animation-delay: 10s; animation-duration: 23s; }
.particle-8 { left: 15%; top: 90%; animation-delay: 7s; animation-duration: 27s; width: 5px; height: 5px; }

@keyframes floatParticle {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(30px, -40px) scale(1.2); opacity: 0.6; }
    50% { transform: translate(-20px, -80px) scale(0.8); opacity: 0.4; }
    75% { transform: translate(40px, -30px) scale(1.1); opacity: 0.5; }
}

/* ===========================
   HEADER - TROPICAL GLASS NAV
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(10, 22, 40, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(240, 132, 90, 0.08);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.92);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(240, 132, 90, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--text-primary);
    flex-shrink: 0;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.logo-accent {
    color: var(--accent-secondary);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gradient-sunset);
    border-radius: var(--radius-full);
    transition: width var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-sunset);
    color: #fff;
    box-shadow: 0 4px 16px rgba(240, 132, 90, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(240, 132, 90, 0.35);
    filter: brightness(1.08);
    color: #fff;
}

.btn-secondary {
    background: rgba(24, 181, 160, 0.12);
    color: var(--accent-secondary);
    border: 1px solid rgba(24, 181, 160, 0.25);
}

.btn-secondary:hover {
    background: rgba(24, 181, 160, 0.2);
    transform: translateY(-2px);
    color: var(--accent-secondary);
}

.btn-nav {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-xl {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    font-size: 0.85em;
}

.btn:active {
    transform: translateY(0);
}

/* ===========================
   MOBILE MENU
   =========================== */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 10000;
    transition: right var(--transition-smooth);
    overflow-y: auto;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-inner {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.mobile-close {
    align-self: flex-end;
    font-size: 2rem;
    color: var(--text-secondary);
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    transition: color var(--transition-base);
}

.mobile-close:hover {
    color: var(--text-primary);
}

.mobile-nav-list {
    margin-top: var(--space-3xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: var(--space-sm) 0;
    transition: color var(--transition-base);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--accent-primary);
}

.btn-mobile-cta {
    margin-top: auto;
    padding-top: var(--space-3xl);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + var(--space-3xl));
    padding-bottom: var(--space-3xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(240, 132, 90, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(24, 181, 160, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(245, 200, 66, 0.04) 0%, transparent 40%),
        linear-gradient(180deg, rgba(10, 22, 40, 0.5) 0%, var(--bg-primary) 100%);
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}

.wave {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
}

.wave-1 {
    animation: waveMove 8s ease-in-out infinite;
}

.wave-2 {
    animation: waveMove 12s ease-in-out infinite reverse;
    bottom: -10px;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(240, 132, 90, 0.1);
    border: 1px solid rgba(240, 132, 90, 0.2);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Hero Visual - Slot Preview */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-game-preview {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.game-preview-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.preview-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(240, 132, 90, 0.15) 0%, transparent 70%);
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.slot-preview-machine {
    position: relative;
    z-index: 1;
    background: var(--gradient-card);
    border: 1px solid rgba(240, 132, 90, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    backdrop-filter: blur(10px);
}

.slot-header-bar {
    text-align: center;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: var(--space-lg);
}

.slot-title-preview {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-highlight);
}

.slot-reels-preview {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.reel-preview {
    width: 72px;
    height: 80px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: reelFloat 3s ease-in-out infinite;
}

.reel-preview:nth-child(2) { animation-delay: 0.3s; }
.reel-preview:nth-child(3) { animation-delay: 0.6s; }
.reel-preview:nth-child(4) { animation-delay: 0.9s; }
.reel-preview:nth-child(5) { animation-delay: 1.2s; }

@keyframes reelFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.slot-info-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-coins {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-highlight);
    font-size: 1.1rem;
}

.preview-bet {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Hero Scroll Hint */
.hero-scroll-hint {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    animation: scrollHint 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    font-size: 1.2rem;
    color: var(--text-muted);
}

@keyframes scrollHint {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ===========================
   ACTIVITY TICKER
   =========================== */
.activity-ticker {
    background: rgba(15, 32, 53, 0.6);
    border-top: 1px solid rgba(24, 181, 160, 0.1);
    border-bottom: 1px solid rgba(24, 181, 160, 0.1);
    padding: var(--space-md) 0;
    overflow: hidden;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.ticker-live-dot {
    width: 8px;
    height: 8px;
    background: #27ae60;
    border-radius: 50%;
    flex-shrink: 0;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(39, 174, 96, 0); }
}

.ticker-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.ticker-scroll {
    overflow: hidden;
    flex: 1;
}

.ticker-content {
    display: flex;
    gap: var(--space-3xl);
    animation: tickerScroll 40s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===========================
   SECTION HEADERS
   =========================== */
.section-badge {
    display: inline-block;
    background: rgba(240, 132, 90, 0.1);
    border: 1px solid rgba(240, 132, 90, 0.15);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: var(--space-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===========================
   GAME SECTION
   =========================== */
.game-section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.game-container {
    max-width: 960px;
    margin: 0 auto;
}

.game-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid rgba(240, 132, 90, 0.12);
    box-shadow: var(--shadow-xl), var(--shadow-glow-sunset);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.game-frame:hover {
    transform: scale(1.005);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(240, 132, 90, 0.25);
}

.game-glow-top,
.game-glow-bottom {
    position: absolute;
    left: 10%;
    right: 10%;
    height: 60px;
    z-index: 2;
    pointer-events: none;
}

.game-glow-top {
    top: -1px;
    background: linear-gradient(180deg, rgba(240, 132, 90, 0.08) 0%, transparent 100%);
}

.game-glow-bottom {
    bottom: -1px;
    background: linear-gradient(0deg, rgba(24, 181, 160, 0.08) 0%, transparent 100%);
}

.game-iframe {
    display: block;
    width: 100%;
    height: 600px;
    border: none;
    background: var(--bg-secondary);
}

.game-info-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    text-align: center;
}

.info-icon {
    font-size: 1.5rem;
}

.info-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.game-disclaimer {
    text-align: center;
    margin-top: var(--space-xl);
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   FEATURES SECTION
   =========================== */
.features-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 32, 53, 0.3) 50%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all var(--transition-smooth);
    animation-delay: var(--delay, 0s);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(240, 132, 90, 0.15);
    box-shadow: var(--shadow-lg), var(--shadow-glow-sunset);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 132, 90, 0.08);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

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

/* ===========================
   PROGRESSION SECTION
   =========================== */
.progression-section {
    padding: var(--space-4xl) 0;
}

.progression-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.daily-rewards-card,
.level-progression-card,
.achievements-section {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

/* Daily Rewards Calendar */
.rewards-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--space-sm);
}

.reward-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    transition: all var(--transition-base);
}

.reward-day.claimed {
    background: rgba(39, 174, 96, 0.1);
    border-color: rgba(39, 174, 96, 0.2);
}

.reward-day.active {
    background: rgba(240, 132, 90, 0.1);
    border-color: rgba(240, 132, 90, 0.3);
    box-shadow: 0 0 15px rgba(240, 132, 90, 0.15);
}

.reward-day.locked {
    opacity: 0.5;
}

.reward-day.mega {
    background: rgba(245, 200, 66, 0.08);
    border-color: rgba(245, 200, 66, 0.15);
}

.day-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.day-icon {
    font-size: 1.2rem;
}

.day-reward {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-highlight);
}

.day-check {
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 0.6rem;
    color: #27ae60;
}

.day-action {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--accent-primary);
    background: rgba(240, 132, 90, 0.15);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

/* Level Progression */
.current-level {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.level-badge {
    width: 56px;
    height: 56px;
    background: var(--gradient-ocean);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.level-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.level-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
}

.level-xp {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.progress-bar-container {
    margin-bottom: var(--space-xl);
}

.progress-bar {
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-ocean);
    border-radius: var(--radius-full);
    transition: width 1s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.level-milestones {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.milestone {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
}

.milestone.completed {
    opacity: 0.6;
}

.milestone.current {
    background: rgba(24, 181, 160, 0.1);
    border: 1px solid rgba(24, 181, 160, 0.2);
}

.milestone.upcoming {
    opacity: 0.4;
}

.milestone-icon {
    font-size: 1.2rem;
}

.milestone-label {
    flex: 1;
    color: var(--text-secondary);
}

.milestone-level {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Achievements */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.achievement-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-xs);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all var(--transition-base);
}

.achievement-badge.earned {
    border-color: rgba(245, 200, 66, 0.2);
    background: rgba(245, 200, 66, 0.05);
}

.achievement-badge.locked {
    opacity: 0.4;
}

.badge-icon {
    font-size: 1.8rem;
}

.badge-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-primary);
}

.badge-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ===========================
   EVENT SECTION
   =========================== */
.event-section {
    padding: var(--space-3xl) 0;
}

.event-card {
    background: linear-gradient(135deg, rgba(240, 132, 90, 0.08) 0%, rgba(245, 200, 66, 0.05) 50%, rgba(24, 181, 160, 0.06) 100%);
    border: 1px solid rgba(240, 132, 90, 0.15);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.event-badge {
    display: inline-block;
    background: rgba(240, 132, 90, 0.15);
    border: 1px solid rgba(240, 132, 90, 0.25);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: var(--space-md);
}

.event-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.event-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 550px;
}

.event-timer {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    min-width: 70px;
}

.timer-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-highlight);
}

.timer-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-visual {
    position: relative;
    width: 200px;
    height: 200px;
}

.event-decoration {
    position: relative;
    width: 100%;
    height: 100%;
}

.event-emoji {
    position: absolute;
    font-size: 3rem;
    animation: floatEmoji 6s ease-in-out infinite;
}

.event-emoji-1 { top: 10%; left: 20%; animation-delay: 0s; }
.event-emoji-2 { top: 50%; left: 60%; animation-delay: 1.5s; }
.event-emoji-3 { top: 20%; right: 10%; animation-delay: 3s; }
.event-emoji-4 { bottom: 10%; left: 30%; animation-delay: 4.5s; }

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

/* ===========================
   EXPERIENCE SECTION
   =========================== */
.experience-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 32, 53, 0.3) 50%, transparent 100%);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.experience-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all var(--transition-smooth);
    animation-delay: var(--delay, 0s);
}

.experience-card.large {
    grid-column: 1 / -1;
}

.experience-card:hover {
    transform: translateY(-3px);
    border-color: rgba(24, 181, 160, 0.15);
    box-shadow: var(--shadow-lg), var(--shadow-glow-ocean);
}

.exp-icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.experience-card h3 {
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

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

/* ===========================
   SOCIAL / LEADERBOARD SECTION
   =========================== */
.social-section {
    padding: var(--space-4xl) 0;
}

.leaderboard-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.leaderboard-card,
.challenges-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

/* Leaderboard Tabs */
.leaderboard-tabs {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 4px;
}

.lb-tab {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    cursor: pointer;
    background: transparent;
    border: none;
}

.lb-tab.active {
    background: rgba(240, 132, 90, 0.15);
    color: var(--accent-primary);
}

.lb-tab:hover {
    color: var(--text-secondary);
}

.leaderboard-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.leaderboard-content.hidden {
    display: none;
}

.lb-entry {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.1);
    transition: background var(--transition-base);
}

.lb-entry:hover {
    background: rgba(0, 0, 0, 0.2);
}

.lb-entry.rank-1 {
    background: rgba(245, 200, 66, 0.06);
    border: 1px solid rgba(245, 200, 66, 0.1);
}

.lb-entry.rank-2 {
    background: rgba(192, 192, 192, 0.04);
    border: 1px solid rgba(192, 192, 192, 0.08);
}

.lb-entry.rank-3 {
    background: rgba(205, 127, 50, 0.04);
    border: 1px solid rgba(205, 127, 50, 0.08);
}

.lb-rank {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    min-width: 32px;
    text-align: center;
    color: var(--text-muted);
}

.lb-avatar {
    font-size: 1.3rem;
}

.lb-name {
    flex: 1;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.lb-level {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.lb-score {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-highlight);
    font-size: 0.9rem;
}

/* Challenges */
.challenge-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.challenge-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.1);
}

.challenge-item.completed {
    opacity: 0.6;
}

.challenge-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.challenge-info {
    flex: 1;
}

.challenge-name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.challenge-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.challenge-progress-bar {
    height: 4px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.challenge-fill {
    height: 100%;
    background: var(--gradient-ocean);
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
}

.challenge-count {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
    display: block;
}

.challenge-reward {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--accent-highlight);
    flex-shrink: 0;
}

.challenge-status {
    color: #27ae60;
    font-weight: 700;
    flex-shrink: 0;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    padding: var(--space-4xl) 0;
}

.cta-card {
    text-align: center;
    padding: var(--space-4xl) var(--space-2xl);
    background: linear-gradient(135deg, rgba(240, 132, 90, 0.06) 0%, rgba(24, 181, 160, 0.04) 100%);
    border: 1px solid rgba(240, 132, 90, 0.1);
    border-radius: var(--radius-2xl);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.cta-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    margin-top: var(--space-md);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    padding: var(--space-3xl) 0 var(--space-xl);
    background: rgba(5, 12, 22, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    margin-bottom: var(--space-md);
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 300px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--accent-secondary);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-disclaimers {
    margin-bottom: var(--space-lg);
}

.disclaimer-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.footer-copyright {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===========================
   FLOATING BUTTONS
   =========================== */
.floating-play-btn {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    background: var(--gradient-sunset);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(240, 132, 90, 0.35);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-smooth);
    pointer-events: none;
}

.floating-play-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 28px rgba(240, 132, 90, 0.45);
    color: #fff;
}

.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    left: var(--space-xl);
    width: 44px;
    height: 44px;
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-smooth);
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.back-to-top:hover {
    background: rgba(24, 181, 160, 0.15);
    border-color: rgba(24, 181, 160, 0.2);
    color: var(--accent-secondary);
}

/* ===========================
   PAGE HERO (SUBPAGES)
   =========================== */
.page-hero {
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-3xl);
    background:
        radial-gradient(ellipse at 50% 30%, rgba(240, 132, 90, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(24, 181, 160, 0.04) 0%, transparent 50%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.page-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===========================
   CONTENT SECTIONS (SUBPAGES)
   =========================== */
.content-section {
    padding: var(--space-3xl) 0 var(--space-4xl);
}

.content-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.content-card h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.content-card h3 {
    font-size: 1.15rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--accent-secondary);
}

.content-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

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

.content-card ul,
.content-card ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.content-card ul {
    list-style: disc;
}

.content-card ol {
    list-style: decimal;
}

.content-card li {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.content-card a {
    color: var(--accent-secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(24, 181, 160, 0.08) 0%, rgba(24, 181, 160, 0.02) 100%);
    border-color: rgba(24, 181, 160, 0.15);
}

.content-cta {
    text-align: center;
    padding: var(--space-2xl);
    background: linear-gradient(135deg, rgba(240, 132, 90, 0.06) 0%, rgba(24, 181, 160, 0.04) 100%);
    border: 1px solid rgba(240, 132, 90, 0.1);
    border-radius: var(--radius-xl);
}

.content-cta h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.content-cta p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

/* Values Grid (About page) */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.value-item {
    padding: var(--space-lg);
    background: rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.value-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.value-item h3 {
    color: var(--text-primary);
    margin-top: 0;
}

.value-item p {
    font-size: 0.85rem;
}

/* Tips Grid (Responsible Gaming) */
.tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.tip-item {
    padding: var(--space-lg);
    background: rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-lg);
}

.tip-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.tip-item h3 {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.tip-item p {
    font-size: 0.85rem;
}

/* Symbols Grid (Rules) */
.symbols-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.symbol-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-md);
}

.symbol-icon {
    font-size: 1.5rem;
}

.symbol-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
    display: block;
}

.symbol-value {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

/* Bonus List */
.bonus-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.bonus-item {
    padding: var(--space-lg);
    background: rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--accent-primary);
}

.bonus-item h3 {
    margin-top: 0;
    color: var(--accent-primary);
}

/* FAQ */
.faq-list {
    margin-top: var(--space-lg);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-md) 0;
}

.faq-question {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: var(--space-sm) 0;
    transition: color var(--transition-base);
}

.faq-question:hover {
    color: var(--accent-secondary);
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    padding: var(--space-sm) 0 var(--space-md);
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-xl);
}

.contact-form-card,
.contact-info-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-2xl);
}

.contact-form-card h2,
.contact-info-card h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.required {
    color: var(--accent-coral);
}

.form-input {
    display: block;
    width: 100%;
    padding: 12px var(--space-md);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--accent-secondary);
    box-shadow: 0 0 0 3px rgba(24, 181, 160, 0.1);
    outline: none;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b8aab' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.form-checkbox {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--accent-secondary);
}

.form-checkbox-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.form-checkbox-label a {
    color: var(--accent-secondary);
}

/* Contact Info */
.contact-info-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-item h3 {
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.contact-info-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-faq {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-faq h3 {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.contact-faq ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-faq a {
    font-size: 0.85rem;
    color: var(--accent-secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.hidden {
    display: none !important;
}

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