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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
}

/* Hero Section with Video */
.hero-section {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 0 2rem;
    text-align: center;
}

/* Remove legacy logo sizing */
/* New smaller logo above heading */
.hero-logo { margin-bottom: 1rem; }
.hero-logo img {
    width: clamp(300px, 80vw, 1000px);
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-subtitle {
    margin-top: 0rem;
    text-align: center;
}

/* Headline stack styles */
.hero-center { max-width: 980px; }
.hero-heading {
    font-family: 'League Gothic', sans-serif;
    font-style: italic;
    font-weight: 400;
    line-height: 0.95;
    color: white;
    font-size: clamp(2.8rem, 7vw, 6rem);
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 1rem 0;
}
.hero-heading span { display: block; }
.hero-subheading {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.92);
    margin-bottom: 1.5rem;
}

/* Remove legacy launch info block (now in subheading) */
.hero-launch-info { display: none; }

.launch-date {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.booking-info {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.booking-email {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}



/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Pill CTA */
.pill-cta {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    color: #000;
    border: 1px solid rgba(255,255,255,0.95);
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}
.pill-cta:hover { transform: translateY(-1px); background: #fff; }
.pill-cta:active { transform: translateY(0); }

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .pill-cta {
        width: 100%;
        max-width: 200px;
    }
}

.text-block {
    font-family: 'League Gothic', sans-serif;
    font-style: italic;
    text-transform: uppercase;
    color: white;
    line-height: 0.8;
    transition: transform 0.1s ease-out;
    overflow: hidden;
    position: relative;
    width: 50%;
}

.text-block-inner {
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
}

.text-block.revealed .text-block-inner {
    transform: translateY(0%);
}

.text-block-ooh {
    font-size: clamp(20rem, 32vw, 25rem);
    align-self: flex-start;
    font-style: normal;
    margin-left: 0;
}

.text-block-lala {
    font-size: clamp(20rem, 32vw, 25rem);
    align-self: flex-end;
    margin-right: 0;
    margin-top: -2rem;
}

/* Section 2 */
.section-2 {
    width: 100vw;
    height: 100vh;
    position: relative;
    background: white;
    display: none; /* Hidden until needed later */
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section-2-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-template-rows: 1fr;
    mix-blend-mode: overlay;
}

/* Responsive Gradient Background */
.gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(20vmin);
    animation: float 10s ease-in-out infinite;
}

/* Individual Gradient Blobs - Responsive Positioning */
.gradient-blob-1 {
    width: 45vw;
    height: 40vh;
    left: 60vw;
    top: 15vh;
    background: #FFF000;
    animation-delay: 0s;
}

.gradient-blob-2 {
    width: 40vw;
    height: 35vh;
    left: 15vw;
    top: 60vh;
    background: #FA70FA;
    animation-delay: -2s;
}

.gradient-blob-3 {
    width: 50vw;
    height: 45vh;
    left: -15vw;
    top: 45vh;
    background: #B570FA;
    animation-delay: -4s;
}

.gradient-blob-4 {
    width: 55vw;
    height: 50vh;
    left: -10vw;
    top: -5vh;
    background: #FACC70;
    animation-delay: -1s;
}

.gradient-blob-5 {
    width: 60vw;
    height: 40vh;
    left: 40vw;
    top: -10vh;
    background: #70BCFA;
    animation-delay: -3s;
}

.gradient-blob-6 {
    width: 35vw;
    height: 30vh;
    left: 70vw;
    top: 65vh;
    background: #FA709E;
    animation-delay: -5s;
}

.gradient-blob-7 {
    width: 45vw;
    height: 40vh;
    left: 45vw;
    top: 75vh;
    background: #A8F5F4;
    animation-delay: -6s;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(2vw, -1vh) scale(1.05);
    }
    50% {
        transform: translate(-1vw, 2vh) scale(0.95);
    }
    75% {
        transform: translate(1vw, 1vh) scale(1.02);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 90vw;
}

/* Typography */
.hero-title {
    font-family: 'League Gothic', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.gradient-text {
    background: linear-gradient(90deg, #00C6FF, #F700FF, #FFD500, #B570FA);
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: clamp(1.2rem, 4vw, 2rem);
    color: #333;
    margin-bottom: 3rem;
    transform: translateY(30px);
}

.coming-soon {
    margin-top: 4rem;
}

.coming-soon-text {
    font-family: 'League Gothic', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.5rem, 6vw, 3rem);
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.2em;
    opacity: 0;
    transform: translateY(30px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gradient-blob {
        filter: blur(15vmin);
    }
    
    .hero-content {
        max-width: 95vw;
    }
    
    .hero-title {
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        margin-bottom: 2rem;
    }
    
    .coming-soon {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .gradient-blob {
        filter: blur(12vmin);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 5vw, 1.5rem);
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .gradient-blob {
        filter: blur(18vmin);
    }
}

/* Footer */
.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 100;
    opacity: 0;
    transform: translateY(20px);
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}



.footer-copyright {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: white;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 0.75rem 1rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .footer-link {
        font-size: 0.8rem;
    }
    
    .footer-copyright {
        font-size: 0.7rem;
    }
}

/* Left Content */
.left-content {
    position: relative;
    z-index: 5;
}

.main-text {
    position: absolute;
    font-family: 'League Gothic', sans-serif;
    font-style: italic;
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(8rem, 12vw, 14rem);
    line-height: 0.9;
    word-wrap: break-word;
    opacity: 0;
    transform: translateX(-50px);
}

/* Position main text at same heights as corresponding dare text */
.main-text-1 {
    top: 18vh; /* Same as dare-text-2 */
    left: 0;
}

.main-text-2 {
    top: 36vh; /* Same as dare-text-3 */
    right: 0;
}

/* Dare Text Content */
.dare-text-container {
    position: relative;
    z-index: 5;
}

.dare-text {
    position: absolute;
    left: 0;
    font-family: 'League Gothic', sans-serif;
    font-style: italic;
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(8rem, 12vw, 14rem);
    line-height: 0.9;
    word-wrap: break-word;
    opacity: 0;
    transform: translateX(-50px);
    /* Outline only styling */
    color: transparent;
    -webkit-text-stroke: 2px black;
    text-stroke: 2px black;
}

/* Individual Dare Text Positioning */
.dare-text-1 {
    top: 0vh;
}

.dare-text-2 {
    top: 18vh;
}

.dare-text-3 {
    top: 36vh;
    /* Override outline styling for filled text */
    color: black;
    -webkit-text-stroke: none;
    text-stroke: none;
}

.dare-text-4 {
    top: 54vh;
}

.dare-text-5 {
    top: 72vh;
}

.dare-text-6 {
    top: 90vh;
}

/* Responsive adjustments for text */
@media (max-width: 768px) {
    .main-text, .dare-text {
        font-size: clamp(6rem, 15vw, 10rem);
    }
    
    /* Adjust main text spacing for mobile */
    .main-text-1 { top: 20vh; }
    .main-text-2 { top: 35vh; }
    
    /* Adjust dare text spacing for mobile */
    .dare-text-1 { top: 5vh; }
    .dare-text-2 { top: 20vh; }
    .dare-text-3 { top: 35vh; }
    .dare-text-4 { top: 50vh; }
    .dare-text-5 { top: 65vh; }
    .dare-text-6 { top: 80vh; }
}

@media (max-width: 480px) {
    .main-text, .dare-text {
        font-size: clamp(4rem, 18vw, 8rem);
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #000;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    max-width: 350px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    color: rgba(0, 0, 0, 0.9);
}

.cookie-btn {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    border: 1px solid rgba(0, 0, 0, 0.95);
    padding: 10px 20px;
    border-radius: 999px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    align-self: flex-start;
}

.cookie-btn:hover {
    background: #000;
    transform: translateY(-1px);
}

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

/* Mobile responsive for cookie banner */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: none;
        padding: 15px;
    }
    
    .cookie-content p {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}



/* Password Modal Styles */
.password-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.password-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 520px;
    width: 92%;
    overflow: hidden;
    transform: scale(0.94);
    transition: transform 0.3s ease;
    border-radius: 24px;
    
}

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

.modal-content-inner {
    z-index: 3;
    position: relative;
    padding: 0;
    color: #000;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 28px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-header h3 {
    margin: 0;
    font-family: 'League Gothic', sans-serif;
    font-style: italic;
    font-size: 2rem;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: rgba(255,255,255,0.7);
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.modal-body {
    padding: 26px 28px 28px;
}

.modal-body p {
    margin: 0 0 25px 0;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
}

.password-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.password-field-wrapper {
    position: relative;
    flex: 1;
}

#password-input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    font-size: 1rem;
    font-family: 'Work Sans', sans-serif;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    transition: all 0.25s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

#password-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}

#password-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.eye-icon {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.8);
    transition: fill 0.2s ease;
}

.download-btn {
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.92);
    color: #000;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.download-btn:hover {
    transform: translateY(-1px);
    background: #fff;
}

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

.password-error {
    color: #e74c3c;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    margin-top: 10px;
    min-height: 20px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px 25px 15px;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 25px;
    }
    
    .password-input-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .download-btn {
        width: 100%;
    }
}