* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: fade-in 5s ease-in;
    background: #000;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== INTRO OVERLAY ===== */
#intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 500;
    pointer-events: auto;
    opacity: 1;
    transition: opacity 2.5s ease;
}

#intro-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.intro-blackout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    transition: opacity 2s ease;
    z-index: 10;
}

.intro-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse 40% 35% at 18% 75%,
        transparent 0%,
        rgba(0, 0, 0, 0.15) 20%,
        rgba(0, 0, 0, 0.55) 45%,
        rgba(0, 0, 0, 0.75) 65%,
        rgba(0, 0, 0, 1) 100%
    );
    transition: opacity 2s ease;
}

.intro-tent-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse 45% 40% at 18% 75%,
        rgba(255, 180, 80, 0.12) 0%,
        rgba(255, 150, 50, 0.06) 25%,
        transparent 60%
    );
    transition: opacity 2s ease;
}

.intro-title-group {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%) translateX(30px);
    text-align: right;
    opacity: 0;
    transition: opacity 2s ease, transform 2s ease;
}

.intro-title-group.visible {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.intro-title-group.fade-out {
    opacity: 0 !important;
    transform: translateY(-50%) translateX(-20px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.intro-title-label {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: clamp(0.7rem, 1.3vw, 1rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 220, 150, 0.4);
    margin-bottom: 10px;
}

.intro-title-main {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    font-style: italic;
    color: rgba(255, 235, 190, 0.95);
    text-shadow:
        0 2px 30px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(255, 180, 80, 0.15);
    letter-spacing: 0.03em;
    line-height: 1.1;
    margin: 0;
}

.intro-title-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to left, rgba(255, 220, 150, 0.4), transparent);
    margin: 14px 0 0 auto;
}

.intro-welcome {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 700;
    font-style: italic;
    color: rgba(255, 235, 190, 1);
    text-shadow:
        0 2px 20px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(255, 180, 80, 0.3),
        0 0 120px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
    opacity: 0;
    transition: opacity 2s ease;
    padding: 20px 40px;
    white-space: nowrap;
}

.intro-welcome-quote {
    position: absolute;
    top: 53%;
    left: 61%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(0.5rem, 0.9vw, 0.85rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 220, 150, 0.6);
    text-shadow:
        0 2px 20px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(255, 180, 80, 0.2);
    letter-spacing: 0.08em;
    opacity: 0;
    transition: opacity 2s ease;
    padding: 0 20px;
    white-space: nowrap;
}

.intro-welcome-quote p {
    margin: 0;
    padding: 0;
}

.intro-welcome.visible {
    opacity: .8;
}

.intro-welcome-quote.visible {
    opacity: .8;
}
/* ===== END INTRO ===== */

/* Background */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

/* Lantern / Fire Glow (over the lantern on the left) */
.lantern-glow {
    position: fixed;
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
    animation: fire-flicker 1.5s ease-in-out infinite;
}

.lantern-glow-main {
    bottom: 20%;
    left: 11.5%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 180, 60, 0.10) 0%, rgba(255, 120, 20, 0.05) 40%, transparent 70%);
    animation-delay: 0s;
}

.lantern-glow-secondary {
    bottom: 17%;
    left: 11.5%;
    width: 160px;
    height: 130px;
    background: radial-gradient(circle, rgba(255, 150, 40, 0.05) 0%, transparent 60%);
    animation-delay: 0.3s;
    animation-duration: 2s;
}

.lantern-glow-inner {
    bottom: 21%;
    left: 17.5%;
    width: 30px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 200, 100, 0.12) 0%, rgba(255, 160, 40, 0.06) 50%, transparent 70%);
    animation-delay: 0.6s;
    animation-duration: 0.8s;
}

@keyframes fire-flicker {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.6;
    }
    15% {
        transform: scale(1.08) translate(2px, -1px);
        opacity: 0.8;
    }
    30% {
        transform: scale(0.95) translate(-1px, 1px);
        opacity: 0.5;
    }
    45% {
        transform: scale(1.05) translate(-2px, -0.5px);
        opacity: 0.75;
    }
    60% {
        transform: scale(0.97) translate(1px, 1.5px);
        opacity: 0.55;
    }
    75% {
        transform: scale(1.03) translate(-0.5px, -1px);
        opacity: 0.7;
    }
    90% {
        transform: scale(0.92) translate(1.5px, 0.5px);
        opacity: 0.45;
    }
}

/* Fire Particle Container - over the campfire area */
.fire-particles {
    position: fixed;
    bottom: 19%;
    left: 26.4%;
    width: 13%;
    min-width: 160px;
    max-width: 200px;
    aspect-ratio: 1 / 1.2;
    z-index: 3;
    pointer-events: none;
    overflow: visible;
}

/* Fire Ember / Spark Particles */
.fire-particle {
    position: absolute;
    border-radius: 50%;
    will-change: transform, opacity;
    pointer-events: none;
}

/* Fire Smoke Particles */
.fire-smoke {
    position: absolute;
    border-radius: 50%;
    will-change: transform, opacity;
    pointer-events: none;
    filter: blur(2px);
}

/* Fire Flame Core - visible dancing flame */
.fire-flame-core {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 60px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: radial-gradient(ellipse at center, rgba(255, 220, 100, 0.9) 0%, rgba(255, 160, 30, 0.6) 40%, rgba(255, 80, 10, 0.3) 70%, transparent 100%);
    animation: flame-dance 0.6s ease-in-out infinite alternate;
    z-index: 4;
    pointer-events: none;
}

.fire-flame-core::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -10px;
    width: 50px;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(255, 200, 80, 0.5) 0%, rgba(255, 120, 20, 0.2) 50%, transparent 100%);
    border-radius: 50%;
    animation: flame-base-pulse 0.8s ease-in-out infinite alternate;
}

.fire-flame-core::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 5px;
    width: 20px;
    height: 25px;
    background: radial-gradient(ellipse at center, rgba(255, 230, 150, 0.8) 0%, rgba(255, 180, 50, 0.3) 60%, transparent 100%);
    border-radius: 50%;
    animation: flame-tip 0.5s ease-in-out infinite alternate;
}

/* Secondary flame tongue */
.fire-flame-secondary {
    position: absolute;
    bottom: 25px;
    left: 30%;
    width: 20px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(255, 200, 60, 0.6) 0%, rgba(255, 120, 20, 0.3) 50%, transparent 100%);
    animation: flame-dance-2 0.7s ease-in-out infinite alternate;
    z-index: 3;
    pointer-events: none;
}

.fire-flame-tertiary {
    position: absolute;
    bottom: 20px;
    left: 55%;
    width: 18px;
    height: 35px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(255, 180, 50, 0.5) 0%, rgba(255, 100, 10, 0.2) 50%, transparent 100%);
    animation: flame-dance-3 0.65s ease-in-out infinite alternate;
    z-index: 3;
    pointer-events: none;
}

/* Heat shimmer overlay */
.fire-heat-shimmer {
    position: absolute;
    bottom: 60px;
    left: -20px;
    width: 180px;
    height: 80px;
    background: radial-gradient(ellipse at center, rgba(255, 200, 100, 0.08) 0%, rgba(255, 150, 50, 0.04) 30%, transparent 70%);
    border-radius: 50%;
    animation: heat-shimmer 1.2s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
    filter: blur(8px);
}

@keyframes flame-dance {
    0% {
        transform: translateX(-50%) scale(1) skewX(0deg);
    }
    25% {
        transform: translateX(-45%) scale(1.05, 1.1) skewX(2deg);
    }
    50% {
        transform: translateX(-55%) scale(0.95, 1.05) skewX(-2deg);
    }
    75% {
        transform: translateX(-48%) scale(1.02, 0.95) skewX(1deg);
    }
    100% {
        transform: translateX(-50%) scale(1) skewX(0deg);
    }
}

@keyframes flame-dance-2 {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.1, 1.2) translate(5px, -5px);
    }
    100% {
        transform: scale(0.9, 1.05) translate(-3px, -2px);
    }
}

@keyframes flame-dance-3 {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(0.9, 0.8) translate(-4px, -3px);
    }
    100% {
        transform: scale(1.1, 1.15) translate(4px, -6px);
    }
}

@keyframes flame-base-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1, 0.9);
        opacity: 0.7;
    }
    100% {
        transform: scale(0.95, 1.05);
        opacity: 0.4;
    }
}

@keyframes flame-tip {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.15, 1.2) translate(3px, -5px);
        opacity: 1;
    }
    100% {
        transform: scale(0.9, 1.1) translate(-2px, -3px);
        opacity: 0.6;
    }
}

@keyframes heat-shimmer {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.3;
    }
    25% {
        transform: scale(1.05, 1.1) translate(3px, -2px);
        opacity: 0.5;
    }
    50% {
        transform: scale(0.95, 1.05) translate(-3px, 2px);
        opacity: 0.2;
    }
    75% {
        transform: scale(1.02, 0.98) translate(2px, -1px);
        opacity: 0.4;
    }
    100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.3;
    }
}

/* Fireflies */
.fireflies-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.firefly {
    position: absolute;
    width: 2px;
    height: 2px;
    background: radial-gradient(circle, #ffffcc, #ffff66 40%, #ffff00 70%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 2px #ffff00, 0 0 5px rgba(255, 255, 0, 0.5);
    filter: drop-shadow(0 0 1px #ffff00);
    will-change: transform, opacity;
}

/* Firefly glow aura (subtle outer glow) */
.firefly::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(255, 255, 200, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Like & Subscribe Popup */
.subscribe-popup {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 200;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    pointer-events: none;
}

.subscribe-popup.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.subscribe-popup.hiding {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s ease, transform 1s ease;
    pointer-events: none;
}

.subscribe-popup-content {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(8, 12, 20, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 220, 150, 0.08);
    border-radius: 14px;
    padding: 14px 22px 14px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 220, 150, 0.04);
}

.subscribe-popup-icon {
    font-size: 22px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 3px rgba(255, 220, 100, 0.3));
    animation: subscribe-popup-bounce 2s ease-in-out infinite;
}

@keyframes subscribe-popup-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.subscribe-popup-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.subscribe-popup-title {
    color: rgba(255, 220, 150, 0.75);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.subscribe-popup-subtitle {
    color: rgba(255, 220, 150, 0.25);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.subscribe-popup-btn {
    background: rgba(255, 220, 150, 0.12);
    color: rgba(255, 220, 150, 0.7);
    border: 1px solid rgba(255, 220, 150, 0.15);
    border-radius: 8px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
}

.subscribe-popup-btn:hover {
    background: rgba(255, 220, 150, 0.2);
    color: rgba(255, 220, 150, 0.9);
    border-color: rgba(255, 220, 150, 0.3);
}

.subscribe-popup-btn:active {
    background: rgba(255, 220, 150, 0.08);
    color: rgba(255, 220, 150, 0.5);
}

.subscribe-popup-btn.subscribed {
    background: rgba(100, 220, 150, 0.15);
    color: rgba(100, 220, 150, 0.7);
    border-color: rgba(100, 220, 150, 0.2);
}

.subscribe-thankyou {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(8, 12, 20, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 14px;
    border: 1px solid rgba(255, 220, 150, 0.08);
    opacity: 0;
    transform: scale(0.85);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.subscribe-thankyou.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: none;
}

.subscribe-thankyou-icon {
    font-size: 28px;
    animation: subscribe-thankyou-pop 0.5s ease-out;
}

@keyframes subscribe-thankyou-pop {
    0% {
        transform: scale(0) rotate(-20deg);
        opacity: 0;
    }
    60% {
        transform: scale(1.3) rotate(5deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.subscribe-thankyou-text {
    color: rgba(255, 220, 150, 0.8);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
}