/* ================================================
   ExploreTid Online - Cyber/Digital Theme CSS
   Unique futuristic design with electric blues & neon accents
   ================================================ */

/* === CSS Variables === */
:root {
    /* Color Palette - Cyber/Digital Theme */
    --electric-blue: #00D4FF;
    --deep-purple: #6B2E9A;
    --neon-pink: #FF006E;
    --cyber-cyan: #00FFF5;
    --dark-navy: #0A0E27;
    --midnight: #050816;
    --slate-gray: #1E2447;
    --light-gray: #E8EEF7;
    --text-white: #FFFFFF;
    --text-light: #C5D3E8;
    --text-muted: #8893A8;
    
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Orbitron', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-xxl: 6rem;
    
    /* Layout */
    --max-width: 1200px;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(0, 212, 255, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 212, 255, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 212, 255, 0.2);
    --glow-blue: 0 0 20px rgba(0, 212, 255, 0.5);
    --glow-pink: 0 0 20px rgba(255, 0, 110, 0.5);
}

/* === Global Reset === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background: var(--midnight);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background Grid */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(0, 212, 255, 0.05) 25%, rgba(0, 212, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 212, 255, 0.05) 75%, rgba(0, 212, 255, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(0, 212, 255, 0.05) 25%, rgba(0, 212, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 212, 255, 0.05) 75%, rgba(0, 212, 255, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    z-index: -1;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
}

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

p {
    margin-bottom: var(--space-sm);
}

a {
    color: var(--electric-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--cyber-cyan);
}

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

/* === Navigation === */
.navbar {
    background: rgba(5, 8, 22, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--electric-blue);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-sm) var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
}

.logo-text {
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--electric-blue);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-sm);
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-light);
    padding: var(--space-xs) var(--space-md);
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--electric-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-white);
    background: rgba(0, 212, 255, 0.1);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 70%;
}

/* === Age Verification Modal === */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 22, 0.95);
    backdrop-filter: blur(12px);
}

.age-modal-box {
    position: relative;
    background: linear-gradient(135deg, var(--dark-navy), var(--slate-gray));
    border: 3px solid var(--electric-blue);
    border-radius: var(--border-radius);
    padding: var(--space-xl);
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--glow-blue);
    animation: modalZoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalZoomIn {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.age-modal-header {
    margin-bottom: var(--space-md);
}

.age-icon {
    font-size: 4rem;
    margin-bottom: var(--space-sm);
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.age-modal-box h2 {
    font-family: var(--font-accent);
    color: var(--electric-blue);
    margin-bottom: var(--space-sm);
}

.age-modal-body p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: var(--space-lg);
}

.age-modal-footer {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-md);
}

.btn-confirm,
.btn-decline {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-confirm {
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-cyan));
    color: var(--dark-navy);
    box-shadow: var(--glow-blue);
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.6);
}

.btn-decline {
    background: transparent;
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
}

.btn-decline:hover {
    background: rgba(255, 0, 110, 0.1);
    box-shadow: var(--glow-pink);
}

.age-modal-note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.age-modal-note a {
    color: var(--electric-blue);
    text-decoration: underline;
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--space-xxl) 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(5, 8, 22, 0.9) 0%,
        rgba(10, 14, 39, 0.85) 50%,
        rgba(107, 46, 154, 0.3) 100%
    );
    z-index: 1;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(0, 212, 255, 0.05) 3px,
            rgba(0, 212, 255, 0.05) 4px
        );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--space-md);
}

.hero-title {
    font-family: var(--font-accent);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--text-white), var(--electric-blue), var(--cyber-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
    animation: titleFloat 3s ease-in-out infinite;
}

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

.hero-text {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* === Buttons === */
.btn-primary,
.btn-secondary,
.btn-game,
.btn-submit {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}

.btn-primary,
.btn-game,
.btn-submit {
    background: linear-gradient(135deg, var(--electric-blue), var(--deep-purple));
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover,
.btn-game:hover,
.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--electric-blue);
    color: var(--electric-blue);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: var(--glow-blue);
}

/* === Page Header === */
.page-header {
    background: linear-gradient(135deg, var(--dark-navy), var(--slate-gray));
    border-bottom: 3px solid var(--electric-blue);
    padding: var(--space-xl) 0 var(--space-lg);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.page-header h1 {
    font-family: var(--font-accent);
    margin-bottom: var(--space-sm);
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* === Disclaimer Notice === */
.disclaimer-notice {
    padding: var(--space-lg) 0;
}

.notice-box {
    background: linear-gradient(135deg, var(--dark-navy), var(--slate-gray));
    border: 2px solid var(--neon-pink);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    box-shadow: var(--shadow-md);
}

.notice-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.notice-content h3 {
    color: var(--neon-pink);
    margin-bottom: var(--space-sm);
}

.notice-content p {
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.notice-link {
    color: var(--electric-blue);
    font-weight: 600;
    transition: var(--transition);
}

.notice-link:hover {
    color: var(--cyber-cyan);
    text-decoration: underline;
}

/* === Game Showcase === */
.game-showcase {
    padding: var(--space-xxl) 0;
}

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

.section-header h2 {
    font-family: var(--font-accent);
    margin-bottom: var(--space-sm);
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.game-display {
    max-width: 900px;
    margin: 0 auto;
}

.game-container {
    background: linear-gradient(135deg, var(--dark-navy), var(--slate-gray));
    border: 3px solid var(--electric-blue);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    box-shadow: var(--glow-blue);
}

.game-wrapper {
    position: relative;
    
    aspect-ratio: 16 / 9;
    max-width: 960px;
    max-height: 600px;
    background: var(--midnight);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.game-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

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

.game-info h3 {
    color: var(--electric-blue);
    margin-bottom: var(--space-sm);
}

.game-info p {
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

/* === Game Page === */
.game-page {
    padding: var(--space-xl) 0;
}

.game-fullscreen {
    max-width: 900px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--dark-navy), var(--slate-gray));
    border: 3px solid var(--electric-blue);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    box-shadow: var(--glow-blue);
}

.game-details {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--slate-gray), var(--dark-navy));
    border: 2px solid var(--deep-purple);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
}

.game-details h2 {
    color: var(--electric-blue);
    margin-bottom: var(--space-md);
}

.game-features {
    margin-top: var(--space-md);
}

.game-feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.feature-bullet {
    color: var(--electric-blue);
    font-size: 1.5rem;
    line-height: 1;
}

/* === Features Section === */
.features {
    padding: var(--space-xxl) 0;
    background: linear-gradient(180deg, transparent, rgba(107, 46, 154, 0.05), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.feature-card {
    background: linear-gradient(135deg, var(--dark-navy), var(--slate-gray));
    border: 2px solid var(--electric-blue);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow-blue);
    border-color: var(--cyber-cyan);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    display: block;
}

.feature-card h3 {
    color: var(--electric-blue);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* === Reviews Section === */
.reviews {
    padding: var(--space-xxl) 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.review-card {
    background: linear-gradient(135deg, var(--slate-gray), var(--dark-navy));
    border: 2px solid var(--deep-purple);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 0, 110, 0.2);
    border-color: var(--neon-pink);
}

.review-stars {
    color: var(--neon-pink);
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.review-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: var(--space-md);
}

.review-author {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
}

/* === Contact Section === */
.contact-section {
    padding: var(--space-xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    color: var(--electric-blue);
    margin-bottom: var(--space-lg);
}

.contact-form {
    background: linear-gradient(135deg, var(--dark-navy), var(--slate-gray));
    border: 2px solid var(--electric-blue);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
}

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

.form-group label {
    display: block;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    background: rgba(5, 8, 22, 0.5);
    border: 2px solid var(--slate-gray);
    border-radius: 8px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: var(--glow-blue);
}

.error-message {
    color: var(--neon-pink);
    font-size: 0.875rem;
    margin-top: var(--space-xs);
    display: none;
}

.contact-info-cards {
    display: grid;
    gap: var(--space-md);
}

.info-card {
    background: linear-gradient(135deg, var(--slate-gray), var(--dark-navy));
    border: 2px solid var(--deep-purple);
    border-radius: var(--border-radius);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

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

.info-card h3 {
    color: var(--electric-blue);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.contact-note {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: rgba(0, 212, 255, 0.05);
    border-left: 4px solid var(--electric-blue);
    border-radius: 4px;
}

.contact-note p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* === Legal Content === */
.legal-content {
    padding: var(--space-xl) 0;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--dark-navy), var(--slate-gray));
    border: 2px solid var(--electric-blue);
    border-radius: var(--border-radius);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.legal-intro {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 2px solid var(--slate-gray);
}

.legal-section {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    color: var(--electric-blue);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.legal-section p {
    color: var(--text-light);
    margin-bottom: var(--space-sm);
}

.legal-section ul {
    margin: var(--space-md) 0 var(--space-md) var(--space-lg);
    color: var(--text-light);
}

.legal-section li {
    margin-bottom: var(--space-xs);
    line-height: 1.6;
}

.legal-footer {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 2px solid var(--electric-blue);
    text-align: center;
}

.legal-footer p {
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

/* === Footer === */
.footer {
    background: linear-gradient(135deg, var(--midnight), var(--dark-navy));
    border-top: 3px solid var(--electric-blue);
    padding: var(--space-xxl) 0 var(--space-md);
    margin-top: var(--space-xxl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.footer-logo-text {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-info h4 {
    color: var(--electric-blue);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--electric-blue);
    padding-left: 5px;
}

.footer-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
}

.footer-disclaimer {
    background: rgba(0, 212, 255, 0.05);
    border: 2px solid var(--electric-blue);
    border-radius: var(--border-radius);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer-disclaimer p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--slate-gray);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom .reeshtech-link {
    color: var(--electric-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom .reeshtech-link:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* === Scroll to Top Button === */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--electric-blue), var(--deep-purple));
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-blue);
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 8, 22, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: var(--space-md);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-top: 2px solid var(--electric-blue);
    }
    
    .nav-menu.active {
        max-height: 400px;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        width: 100%;
        padding: var(--space-md);
        border-bottom: 1px solid var(--slate-gray);
    }
    
    .hero {
        min-height: 500px;
        padding: var(--space-xl) 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .notice-box {
        flex-direction: column;
        text-align: center;
    }
    
    .age-modal-box {
        padding: var(--space-lg);
    }
    
    .age-modal-footer {
        flex-direction: column;
    }
    
    .btn-confirm,
    .btn-decline {
        width: 100%;
    }
}

@media (max-width: 480px) {
    :root {
        --space-xl: 3rem;
        --space-xxl: 4rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .legal-wrapper {
        padding: var(--space-md);
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* === Animations === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* === Print Styles === */
@media print {
    .navbar,
    .age-modal,
    .scroll-top,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
