/* =========================================
   albionjoyspin.co.uk - Main Stylesheet
   A UK-oriented virtual entertainment platform
   ========================================= */

/* CSS Variables */
:root {
    --bg-primary: #060812;
    --bg-secondary: #0a0e1a;
    --bg-card: #0d1220;
    --bg-card-alt: #111827;

    --neon-cyan: #00f5d4;
    --neon-magenta: #ff00ff;
    --neon-pink: #ff2d95;
    --neon-yellow: #f5d300;
    --neon-green: #00ff88;
    --neon-blue: #00d4ff;

    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #64748b;

    --border-glow: rgba(0, 245, 212, 0.3);
    --border-glow-pink: rgba(255, 0, 255, 0.3);

    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-neon-cyan: 0 0 20px rgba(0, 245, 212, 0.5), 0 0 40px rgba(0, 245, 212, 0.3);
    --shadow-neon-magenta: 0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3);
    --shadow-neon-yellow: 0 0 20px rgba(245, 211, 0, 0.5), 0 0 40px rgba(245, 211, 0, 0.3);

    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--bg-secondary), rgba(10, 14, 26, 0.98));
    border-top: 1px solid var(--neon-cyan);
    padding: 20px;
    z-index: 10000;
    transform: translateY(0);
    transition: transform var(--transition-medium);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.cookie-btn.accept {
    background: var(--neon-cyan);
    color: var(--bg-primary);
}

.cookie-btn.accept:hover {
    background: #00d4b8;
    box-shadow: var(--shadow-neon-cyan);
}

.cookie-btn.learn {
    background: transparent;
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
}

.cookie-btn.learn:hover {
    background: rgba(0, 245, 212, 0.1);
}

/* =========================================
   NAVIGATION
   ========================================= */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(6, 8, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 245, 212, 0.2);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: flex;
}

.logo-text {
    background: linear-gradient(90deg, var(--neon-yellow) 0%, var(--neon-yellow) 50%, var(--neon-magenta) 50%, var(--neon-magenta) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(245, 211, 0, 0.3), 0 0 10px rgba(255, 0, 255, 0.3);
    filter: drop-shadow(0 0 5px rgba(245, 211, 0, 0.5)) drop-shadow(0 0 5px rgba(255, 0, 255, 0.5));
}

.logo-primary {
    color: var(--neon-yellow);
    text-shadow: 0 0 10px rgba(245, 211, 0, 0.5);
}

.logo-secondary {
    color: var(--neon-magenta);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.nav-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 16px;
    border: 2px solid var(--neon-cyan);
    border-radius: 8px;
    background: rgba(0, 245, 212, 0.1);
}

.badge-age {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--neon-cyan);
}

.badge-text {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    padding: 120px 0 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-box {
    background: var(--bg-card);
    border: 1px solid var(--neon-cyan);
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    position: relative;
    box-shadow:
        0 0 30px rgba(0, 245, 212, 0.1),
        inset 0 0 60px rgba(0, 245, 212, 0.02);
}

.hero-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-cyan), transparent, var(--neon-magenta), transparent, var(--neon-cyan));
    border-radius: 18px;
    z-index: -1;
    opacity: 0.5;
    animation: borderGlow 4s linear infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.glow-text {
    color: var(--neon-magenta);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.notice-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.1), rgba(255, 0, 255, 0.05));
    border: 1px solid rgba(0, 245, 212, 0.4);
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 35px;
    text-align: left;
}

.notice-icon {
    font-size: 1.5rem;
    color: var(--neon-yellow);
    text-shadow: 0 0 10px rgba(245, 211, 0, 0.5);
    flex-shrink: 0;
}

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

.notice-highlight {
    color: var(--neon-yellow);
    text-shadow: 0 0 8px rgba(245, 211, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-medium);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--neon-cyan);
    color: var(--bg-primary);
    border-color: var(--neon-cyan);
}

.btn-primary:hover {
    background: transparent;
    color: var(--neon-cyan);
    box-shadow: var(--shadow-neon-cyan);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--neon-magenta);
    color: var(--text-primary);
    border-color: var(--neon-magenta);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--neon-magenta);
    box-shadow: var(--shadow-neon-magenta);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
}

.btn-outline:hover {
    background: rgba(0, 245, 212, 0.1);
    box-shadow: var(--shadow-neon-cyan);
    transform: translateY(-2px);
}

/* =========================================
   EXPERIENCE SECTION
   ========================================= */
.experience-section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    text-align: center;
    color: var(--neon-magenta);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
    margin-bottom: 50px;
    letter-spacing: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.1), transparent);
    padding: 15px 0;
    border-radius: 8px;
}

.bolt {
    color: var(--neon-yellow);
    text-shadow: 0 0 15px rgba(245, 211, 0, 0.6);
}

.experience-grid {
    display: flex;
    justify-content: center;
}

.experience-card {
    background: var(--bg-card);
    border: 1px solid var(--neon-magenta);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    position: relative;
    transition: var(--transition-medium);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.1);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 50px rgba(255, 0, 255, 0.2);
}

.card-icon {
    color: var(--neon-cyan);
    margin-bottom: 20px;
}

.card-icon svg {
    filter: drop-shadow(0 0 10px rgba(0, 245, 212, 0.5));
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--neon-magenta);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.card-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.btn-launch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--neon-pink);
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-medium);
}

.btn-launch:hover {
    background: var(--neon-magenta);
    box-shadow: var(--shadow-neon-magenta);
    transform: scale(1.05);
}

/* =========================================
   FEATURES SECTION
   ========================================= */
.features-section {
    padding: 80px 0;
}

.features-box {
    background: var(--bg-card);
    border: 1px solid var(--neon-cyan);
    border-radius: 16px;
    padding: 50px;
    box-shadow:
        0 0 30px rgba(0, 245, 212, 0.1),
        inset 0 0 60px rgba(0, 245, 212, 0.02);
}

.section-title-alt {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    text-align: center;
    color: var(--neon-magenta);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    text-align: left;
}

.feature-icon {
    color: var(--neon-yellow);
    margin-bottom: 15px;
}

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

.feature-icon.uk-flag {
    width: 48px;
    height: 48px;
    border: 2px solid var(--neon-yellow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--neon-yellow);
    text-shadow: 0 0 8px rgba(245, 211, 0, 0.5);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--neon-cyan);
    margin-bottom: 12px;
    text-shadow: 0 0 8px rgba(0, 245, 212, 0.3);
}

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

/* =========================================
   INFO SECTION
   ========================================= */
.info-section {
    padding: 80px 0;
}

.info-box {
    background: var(--bg-card);
    border: 1px solid var(--neon-magenta);
    border-radius: 16px;
    padding: 40px 50px;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.1);
}

.info-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neon-magenta);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.info-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

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

/* =========================================
   SUPPORT SECTION
   ========================================= */
.support-section {
    padding: 80px 0;
    border-top: 1px solid rgba(0, 245, 212, 0.1);
}

.support-title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    text-align: center;
    color: var(--neon-magenta);
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
    margin-bottom: 10px;
}

.support-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
}

.support-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 245, 212, 0.3);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-medium);
}

.support-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.2);
    transform: translateY(-3px);
}

.support-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.support-icon.shield {
    color: var(--neon-blue);
}

.support-icon.heart {
    color: var(--neon-green);
}

.support-icon.stop {
    color: var(--neon-pink);
}

.support-icon svg {
    filter: drop-shadow(0 0 8px currentColor);
}

.support-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--neon-cyan);
    margin-bottom: 6px;
}

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

/* =========================================
   FOOTER
   ========================================= */
.main-footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(0, 245, 212, 0.2);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(0, 245, 212, 0.3);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px rgba(0, 245, 212, 0.3);
}

.footer-notice {
    color: var(--neon-magenta);
    font-size: 0.85rem;
    margin-bottom: 10px;
    text-shadow: 0 0 8px rgba(255, 0, 255, 0.3);
}

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

.footer-bottom {
    border-top: 1px solid rgba(0, 245, 212, 0.1);
    padding-top: 30px;
    text-align: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.disclaimer {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

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

.bolt-small {
    color: var(--neon-yellow);
    text-shadow: 0 0 6px rgba(245, 211, 0, 0.5);
}

/* =========================================
   MODAL
   ========================================= */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 8, 18, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    border: 2px solid var(--neon-magenta);
    border-radius: 20px;
    padding: 50px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-medium);
    box-shadow:
        0 0 50px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.05);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
}

.modal-close:hover {
    color: var(--neon-pink);
}

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

.game-demo-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-magenta);
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
}

.game-display {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.reel {
    width: 80px;
    height: 100px;
    background: var(--bg-secondary);
    border: 2px solid var(--neon-cyan);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(0, 245, 212, 0.1);
}

.symbol {
    font-size: 2.5rem;
    color: var(--neon-yellow);
    text-shadow: 0 0 15px rgba(245, 211, 0, 0.6);
    transition: var(--transition-fast);
}

.reel.spinning .symbol {
    animation: spinSymbol 0.1s linear infinite;
}

@keyframes spinSymbol {
    0% { transform: translateY(-20px); opacity: 0; }
    50% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

.game-notice {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 25px;
    font-style: italic;
}

.btn-demo {
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: var(--bg-primary);
    border: none;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-medium);
}

.btn-demo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-neon-cyan);
}

.btn-demo:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* =========================================
   PAGE-SPECIFIC STYLES
   ========================================= */
.page-hero {
    padding: 120px 0 60px;
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--neon-magenta);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
    margin-bottom: 15px;
}

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

.content-section {
    padding: 60px 0;
}

.content-box {
    background: var(--bg-card);
    border: 1px solid rgba(0, 245, 212, 0.3);
    border-radius: 16px;
    padding: 40px 50px;
}

.content-box h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    margin-top: 40px;
    text-shadow: 0 0 10px rgba(0, 245, 212, 0.3);
}

.content-box h2:first-child {
    margin-top: 0;
}

.content-box h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neon-magenta);
    margin-bottom: 15px;
    margin-top: 30px;
}

.content-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-box ul {
    margin: 15px 0;
    padding-left: 25px;
}

.content-box li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 8px;
    position: relative;
}

.content-box li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--neon-cyan);
}

.content-box a {
    color: var(--neon-cyan);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.content-box a:hover {
    color: var(--neon-magenta);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neon-cyan);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 245, 212, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 245, 212, 0.2);
}

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

.form-submit {
    padding: 16px 40px;
    background: var(--neon-cyan);
    color: var(--bg-primary);
    border: none;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-medium);
}

.form-submit:hover {
    background: transparent;
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.4);
    border: 2px solid var(--neon-cyan);
}

/* FAQ Accordion */
.faq-item {
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 245, 212, 0.2);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--neon-cyan);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: rgba(0, 245, 212, 0.05);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--neon-magenta);
    transition: var(--transition-fast);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Back to Home */
.back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-cyan);
    font-size: 0.9rem;
    margin-bottom: 30px;
    transition: var(--transition-fast);
}

.back-home:hover {
    color: var(--neon-magenta);
    transform: translateX(-5px);
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 768px) {
    .hero-box {
        padding: 30px 20px;
    }

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

    .features-box {
        padding: 30px 20px;
    }

    .info-box {
        padding: 30px 25px;
    }

    .content-box {
        padding: 30px 25px;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .reel {
        width: 60px;
        height: 80px;
    }

    .symbol {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 245, 212, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 245, 212, 0.5); }
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

/* Smooth Scroll Offset for Fixed Header */
html {
    scroll-padding-top: 80px;
}

/* Selection Color */
::selection {
    background: var(--neon-cyan);
    color: var(--bg-primary);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-cyan);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-magenta);
}
