/* CSS Design System for Corona "Living is Calling" */

:root {
    --corona-blue: #004b76;
    --corona-blue-dark: #02253a;
    --corona-gold: #f1d479;
    --corona-gold-hover: #fae29c;
    --corona-orange: #f09054;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(4, 21, 37, 0.45);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: rgba(0, 0, 0, 0.3);
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    font-family: var(--font-primary);
    background-color: var(--corona-blue-dark);
}

body {
    background-image: url('bg2026.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--corona-blue-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(241, 212, 121, 0.2);
    border-radius: 50%;
    border-top-color: var(--corona-gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Visually Hidden for SEO */
.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;
}

/* Header Styles */
.header {
    width: 100%;
    padding: 2.5rem 4rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 10;
    position: relative;
}

.sound-button {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    color: var(--text-white);
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sound-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--corona-gold);
    box-shadow: 0 0 15px rgba(241, 212, 121, 0.3);
    transform: translateY(-2px);
}

.sound-button:active {
    transform: translateY(0);
}

.sound-icon-container {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    width: 18px;
    height: 12px;
}

.bar {
    width: 2px;
    height: 100%;
    background-color: var(--corona-gold);
    border-radius: 2px;
    transform: scaleY(0.3);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

/* Equalizer bounce animation */
.sound-button.playing .bar {
    transform: scaleY(1);
}

.sound-button.playing .bar-1 { animation: bounce 0.8s ease-in-out infinite alternate; }
.sound-button.playing .bar-2 { animation: bounce 1.1s ease-in-out infinite alternate; }
.sound-button.playing .bar-3 { animation: bounce 0.9s ease-in-out infinite alternate; }
.sound-button.playing .bar-4 { animation: bounce 1.2s ease-in-out infinite alternate; }

@keyframes bounce {
    0% { transform: scaleY(0.2); }
    100% { transform: scaleY(1.1); }
}

/* Main Layout */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem 1rem 2rem; /* Reduced bottom padding from 4rem to 1rem to gain substantial vertical height */
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    z-index: 5;
    position: relative;
}

/* Brand Image Section */
.brand-image-wrapper {
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    perspective: 1000px;
}

.brand-image {
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
    pointer-events: none;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

/* Floating Micro-animation */
.animate-float {
    animation: float 7s ease-in-out infinite;
}

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

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 50px var(--glass-shadow);
}

.interactive-panel {
    width: 100%;
    max-width: 580px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    animation: fadeIn 1.5s ease-out;
}

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

/* Countdown Section */
.countdown-section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.countdown-title {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--corona-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.countdown-item:hover {
    border-color: rgba(241, 212, 121, 0.4);
    background: rgba(255, 255, 255, 0.07);
}

.countdown-item .number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-white);
    line-height: 1;
}

.countdown-item .label {
    font-family: var(--font-secondary);
    font-size: 0.65rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* Signup Section */
.signup-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.signup-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 300;
}

.signup-form {
    width: 100%;
}

.form-group {
    display: flex;
    width: 100%;
    position: relative;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group:focus-within {
    border-color: var(--corona-gold);
    box-shadow: 0 0 15px rgba(241, 212, 121, 0.25);
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.75rem 1.5rem;
    color: var(--text-white);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 400;
    width: 100%;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.submit-button {
    background: var(--corona-gold);
    color: var(--corona-blue-dark);
    border: none;
    outline: none;
    padding: 0 1.5rem;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-button:hover {
    background: var(--corona-gold-hover);
    transform: scale(1.03);
}

.submit-button:active {
    transform: scale(0.98);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.submit-button:hover .arrow-icon {
    transform: translateX(3px);
}

.btn-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(4, 21, 37, 0.2);
    border-radius: 50%;
    border-top-color: var(--corona-blue-dark);
    animation: spin 0.6s linear infinite;
}

.form-feedback {
    font-size: 0.8rem;
    margin-top: 0.75rem;
    min-height: 1.2rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.form-feedback.success {
    color: #a8ffb2;
    text-shadow: 0 0 10px rgba(168, 255, 178, 0.3);
}

.form-feedback.error {
    color: #ff9191;
    text-shadow: 0 0 10px rgba(255, 145, 145, 0.3);
}

/* Footer Section */
.footer {
    width: 100%;
    padding: 1.25rem 2rem 1.5rem 2rem; /* Reduced vertical padding significantly (from 3rem/4rem to 1.25rem/1.5rem) to fit layout inside one screen */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem; /* Reduced gap from 1.5rem to 0.75rem */
    z-index: 10;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(to top, rgba(4, 21, 37, 0.6), transparent);
}

.legal-disclaimer {
    font-family: var(--font-secondary);
    font-size: 0.7rem; /* Sutilly reduced from 0.8rem to 0.7rem on desktop for highly compact height */
    font-weight: 500;
    line-height: 1.45; /* Sutilly tighter line-height to reduce paragraph height */
    width: 92%; /* Fluid percentage width for maximum screen adaptiveness */
    max-width: 1280px; /* Expand wider on laptop and large desktop monitors to reduce vertical height */
    margin: 0 auto 0.35rem; /* Reduced bottom margin between paragraphs to save vertical space */
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.85); /* Highly legible off-white to prevent visual fatigue */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8); /* Maintain contrast over backdrops */
    text-align: center;
    text-transform: uppercase; /* Render entire legal block in uppercase */
}

.legal-disclaimer:last-child {
    margin-bottom: 0;
}

.mobile-only {
    display: none !important;
}

.desktop-only {
    display: block;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--text-muted);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    color: var(--corona-gold);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(241, 212, 121, 0.3);
    transform: translateY(-3px);
}

.social-icon {
    width: 18px;
    height: 18px;
}

.footer-credits {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
    font-weight: 300;
}

/* Responsive Breakpoints */

/* Desktop Extra large and custom scaling */
@media (min-width: 1200px) {
    body {
        /* On wide desktop, the background can have a smooth frame */
    }
}

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
    .header {
        padding: 2rem 2.5rem;
    }
    .footer {
        padding: 2.5rem 2.5rem 3rem 2.5rem;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    body {
        position: relative !important; /* Restore relative flow to allow natural page scrolling */
        width: 100% !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        overflow-x: hidden !important;
        overflow-y: auto !important; /* Enable natural scroll on mobile */
        background-image: url('bg-mobile.jpg'); /* Dedicated 1080x1920 mobile background! */
        background-size: cover; /* Proportional scaling - NO stretching! */
        background-attachment: fixed; /* Keep background image fixed while content scrolls over it */
        background-position: center center;
    }

    /* Side Stripes Overlay on Mobile - Hidden since bg-mobile is already custom vertical */
    .mobile-stripe,
    .desktop-right-stripe {
        display: none !important;
    }

    .age-gate-wrapper {
        gap: 0.8rem; /* Highly optimized gap for tight screen spacing */
    }

    .brand-logo {
        max-width: 285px; /* Sized exactly like the reference screenshot for premium mobile presence */
        width: 75%; /* Balanced proportions on mobile screens */
        margin-top: 1.75rem; /* Increased by 20px (1.25rem) to sit even more comfortably below status bars and notches */
    }

    /* Completely hide sun-layer on mobile to free up valuable vertical space, since bg-mobile already includes the sun */
    .sun-layer {
        display: none !important;
    }

    .age-gate-text {
        max-width: 270px; /* Aligned with the proportion in the reference */
        margin-top: 4.5rem; /* Standardized, elegant vertical gap between logo and question, matching the reference */
    }

    .age-gate-buttons {
        gap: 1.25rem;
        flex-direction: row; /* Force side-by-side on mobile */
        max-width: 320px;
    }

    .btn-age {
        background: none;
        border: none;
        padding: 0;
        min-width: unset;
        height: auto;
    }

    .btn-img {
        max-width: 130px;
    }

    .header {
        padding: 1.5rem;
        justify-content: center;
    }

    .sound-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.65rem;
    }

    .main-content {
        padding: 3rem 1rem 1.5rem 1rem; /* Generous top padding to clear status bars and notches while matching mockup height */
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* Flow from top naturally to prevent top cutoff when content exceeds viewport */
        align-items: center;
    }

    .brand-image-wrapper {
        max-width: 320px;
        margin-bottom: 0;
    }

    .interactive-panel {
        padding: 1.75rem 1.5rem;
        gap: 1.75rem;
        border-radius: 20px;
    }

    .countdown-title {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
    }

    .countdown-container {
        gap: 0.5rem;
    }

    .countdown-item {
        padding: 0.75rem 0.25rem;
        border-radius: 12px;
    }

    .countdown-item .number {
        font-size: 1.5rem;
    }

    .countdown-item .label {
        font-size: 0.55rem;
        letter-spacing: 0.05em;
    }

    .signup-text {
        font-size: 0.8rem;
    }

    .form-group {
        flex-direction: column;
        background: transparent;
        border: none;
        gap: 0.75rem;
        padding: 0;
    }

    .form-group:focus-within {
        box-shadow: none;
    }

    .email-input {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid var(--glass-border);
        border-radius: 50px;
        padding: 0.9rem 1.5rem;
        text-align: center;
    }

    .email-input:focus {
        border-color: var(--corona-gold);
        box-shadow: 0 0 15px rgba(241, 212, 121, 0.25);
    }

    .submit-button {
        padding: 0.9rem;
        justify-content: center;
        width: 100%;
    }

    .footer {
        padding: 0 0.8rem 1rem 0.8rem; /* snug layout fitting above the bottom waves */
        gap: 0;
        border-top: none !important; /* No top border line on mobile */
        background: none !important; /* Fully transparent container */
        width: 100%;
        z-index: 100;
    }

    .footer-credits {
        display: none !important; /* Hide copyright text on mobile devices to save space */
    }

    .footer-legal {
        background: rgba(0, 0, 0, 0.35) !important; /* Delicate dark shadow backdrop to elevate text contrast over sea foam */
        backdrop-filter: blur(3px) !important; /* Soft focus to isolate text from moving background lines */
        -webkit-backdrop-filter: blur(3px) !important;
        padding: 0.5rem 0.8rem;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        width: 95%;
        max-width: 440px;
        margin: 0.8rem auto 0 auto;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    }

    .mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }

    .legal-disclaimer {
        font-size: 0.58rem; /* Extremely clean and snug scale to fit perfectly in 100dvh without overflow */
        letter-spacing: 0.02em;
        line-height: 1.35;
        font-weight: 500;
        color: #ffffff; /* Pure white high-contrast text color */
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.95); /* Solid text-shadow for flawless reading directly over the waves */
        margin: 0 auto 0.35rem; /* compact spacing */
        text-align: center;
        text-transform: uppercase;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .social-icon {
        width: 16px;
        height: 16px;
    }
}

/* Custom ultra-small device check */
@media (max-width: 360px) {
    .brand-logo {
        max-width: 190px; /* Reduced by 20% for optimal spacing on ultra-small devices */
    }
    
    .age-gate-text {
        max-width: 200px;
    }
    
    .btn-age {
        background: none;
        border: none;
        padding: 0;
        min-width: unset;
        height: auto;
    }
    
    .btn-img {
        max-width: 110px; /* Scaled for tiny screens like iPhone SE */
    }
}

/* ==========================================
   Age Gate Layout & Elements
   ========================================== */
.age-gate-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 865px;
    margin: 0 auto;
    gap: 1.25rem; /* Reduced for perfect vertical centering on laptop displays */
    text-align: center;
    transition: opacity 0.5s ease, transform 0.5s ease;
    will-change: transform, opacity;
}

.age-gate-wrapper.fade-out {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

/* Mobile Side Stripe Overlays (Hidden on Desktop) */
.mobile-stripe {
    display: none;
}

/* Desktop Right Stripe Overlay (Placed in Right Corner on Desktop) */
.desktop-right-stripe {
    position: fixed;
    top: 0;
    right: 20px; /* Elegant inset from the rightmost edge, exactly as in reference screenshot */
    height: 100vh;
    display: flex;
    align-items: center; /* Centered vertically */
    justify-content: center;
    z-index: 100;
    pointer-events: none; /* Ignore mouse events to let clicks pass through */
    user-select: none;
}

.desktop-right-stripe img {
    height: auto;
    max-height: 85vh; /* Keep the elegant proportions within boundaries */
    width: auto;
}

/* Brand Logo Layer */
.brand-logo {
    width: 100%;
    max-width: 480px; /* Reduced to fit comfortably on laptop and MacBook viewports */
    height: auto;
    display: block;
    margin: -8.5rem auto 0 auto; /* Pulls the logo even higher up on desktop for maximum spacious separation */
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.22)); /* Softened and tighter shadow for ultra-premium cleanliness */
    user-select: none;
    pointer-events: none;
}

/* Sun Icon Layer - Completely display none on desktop and mobile to free up vertical space and let background sun shine */
.sun-layer {
    display: none !important;
}

.sun-svg circle,
.sun-svg path {
    fill: #ffffff !important; /* Pure white sun icon exactly as reference screenshot */
}

.sun-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.85));
}

.sun-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 240, 180, 0.2) 50%, rgba(255, 240, 180, 0) 75%);
    border-radius: 50%;
    filter: blur(8px);
    z-index: -1;
}

/* Pulse glow animation for the sun */
@keyframes pulseGlow {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
    }
    50% {
        transform: scale(1.06);
        filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.95));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
    }
}

.animate-pulse-glow {
    animation: pulseGlow 4s ease-in-out infinite;
}

/* Age Gate Text Layer */
.age-gate-text {
    width: 100%;
    max-width: 420px; /* Reduced to align beautifully with the 480px logo */
    height: auto;
    display: block;
    margin: 2.5rem auto 0 auto; /* Pushes the age gate question lower down on desktop for elegant vertical spacing */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
    user-select: none;
    pointer-events: none;
}

/* Action Buttons Layer */
.age-gate-buttons {
    display: flex;
    gap: 1.5rem; /* Reduced gap between buttons on desktop to save space */
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Custom PNG Image Buttons */
.btn-age {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none; /* For anchor wrapper */
}

.btn-img {
    width: 100%;
    max-width: 170px; /* Reduced to sit perfectly inside the viewport height of a laptop */
    height: auto;
    display: block;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    user-select: none;
    pointer-events: none;
}

/* Premium Rollover Effect (Hover) for Image Silhouette */
.btn-age:hover .btn-img {
    transform: translateY(-4px) scale(1.04);
    filter: drop-shadow(0 12px 25px rgba(168, 217, 243, 0.75));
}

.btn-age:active .btn-img {
    transform: translateY(-1px) scale(0.98);
}

/* Glassmorphism Info Panels (Welcome / Restrict) */
.info-panel {
    max-width: 500px;
    width: 90%;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: panelEnter 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

@keyframes panelEnter {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.panel-title {
    font-family: var(--font-secondary);
    color: var(--corona-gold);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.panel-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-white);
    font-weight: 300;
}

.panel-btn {
    background: var(--corona-gold);
    color: var(--corona-blue-dark);
    border: none;
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(241, 212, 121, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
    align-self: center;
}

.panel-btn:hover {
    background: var(--corona-gold-hover);
    box-shadow: 0 0 20px rgba(241, 212, 121, 0.5);
    transform: translateY(-2px);
}

/* Visibility classes */
.hidden {
    display: none !important;
}

.parallax-layer {
    transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}
