/* Design System & Global Variables */
:root {
    --bg-primary: #080612;
    --bg-secondary: #120e24;
    --neon-green: #39ff14;
    --neon-green-glow: rgba(57, 255, 20, 0.3);
    --neon-pink: #ff007f;
    --neon-pink-glow: rgba(255, 0, 127, 0.3);
    --text-white: #f5f5fa;
    --text-muted: #9ea1b5;
    --glass-bg: rgba(18, 14, 38, 0.65);
    --glass-border: rgba(255, 255, 255, 0.07);
    --glass-glow: rgba(255, 255, 255, 0.02);
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

body.modal-open {
    overflow: hidden;
}

/* Starfield Canvas */
#starfield-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

/* Particle Canvas Container (legacy overlay) */
#particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #251d45;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-pink);
}

/* Common Typography & Layouts */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
    font-weight: 700;
}

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

.glow-text {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.glow-text.green {
    color: var(--neon-green);
    text-shadow: 0 0 15px var(--neon-green-glow), 0 0 30px var(--neon-green-glow);
}
.glow-text.pink {
    color: var(--neon-pink);
    text-shadow: 0 0 15px var(--neon-pink-glow), 0 0 30px var(--neon-pink-glow);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    gap: 0.5rem;
}

.primary-btn {
    background-color: var(--neon-green);
    color: #000;
    box-shadow: 0 4px 20px var(--neon-green-glow);
}
.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--neon-green-glow);
    background-color: #52ff34;
}

.secondary-btn {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}
.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--neon-pink-glow);
}

/* Announcement Bar & Scrolling Marquee */
.announcement-bar {
    background-color: #ff007f;
    background: linear-gradient(90deg, #ff007f 0%, #7c00e6 100%);
    color: var(--text-white);
    padding: 0.5rem 0;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 101;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    display: inline-block;
    margin-right: 3rem;
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Header & Navigation Styling */
header {
    position: fixed;
    top: 35px; /* Pushed down by announcement bar */
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
    background-color: rgba(8, 6, 18, 0.7);
    backdrop-filter: blur(15px);
    transition: var(--transition);
}

header.scrolled {
    top: 0;
    padding: 0.5rem 0;
    background-color: rgba(8, 6, 18, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--neon-green-glow));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 1.75rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.25rem 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--neon-green);
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}
.nav-link.active::after, .nav-link:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-btn {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(5px);
}
.cta-btn:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 15px var(--neon-green-glow);
    color: var(--neon-green);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-white);
}

/* Mobile Nav Styling */
.mobile-nav {
    position: fixed;
    top: 113px; /* Shifted for header + announcement */
    left: -100%;
    width: 100%;
    height: calc(100vh - 113px);
    background-color: rgba(8, 6, 18, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav.open {
    left: 0;
}
.mobile-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
}
.mobile-link:hover {
    color: var(--neon-green);
}
.mobile-cta {
    background-color: var(--neon-green);
    color: #000;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px var(--neon-green-glow);
}

/* Age Gate Modal Styling */
.age-gate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(5, 4, 10, 0.95);
    backdrop-filter: blur(25px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.age-gate-modal.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.age-gate-content {
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 50px rgba(255, 0, 127, 0.1), 0 0 100px rgba(57, 255, 20, 0.05);
    border-radius: 30px;
    max-width: 550px;
    width: 100%;
    padding: 4rem 3rem;
    text-align: center;
    animation: scaleUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleUp {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-logo {
    height: 80px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px var(--neon-green));
}

.age-gate-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--neon-pink);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--neon-pink-glow);
}

.age-gate-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.age-gate-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-gate-buttons .btn {
    min-width: 180px;
}

.age-gate-footer {
    margin-top: 3rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    font-size: 0.75rem;
    color: rgba(158, 161, 181, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 160px 2rem 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1.2;
    z-index: 10;
}

.badge {
    display: inline-block;
    background-color: rgba(255, 0, 127, 0.1);
    border: 1px solid rgba(255, 0, 127, 0.2);
    color: var(--neon-pink);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-section h1 {
    font-size: 3.75rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 580px;
}

.hero-btns {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.portal-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
}

.portal-core {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, #05040a 20%, #161033 40%, var(--neon-pink) 70%, var(--neon-green) 100%);
    box-shadow: 0 0 40px var(--neon-green-glow), 0 0 80px var(--neon-pink-glow), inset 0 0 50px rgba(0,0,0,0.8);
    animation: swirl 12s linear infinite;
    background-size: 150% 150%;
    background-image: url('cosmic_portal_bg.png');
}

.ufo-model {
    position: absolute;
    top: -40px;
    left: 80px;
    font-size: 3.5rem;
    filter: drop-shadow(0 0 15px var(--neon-green));
    animation: float 6s ease-in-out infinite;
}

.ufo-beam {
    position: absolute;
    top: 40px;
    left: 18px;
    width: 20px;
    height: 300px;
    background: linear-gradient(to bottom, rgba(57, 255, 20, 0.4), rgba(57, 255, 20, 0));
    clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
    z-index: -1;
    transform-origin: top center;
    animation: scanBeam 6s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: var(--font-heading);
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

/* Sections Base Styling */
section {
    padding: 100px 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title .subtitle {
    color: var(--neon-green);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title h2 {
    font-size: 2.75rem;
    font-weight: 800;
}

.section-title .title-bar {
    width: 60px;
    height: 4px;
    background-color: var(--neon-green);
    margin: 1.25rem auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--neon-green-glow);
}

.section-title .title-bar.pink-bar {
    background-color: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink-glow);
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 1.5rem auto 0;
    font-size: 1.05rem;
}

/* Shop Collections Grid (Freaky's Category Style) */
.collections-section {
    max-width: 1200px;
    margin: 0 auto;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.collection-card {
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.collection-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-green);
    box-shadow: 0 12px 30px rgba(57, 255, 20, 0.08);
}

.collection-image-wrapper {
    height: 180px;
    background: linear-gradient(135deg, #100b2e 0%, #060410 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--glass-border);
}

.col-icon {
    font-size: 4rem;
    color: var(--neon-green);
    filter: drop-shadow(0 0 15px var(--neon-green-glow));
    transition: var(--transition);
}

.collection-card:hover .col-icon {
    transform: scale(1.15) rotate(-5deg);
    color: var(--neon-pink);
    filter: drop-shadow(0 0 15px var(--neon-pink-glow));
}

.collection-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.collection-info h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.collection-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    flex-grow: 1;
}

.product-buy-btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.7rem 1.25rem;
    background-color: transparent;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    border-radius: 20px;
    margin-top: auto;
}

.collection-card:hover .product-buy-btn {
    background-color: var(--neon-green);
    color: #000;
    box-shadow: 0 4px 15px var(--neon-green-glow);
}

/* Gallery Section (Masonry original photo gallery) */
.gallery-section {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(8, 6, 18, 0.9) 0%, rgba(8, 6, 18, 0) 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
}

.gallery-item-overlay span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green-glow);
}

.gallery-item:hover {
    transform: scale(1.03);
    border-color: var(--neon-pink);
    box-shadow: 0 10px 25px rgba(255, 0, 127, 0.15);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
    transform: translateY(0);
}



/* About Section (The Abduction Connection) */
.about-section {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

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

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neon-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.forest-glow-box {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 320px;
    border-radius: 24px;
    background: linear-gradient(180deg, #100a26 0%, #060410 100%);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 2rem;
}

.forest-glow-box::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: var(--neon-pink);
    filter: blur(60px);
    opacity: 0.35;
    animation: pulseGlow 4s ease-in-out infinite;
}

.trees-bg {
    font-size: 4rem;
    letter-spacing: -10px;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.ufo-glow {
    position: absolute;
    top: 35%;
    font-size: 5rem;
    filter: drop-shadow(0 0 20px var(--neon-pink));
    animation: float2 5s ease-in-out infinite;
    z-index: 2;
}

/* Newsletter Section */
.newsletter-section {
    background-color: #06040d;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 60px 2rem;
}

.newsletter-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.newsletter-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--neon-green);
}

.newsletter-info p {
    color: var(--text-muted);
    font-weight: 300;
    max-width: 500px;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex: 1;
    min-width: 320px;
}

.newsletter-form input {
    flex: 1;
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 0.85rem 1.5rem;
    color: var(--text-white);
    font-family: var(--font-main);
    font-size: 0.95rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink-glow);
}

/* Coordinates & Contact Section */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.75rem;
    color: var(--neon-green);
    background-color: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.15);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px var(--neon-green-glow);
}

.contact-text h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 300;
}

.contact-text a:hover {
    color: var(--neon-green);
}

.contact-card-vibe {
    display: flex;
    align-items: center;
}

.neon-border-box {
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.01);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    width: 100%;
}

.neon-border-box::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-green));
    z-index: -1;
    opacity: 0.3;
}

.neon-border-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-pink);
}

.neon-border-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

.earth-map-placeholder {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--neon-green);
}

.earth-map-placeholder i {
    font-size: 1.5rem;
    animation: rotate 10s linear infinite;
}

.earth-map-placeholder span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Text-to-Inquire Order Modal */
.inquire-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(5, 4, 10, 0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.inquire-modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.inquire-modal-content {
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.1);
    max-width: 500px;
    width: 100%;
    padding: 3rem;
    text-align: center;
    position: relative;
    animation: scaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.close-inquire-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}
.close-inquire-modal:hover {
    color: var(--neon-pink);
}

.inquire-modal-content h3 {
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.inquire-modal-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.inquire-details {
    display: flex;
    justify-content: center;
}

.inquire-details .btn {
    width: 100%;
}

/* Floating Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--glass-bg);
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--neon-pink-glow);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 98;
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background-color: var(--neon-pink);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px var(--neon-pink);
}

/* Footer styling */
footer {
    border-top: 1px solid var(--glass-border);
    background-color: #05040a;
    padding: 5rem 2rem 2.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 48px;
    filter: drop-shadow(0 0 8px var(--neon-green-glow));
}

.footer-logo h3 {
    font-size: 1.6rem;
    font-weight: 800;
}

.disclaimer {
    color: rgba(158, 161, 181, 0.5);
    font-size: 0.8rem;
    max-width: 700px;
    line-height: 1.5;
    margin-bottom: 2.5rem;
}

.copyright {
    color: rgba(158, 161, 181, 0.3);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    width: 100%;
    padding-top: 2rem;
}

/* Animations */
@keyframes swirl {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float2 {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
    100% { transform: translateY(0px) scale(1); }
}

@keyframes scanBeam {
    0% { transform: skewX(-5deg) scaleX(0.9); }
    50% { transform: skewX(5deg) scaleX(1.1); }
    100% { transform: skewX(-5deg) scaleX(0.9); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.35; filter: blur(60px); }
    50% { opacity: 0.5; filter: blur(75px); }
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 180px;
        gap: 3rem;
    }
    .hero-subtitle {
        margin: 0 auto 2rem;
    }
    .hero-btns {
        justify-content: center;
    }
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-visual {
        order: -1;
    }
    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }
    .newsletter-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu, .cta-btn {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .hero-section h1 {
        font-size: 2.75rem;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .neon-border-box {
        padding: 1.5rem;
    }
    .age-gate-content {
        padding: 2.5rem 1.5rem;
    }
    .age-gate-content h2 {
        font-size: 1.4rem;
    }
}



