/* ==========================================================================
   HAPPY BIRTHDAY KELISA - STYLE SHEET (PAPER SKETCH THEME)
   ========================================================================== */

/* Global Variables & Colors */
:root {
    --primary-color: #d13b7d;      /* Deep rose pink from reference */
    --primary-hover: #b02c65;
    --secondary-color: #ffcad4;
    --accent-color: #ffd166;
    --dark-color: #3d343f;        /* Soft dark color for sketchy text */
    --light-color: #fff9fa;
    --white: #ffffff;
    --font-heading: 'Caveat', cursive;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 8px 24px rgba(209, 59, 125, 0.1);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

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

html {
    background-color: #eae7e2; /* Ensure background color covers entire window */
}

body {
    font-family: var(--font-body);
    background-color: #eae7e2; /* Neutral warm grey background outside the card */
    color: var(--dark-color);
    overflow-x: hidden;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

/* ==========================================================================
   Main Card Layout (Mobile Frame on Desktop)
   ========================================================================== */
.card-layout {
    width: 100%;
    max-width: 1150px;
    min-height: 90vh;
    margin: 20px auto;
    border-radius: 20px;
    background-image: url('https://images.unsplash.com/photo-1586075010923-2dd4570fb338?q=80&w=1000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.container {
    width: 100%;
    padding: 85px 25px 40px 25px; /* Spacing inside card */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(209, 59, 125, 0.25);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

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

@keyframes balloonUp {
    0% { transform: translateY(0) scale(0.7); opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { transform: translateY(-120vh) scale(1); opacity: 0; }
}

@keyframes pop {
    0% { transform: scale(0.92); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

@keyframes pulse-btn {
    0% { box-shadow: 0 0 0 0 rgba(209, 59, 125, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(209, 59, 125, 0); }
    100% { box-shadow: 0 0 0 0 rgba(209, 59, 125, 0); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-4deg); }
    75% { transform: rotate(4deg); }
}

@keyframes fadeInPage {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes flicker {
    0% { transform: translateX(-50%) scale(1); }
    100% { transform: translateX(-50%) scale(1.15) rotate(1deg); }
}

@keyframes rise-smoke {
    0% { height: 4px; width: 4px; opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { height: 8px; width: 6px; opacity: 0.5; transform: translateX(-60%) translateY(-8px); }
    100% { height: 12px; width: 10px; opacity: 0; transform: translateX(-40%) translateY(-20px); }
}

@keyframes shine {
    0% { left: -150%; }
    45% { left: 150%; }
    100% { left: 150%; }
}

.animate-pop {
    animation: pop 0.8s forwards;
}

/* ==========================================================================
   Virtual Pages Layout
   ========================================================================== */
.pages-wrapper {
    position: relative;
    width: 100%;
    flex: 1 0 auto;
}

.page {
    display: none;
    width: 100%;
    min-height: 100%;
    position: relative;
}

.page.active {
    display: block;
    animation: fadeInPage 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* ==========================================================================
   Sequential Navigation (Top & Bottom)
   ========================================================================== */
.top-nav {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 100;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(209, 59, 125, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.back-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(-2px);
}

.bottom-nav {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 10px;
    z-index: 10;
    position: relative;
    width: 100%;
}

.btn-pulse {
    animation: pulse-btn 2.0s infinite;
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* ==========================================================================
   Background Music Button
   ========================================================================== */
.music-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(209, 59, 125, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.music-btn:hover {
    transform: scale(1.08);
    background-color: var(--primary-hover);
}

.music-btn.playing {
    animation: pulse 1.5s infinite;
}

/* ==========================================================================
   Bunting Banner & Header Styling
   ========================================================================== */
.bunting-container {
    width: 100%;
    padding: 0;
    margin-top: -1px;
}

.bunting-banner {
    width: 100%;
    display: block;
}

.title-wrapper {
    margin-top: 15px;
    margin-bottom: 25px;
    text-align: center;
}

.handwritten-sub {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary-color);
    line-height: 0.9;
    margin-bottom: -6px;
}

.handwritten-step {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--dark-color);
    line-height: 1;
}

/* ==========================================================================
   Hero / Home Page (Page 1)
   ========================================================================== */
.page.hero.active {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero {
    text-align: center;
    position: relative;
    width: 100%;
}

.hero-content {
    width: 100%;
    padding: 10px 10px 30px 10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-desc {
    font-size: 0.95rem;
    margin: 15px auto;
    color: #554a57;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
    margin-top: 15px;
}

.hero-buttons .btn {
    width: 85%;
    max-width: 280px;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(209, 59, 125, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Floating Balloons */
.balloon-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.balloon {
    position: absolute;
    width: 44px;
    height: 55px;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    animation: balloonUp 13s linear infinite;
    bottom: -100px;
}

.balloon::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 7px solid currentColor;
}

.balloon::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    width: 1px;
    height: 25px;
    background-color: rgba(0,0,0,0.15);
}

.journey-hint {
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.65);
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid rgba(209, 59, 125, 0.15);
    display: inline-block;
}

/* ==========================================================================
   Polaroid Cards & Groupings
   ========================================================================== */
.font-handwritten {
    font-family: var(--font-heading);
}

.polaroid-card {
    background-color: var(--white);
    padding: 10px 10px 20px 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    transition: var(--transition);
    border: 1px solid #f2e9ec;
    width: 100%;
}

.polaroid-img-wrapper {
    width: 100%;
    overflow: hidden;
    border: 1px solid #f0e6e8;
    background-color: #faf6f7;
}

.polaroid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.polaroid-caption {
    padding-top: 12px;
    text-align: center;
}

.caption-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.single-polaroid {
    width: 80%;
    max-width: 250px;
    margin: 15px auto;
}

.single-polaroid .polaroid-card {
    transform: rotate(-1.5deg);
}

.single-polaroid .polaroid-img-wrapper {
    height: 200px;
}

/* Overlapping Polaroid Stack (Page 2) */
.polaroid-stack-container {
    position: relative;
    width: 100%;
    height: 330px; /* reserve height for absolute elements */
    margin: 30px 0 20px 0;
}

.polaroid-stacked {
    position: absolute;
    width: 175px;
    background-color: var(--white);
    padding: 10px 10px 16px 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 2px;
    transition: var(--transition);
}

.polaroid-stacked .polaroid-img-wrapper {
    height: 140px;
}

.polaroid-stacked .caption-text {
    font-size: 1.25rem;
}

/* Tilt and position overlays */
.card-tilt-left-large {
    left: 20px;
    top: 5px;
    transform: rotate(-8deg) scale(0.92);
    z-index: 1;
}

.card-tilt-right {
    right: 25px;
    top: 25px;
    transform: rotate(5deg) scale(0.96);
    z-index: 3;
}

.card-tilt-left-small {
    left: 80px;
    top: 135px;
    transform: rotate(-3deg) scale(0.9);
    z-index: 2;
}

.polaroid-stacked:hover {
    transform: scale(1.03) rotate(0deg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    z-index: 10;
}

/* ==========================================================================
   Hand-drawn Sketch illustration
   ========================================================================== */
.sketch-cake-wrapper {
    width: 90%;
    max-width: 280px;
    margin: 15px auto;
}

.hand-drawn-sketch {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Aesthetic Containers (Boxes & Paragraphs)
   ========================================================================== */
.aesthetic-letter-box {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 22px 24px;
    border-radius: 20px;
    text-align: left;
    margin: 15px auto 25px auto;
    width: 90%;
    box-shadow: 0 6px 20px rgba(209, 59, 125, 0.18);
}

.letter-title {
    font-size: 2rem;
    margin-bottom: 8px;
}

.letter-text {
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.letter-text:last-child {
    margin-bottom: 0;
}

.aesthetic-desc-box {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    font-size: 0.9rem;
    color: #4b424f;
    margin: 15px 0;
}

.gallery-tip {
    text-align: center;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #8c7f91;
    font-style: italic;
}

/* ==========================================================================
   Torn Paper Divider
   ========================================================================== */
.torn-divider-container {
    width: 100%;
    height: 18px;
    margin: 25px 0;
}

.torn-divider {
    width: 100%;
    height: 100%;
    display: block;
}

/* ==========================================================================
   Calendar Widget
   ========================================================================== */
.calendar-widget-wrapper {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 15px;
    margin: 20px auto;
    width: 100%;
    border: 1px dashed rgba(209, 59, 125, 0.25);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.calendar-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.calendar-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.calendar-day {
    flex: 1;
    height: 38px;
    border-radius: 6px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.calendar-day.birthday-highlight {
    flex: 2;
    height: 48px;
    background-color: var(--primary-color);
    color: var(--white);
    flex-direction: column;
    line-height: 1.1;
    box-shadow: 0 4px 8px rgba(209, 59, 125, 0.25);
}

.birthday-highlight .day-num {
    font-size: 1.15rem;
    font-weight: 700;
}

.birthday-highlight .day-label {
    font-size: 0.65rem;
    margin-top: 1px;
    font-weight: 600;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.header-line {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 10px;
    border-radius: 2px;
}

.section-header p {
    font-size: 0.95rem;
    color: #6a5770;
    max-width: 90%;
    margin: 0 auto;
}

/* ==========================================================================
   Surprise Section (CSS Birthday Cake & Sparkle Slideshow)
   ========================================================================== */
.cake-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px auto 15px auto;
    max-width: 280px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.cake-container {
    position: relative;
    width: 250px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 25px;
}

.cake-stand {
    position: absolute;
    bottom: 0;
    width: 250px;
    height: 10px;
    background: linear-gradient(to bottom, #eaeae9, #d0d0cf);
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.cake-stand::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 12px;
    background: linear-gradient(to bottom, #d0d0cf, #b4b4b3);
    border-radius: 0 0 8px 8px;
}

.cake {
    position: relative;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    margin-bottom: 10px;
}

.tier {
    position: relative;
    border-radius: 10px 10px 0 0;
    width: 100%;
    box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.25), 0 3px 5px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.tier-bottom {
    height: 55px;
    width: 200px;
    background: linear-gradient(to right, #ff9eb5, #ffb6c1, #ff9eb5);
    z-index: 2;
}

.tier-middle {
    height: 48px;
    width: 155px;
    background: linear-gradient(to right, #e8a7fc, #f5c4ff, #e8a7fc);
    z-index: 3;
    margin-bottom: -1px;
}

.tier-top {
    height: 40px;
    width: 105px;
    background: linear-gradient(to right, #ffd166, #ffea85, #ffd166);
    z-index: 4;
    margin-bottom: -1px;
}

.drip {
    position: absolute;
    top: 0;
    height: 10px;
    background-color: #ffffff;
}

.drip1 {
    height: 13px;
    width: 22px;
    left: 10%;
    border-radius: 0 0 50% 50%;
}

.drip2 {
    height: 17px;
    width: 28px;
    left: 45%;
    border-radius: 0 0 50% 50%;
}

.drip3 {
    height: 12px;
    width: 20px;
    right: 15%;
    border-radius: 0 0 50% 50%;
}

.candle {
    position: absolute;
    bottom: 95%;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 32px;
    background: linear-gradient(to right, #ff4757, #ff6b81, #ff4757);
    border-radius: 2px 2px 0 0;
    z-index: 10;
}

.wick {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5px;
    height: 5px;
    background-color: #2f3542;
}

.flame {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 17px;
    background-color: #ffa502;
    border-radius: 50% 50% 20% 20% / 60% 60% 40% 40%;
    box-shadow: 0 0 8px rgba(255, 165, 2, 0.8), 0 0 15px rgba(255, 165, 2, 0.4);
    animation: flicker 0.12s infinite alternate;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flame.active {
    opacity: 1;
}

.smoke {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 0px;
    background-color: rgba(220, 220, 220, 0.7);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

.smoke.active {
    animation: rise-smoke 1.6s ease-out forwards;
}

.cake-actions {
    margin-top: 10px;
}

/* Gold Polaroid Frame Slideshow */
.slideshow-area {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    max-width: 340px;
    width: 100%;
    transition: opacity 0.8s ease;
}

.gold-polaroid-frame {
    position: relative;
    background-color: #fffdf9;
    padding: 15px 15px 30px 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 0 15px rgba(212, 175, 55, 0.2);
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    border: 7px solid transparent;
    border-image: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%) 7;
}

.gold-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 4s infinite ease-in-out;
    pointer-events: none;
    z-index: 10;
}

.frame-content {
    position: relative;
    width: 100%;
    height: 260px;
    background-color: #111111;
    overflow: hidden;
    border: 1px solid #dfcba0;
    border-radius: 2px;
}

.slideshow-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.slideshow-img.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}

.frame-caption {
    text-align: center;
    padding-top: 20px;
}

.frame-caption h3 {
    font-size: 2rem;
    color: #b38728;
    margin-bottom: 2px;
}

.frame-caption p {
    font-size: 0.82rem;
    color: #8c788e;
    font-style: italic;
}

/* ==========================================================================
   Wish Board Section
   ========================================================================== */
.wish-form-wrapper {
    max-width: 100%;
    background-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(255, 202, 212, 0.5) 0%, rgba(209, 59, 125, 0.2) 100%);
    padding: 22px;
    border-radius: 16px;
    border: 1px solid rgba(209, 59, 125, 0.1);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.wish-form .form-group {
    margin-bottom: 12px;
}

.wish-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.wish-form input[type="text"],
.wish-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid var(--white);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    background-color: var(--white);
}

.wish-form input[type="text"]:focus,
.wish-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(209, 59, 125, 0.12);
}

/* Wish Board Container - Envelope Folder */
.envelope-folder {
    max-width: 100%;
    position: relative;
}

.folder-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #d4a574, #c49a6c);
    color: #fff;
    padding: 8px 22px;
    border-radius: 10px 10px 0 0;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
    position: relative;
    top: 1px;
    z-index: 2;
}

.folder-body {
    background: linear-gradient(180deg, #e8d5b7 0%, #dfc9a8 50%, #d4b896 100%);
    border: 2px solid #c49a6c;
    border-radius: 4px 16px 16px 16px;
    padding: 20px 15px 25px;
    box-shadow: inset 0 4px 12px rgba(0,0,0,0.08), 0 8px 25px rgba(0,0,0,0.1);
    min-height: 200px;
}

.envelope-stack {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
    align-items: center;
    padding: 10px 0;
}

/* Single Envelope */
.envelope {
    width: 100%;
    max-width: 420px;
    background: linear-gradient(145deg, #fef9f3, #fdf3e7);
    border: 1.5px solid #dcc8a0;
    border-radius: 6px;
    padding: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateY(var(--stack-offset, 0px));
    margin-top: -12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.06);
}

.envelope:first-child {
    margin-top: 0;
}

.envelope:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12), 0 4px 10px rgba(0,0,0,0.08);
    z-index: 10;
}

/* Envelope flap (triangle top) */
.envelope-flap {
    width: 100%;
    height: 60px;
    position: relative;
    overflow: hidden;
}

.envelope-flap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
    border-top: 55px solid #f0e2cc;
}

.envelope-flap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
    border-top: 50px solid #f5ead8;
}

/* Wax seal */
.envelope-seal {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: radial-gradient(circle at 35% 35%, #e85a6f, #c0392b, #962d22);
    border-radius: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25), inset 0 1px 2px rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.envelope:hover .envelope-seal {
    transform: translateX(-50%) scale(1.15) rotate(-5deg);
}

.envelope-seal i {
    color: #fff;
    font-size: 0.8rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Envelope body content area */
.envelope-body {
    padding: 10px 20px 14px;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.envelope-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #8b7355;
    text-align: center;
    line-height: 1.3;
}

.envelope-label .lock-icon {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 4px;
    opacity: 0.6;
}

/* Envelope open state */
.envelope.opened {
    background: linear-gradient(145deg, #fef9f3, #fdf3e7);
    border-color: #d4a574;
}

.envelope.opened .envelope-flap::before {
    border-top-color: #e8d5b7;
}

.envelope.opened .envelope-flap::after {
    border-top-color: #ecdcc4;
}

.envelope.opened .envelope-seal {
    background: radial-gradient(circle at 35% 35%, #7dcea0, #27ae60, #1e8449);
}

.envelope.opened .envelope-body {
    align-items: flex-start;
}

.envelope.opened .envelope-label {
    display: none;
}

.envelope-content {
    display: none;
    width: 100%;
}

.envelope.opened .envelope-content {
    display: block;
    animation: envelopeReveal 0.5s ease;
}

@keyframes envelopeReveal {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.envelope-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.35;
    color: #3a3027;
    margin-bottom: 10px;
    overflow-wrap: break-word;
    text-align: center;
    padding: 0 5px;
}

.envelope-sender-hidden {
    font-size: 0.75rem;
    font-weight: 600;
    color: #a89070;
    text-align: center;
    font-style: italic;
    border-top: 1px dashed rgba(0,0,0,0.08);
    padding-top: 6px;
    width: 100%;
}

/* Empty state */
.envelope-empty {
    text-align: center;
    padding: 30px;
    color: #a89070;
    font-style: italic;
}

.envelope-empty i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
    opacity: 0.5;
}

/* ==========================================================================
   Mascot Section (Bottom of Wishes)
   ========================================================================== */
.mascot-section-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 35px;
    margin-bottom: 10px;
}

.mascot-chat-bubble {
    position: relative;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(209, 59, 125, 0.15);
    max-width: 250px;
    font-weight: 700;
}

.mascot-chat-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: var(--primary-color) transparent;
    display: block;
    width: 0;
}

.mascot-cutout {
    width: 85px;
    height: 105px;
}

.mascot-svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    text-align: center;
    padding: 25px 20px;
    margin-top: 40px;
    width: 100%;
}

.footer-content p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-content .copyright {
    font-size: 0.72rem;
    opacity: 0.5;
}

/* ==========================================================================
   Confetti Canvas
   ========================================================================== */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
}

/* ==========================================================================
   Responsive & Mobile Friendly Adjustments
   ========================================================================== */
@media screen and (max-width: 768px) {
    .music-btn {
        left: auto;
        right: 15px;
        top: 15px;
    }

    .top-nav {
        top: 20px;
        left: 15px;
    }

    .container {
        padding: 75px 15px 35px 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .handwritten-sub {
        font-size: 2.4rem;
    }

    .polaroid-stack-container {
        height: 290px;
    }

    .polaroid-stacked {
        width: 150px;
    }

    .polaroid-stacked .polaroid-img-wrapper {
        height: 110px;
    }

    .card-tilt-left-large {
        left: 10px;
        top: 5px;
    }

    .card-tilt-right {
        right: 10px;
        top: 20px;
    }

    .card-tilt-left-small {
        left: 60px;
        top: 120px;
    }

    .calendar-day.birthday-highlight {
        flex: 1.5;
    }
}

/* ==========================================================================
   Desktop Responsive Layout (Screens wider than 768px)
   ========================================================================== */
@media screen and (min-width: 769px) {
    body {
        align-items: flex-start; /* Prevent top cutoff on short screens */
        padding: 40px 0;
    }

    .card-layout {
        max-width: 1000px;
        min-height: 90vh;
        margin: 40px auto;
        border-radius: 24px;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2), 0 0 40px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.08);
        overflow: hidden;
    }

    .container {
        padding: 95px 50px 50px 50px;
    }

    /* Font Size Enhancements */
    .hero-title {
        font-size: 3.8rem;
    }

    .handwritten-sub {
        font-size: 3.6rem;
    }

    .section-header h2 {
        font-size: 2.8rem;
    }

    /* --- Page 1: Home Page --- */
    .hero-content {
        display: grid;
        grid-template-areas:
            "title polaroid"
            "letter cake"
            "buttons cake";
        grid-template-columns: 1.2fr 1fr;
        gap: 25px 50px;
        align-items: center;
        text-align: left;
        padding: 20px 0;
    }

    .title-wrapper {
        grid-area: title;
        text-align: left;
        margin: 0;
    }

    .polaroid-wrapper {
        grid-area: polaroid;
        margin: 0 auto;
        width: 100%;
        max-width: 280px;
    }

    .sketch-cake-wrapper {
        grid-area: cake;
        margin: 0 auto;
        max-width: 320px;
    }

    .aesthetic-letter-box {
        grid-area: letter;
        margin: 0;
        width: 100%;
    }

    .hero-buttons {
        grid-area: buttons;
        flex-direction: row;
        justify-content: flex-start;
        margin: 0;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: auto;
        max-width: none;
    }

    /* --- Page 2: Gallery Page --- */
    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
        margin-top: 30px;
    }

    .gallery-side {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .polaroid-stack-container {
        height: auto;
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 20px 0;
        flex-wrap: wrap;
    }

    .polaroid-stacked {
        position: relative;
        width: 31%; /* Fit all 3 in a row */
        max-width: 180px;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        margin: 0;
    }

    .polaroid-stacked .polaroid-img-wrapper {
        height: 180px;
    }

    .polaroid-stacked.card-tilt-left-large {
        transform: rotate(-3deg);
    }

    .polaroid-stacked.card-tilt-right {
        transform: rotate(3deg);
    }

    .polaroid-stacked.card-tilt-left-small {
        transform: rotate(-1.5deg);
    }

    /* --- Page 3: Surprise Page --- */
    .slideshow-area {
        max-width: 480px;
    }

    .frame-content {
        height: 360px;
    }

    /* --- Page 4: Wishes Page --- */
    .wishes-grid {
        display: grid;
        grid-template-columns: 1fr 1.3fr;
        gap: 40px;
        align-items: start;
        margin-top: 30px;
    }

    .wish-form-wrapper {
        margin-bottom: 0;
    }

    .folder-body {
        min-height: 300px;
    }

    .envelope {
        max-width: 100%;
    }
}

/* ==========================================================================
   Y2K RETRO WINDOWS 95 POP-UP FLYER STYLING (PAGE 1 / #HOME)
   ========================================================================== */

/* Typography helper classes */
.font-y2k-pixel {
    font-family: 'Silkscreen', 'VT323', monospace, cursive !important;
}

.font-y2k-display {
    font-family: 'Syne', 'Poppins', sans-serif !important;
    font-weight: 800;
}

.font-pink {
    color: #ff007f !important;
}

.font-white {
    color: #ffffff !important;
}

/* ==========================================================================
   2010 NICKELODEON "THE SLAP" RETRO SPOOKY WEB PORTAL (PAGE 1 / #HOME)
   ========================================================================== */

#home.page.hero.active {
    background-color: #0b2265;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    padding: 10px 5px 30px 5px;
    border: 3.5px solid #000000;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.theslap-outer-bg {
    width: 100%;
    display: flex;
    justify-content: center;
}

.theslap-portal-container {
    width: 100%;
    max-width: 820px;
    background: #ffffff;
    border: 3px solid #0b2265;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
    padding: 12px 14px 20px 14px;
    color: #000000;
    box-sizing: border-box;
    overflow: hidden;
}

/* Top Utility Bar */
.theslap-top-util {
    text-align: right;
    font-size: 0.65rem;
    color: #444;
    margin-bottom: 6px;
}

.theslap-top-util a {
    color: #0044cc;
    text-decoration: underline;
    font-weight: bold;
}

/* Header Area */
.theslap-header {
    background: linear-gradient(180deg, #ff7700 0%, #e65500 100%);
    border: 2.5px solid #000000;
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 15px;
    box-shadow: 3px 3px 0px #000000;
    color: #ffffff;
}

.theslap-logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.slap-hand-icon {
    font-size: 2.4rem;
    filter: drop-shadow(2px 2px 0px #000);
}

.slap-logo-main {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 0.85;
    letter-spacing: -2px;
    text-shadow: 3px 3px 0px #000000;
}

.slap-logo-sub {
    font-size: 0.7rem;
    font-weight: bold;
    color: #ffe600;
    text-shadow: 1px 1px 0px #000;
}

/* Header Nav Bar */
.theslap-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    background: #092055;
    border: 2px solid #000;
    border-radius: 6px;
    padding: 4px 8px;
}

.slap-nav-item {
    background: linear-gradient(180deg, #ff9900 0%, #cc5500 100%);
    color: #ffffff !important;
    border: 1.5px solid #000;
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: bold;
    border-radius: 3px;
    text-decoration: none;
    box-shadow: 1px 1px 0px #000;
}

.slap-nav-item.active, .slap-nav-item:hover {
    background: #ffe600 !important;
    color: #000000 !important;
}

.slap-search-box {
    margin-left: auto;
    display: flex;
    gap: 4px;
}

.slap-search-input {
    border: 1.5px solid #000;
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 0.65rem;
}

.slap-search-btn {
    background: #ff0055;
    color: #fff;
    border: 1.5px solid #000;
    border-radius: 3px;
    font-size: 0.62rem;
    font-weight: bold;
    padding: 2px 8px;
    cursor: pointer;
}

/* Main Grid Layout */
@media (min-width: 769px) {
    .theslap-content-grid {
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .theslap-content-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}

/* Base Panel Styling */
.slap-panel {
    background: #ffffff;
    border: 2.5px solid #104496;
    border-radius: 6px;
    box-shadow: 3px 3px 0px #091e4a;
    overflow: hidden;
    margin-bottom: 12px;
}

.panel-header {
    padding: 5px 10px;
    font-size: 0.72rem;
    font-weight: bold;
    color: #ffffff;
    border-bottom: 2px solid #104496;
}

.header-yellow { background: linear-gradient(90deg, #ffaa00, #ff6600); color: #000; }
.header-blue { background: linear-gradient(90deg, #104496, #082862); }
.header-red { background: linear-gradient(90deg, #ff0055, #cc0044); }
.header-purple { background: linear-gradient(90deg, #8800cc, #550099); }

/* Left Column Widgets */
.panel-right-now .panel-body {
    padding: 10px;
    background: #f0f4fa;
}

.rn-user-bar {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 6px;
}

.rn-avatar {
    width: 45px;
    height: 45px;
    border-radius: 4px;
    border: 1.5px solid #000;
    object-fit: cover;
}

.rn-user-info {
    font-size: 0.6rem;
}

.rn-time { color: #666; }
.rn-name { color: #0044cc; font-size: 0.68rem; }

.rn-status-text {
    font-size: 0.7rem;
    color: #222;
    line-height: 1.3;
    background: #fff;
    border: 1.5px solid #ccc;
    padding: 6px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.rn-mood-badge {
    font-size: 0.65rem;
    color: #000;
    font-weight: bold;
}

.mood-highlight {
    background: #ffcc00;
    padding: 1px 4px;
    border-radius: 3px;
    color: #000;
}

/* Creepy Puppet Widget */
.panel-puppet {
    background: linear-gradient(180deg, #3b0764 0%, #1e1b4b 100%);
    color: #fff;
    padding: 10px;
    text-align: center;
    border-color: #000;
}

.puppet-speech-bubble {
    background: #ffffff;
    color: #000;
    border: 2px solid #000;
    border-radius: 12px;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 8px;
    box-shadow: 2px 2px 0px #ff0055;
}

.puppet-frame {
    position: relative;
}

.puppet-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border: 2px solid #000;
    border-radius: 6px;
}

.puppet-doit-btn {
    background: #ffe600;
    color: #000;
    border: 2px solid #000;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 15px;
    box-shadow: 2px 2px 0px #ff0055;
    cursor: pointer;
    margin-top: 6px;
    animation: pulse 2s infinite;
}

/* What is The Slap Info */
.panel-whatis {
    background: #1e1b4b;
    color: #fff;
    padding: 10px;
}

.whatis-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whatis-text {
    font-size: 0.65rem;
    line-height: 1.3;
}

.whatis-qmark {
    font-size: 2.2rem;
    color: #ff9900;
    font-weight: bold;
}

.whatis-footer {
    font-size: 0.6rem;
    color: #aaa;
    margin-top: 6px;
    border-top: 1px solid #444;
    padding-top: 4px;
}

/* Main Column Widgets */
.video-player-frame {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: #000;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
}

.video-media {
    position: relative;
    overflow: hidden;
}

.video-poster-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-circle-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(230, 0, 0, 0.85);
    color: #fff;
    border: 2px solid #fff;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.video-sidebar {
    padding: 10px;
    background: #111;
    box-sizing: border-box;
    overflow: hidden;
}

.hot-video-badge {
    color: #ff3300;
    font-size: 0.9rem;
    font-weight: bold;
}

.video-title {
    font-size: 0.8rem;
    color: #fff;
    margin: 4px 0;
}

.video-desc {
    font-size: 0.62rem;
    color: #ccc;
    line-height: 1.3;
    margin-bottom: 8px;
}

.check-out-link {
    color: #ff3300;
    font-size: 0.65rem;
    font-weight: bold;
    text-decoration: underline;
}

/* Fun Facts Slime Banner */
.panel-fun-facts {
    background: #ffe600;
    color: #000;
    border-color: #000;
    padding: 8px 12px;
}

.facts-header {
    background: #000;
    color: #fff;
    display: inline-block;
    padding: 2px 6px;
    font-size: 0.62rem;
    font-weight: bold;
    border-radius: 3px;
    margin-bottom: 4px;
}

.facts-body {
    font-size: 0.72rem;
    font-weight: bold;
}

/* Hot Pages Avatars Grid */
.hot-avatars-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 8px;
    background: #fff0f5;
    border: 2px solid #ff3300;
    border-radius: 6px;
}

.avatar-card {
    text-align: center;
    border: 2px solid #000;
    border-radius: 6px;
    padding: 4px;
    background: #ffffff;
    box-shadow: 3px 3px 0px #ff007f;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 68px;
    flex: 1;
}

.avatar-card:nth-child(odd) { transform: rotate(-2deg); }
.avatar-card:nth-child(even) { transform: rotate(2deg); }

.avatar-card:hover {
    transform: scale(1.08) rotate(0deg) !important;
    z-index: 10;
}

.av-img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #000;
}

.av-name {
    font-size: 0.58rem;
    font-weight: 800;
    color: #000;
    display: block;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Bottom Sub Grid */
.slap-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.game-banner-box {
    padding: 8px;
    text-align: center;
    background: #fdf4ff;
}

.game-title {
    font-size: 0.75rem;
    color: #c026d3;
    font-weight: bold;
    margin-bottom: 4px;
}

.game-img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border: 1.5px solid #000;
    border-radius: 4px;
}

.av-week-body {
    padding: 8px;
    text-align: center;
    background: #f0fdf4;
}

.av-week-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #16a34a;
    object-fit: cover;
}

.av-winner-badge {
    color: #16a34a;
    font-size: 0.72rem;
    font-weight: bold;
    margin: 4px 0;
}

.make-own-btn {
    background: #16a34a;
    color: #fff;
    border: 1.5px solid #000;
    font-size: 0.6rem;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 3px;
    cursor: pointer;
}

/* Site Links Footer */
.panel-site-links {
    padding: 12px;
    background: #f8fafc;
    font-size: 0.62rem;
    width: 100%;
    box-sizing: border-box;
    clear: both;
    margin-top: 12px;
}

.site-links-header {
    font-weight: bold;
    color: #0284c7;
    margin-bottom: 6px;
}

.links-cat {
    margin-bottom: 4px;
    line-height: 1.4;
}

.links-cat a {
    color: #0284c7;
    text-decoration: underline;
    margin-right: 4px;
}

/* Main Footer */
.theslap-footer {
    background: #092055;
    color: #fff;
    border: 2.5px solid #000;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    font-size: 0.62rem;
    margin-top: 15px;
}

.footer-links a {
    color: #ffe600;
    font-weight: bold;
    text-decoration: none;
}

.footer-sub-links {
    color: #94a3b8;
    margin: 8px 0;
    line-height: 1.4;
}

.copyright-line {
    color: #cbd5e1;
    margin-bottom: 10px;
}

.friends-logos-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.75rem;
    font-weight: bold;
}

.font-pink { color: #ec4899; }
.font-orange { color: #f97316; }
.font-blue { color: #38bdf8; }
    font-family: 'Silkscreen', monospace;
    font-size: 0.65rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    box-shadow: 1px 1px 0px #000;
    user-select: none;
}

.y2k-wbtn:hover {
    background: #ffe600;
}

/* Window Content Body */
.y2k-window-content {
    padding: 15px;
    color: #000000;
    position: relative;
    background-color: #fff0f5;
}

/* Window 1: MAIN EVENT */
.window-main-event .y2k-window-content {
    background-color: #ffebf3;
}

.y2k-studded-title {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 0.92;
    color: #ff007f;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    text-shadow: 2px 2px 0px #ffffff, 4px 4px 0px #000000;
    margin-bottom: 8px;
}

.y2k-sparkle-cursor {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.6rem;
    color: #ff007f;
    display: flex;
    align-items: center;
    gap: 2px;
    animation: pulse 1.5s infinite;
}

.y2k-sparkle-cursor .sparkle-star {
    font-size: 1.4rem;
    color: #ffe600;
    text-shadow: 1px 1px 0px #000;
}

.y2k-event-subtitle {
    font-family: 'Silkscreen', monospace;
    font-size: 0.78rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.35;
}

.y2k-dotted-line {
    border-bottom: 2px dashed #ff007f;
    margin: 10px 0;
}

.y2k-tag-list {
    font-size: 0.85rem;
    color: #e60067;
    font-weight: 600;
    line-height: 1.45;
}

.y2k-tag-list span {
    color: #000;
    text-decoration: underline decoration-color #ff007f;
    font-weight: 700;
}

/* Window 2 & 4: Photo Windows */
.y2k-photo-frame {
    position: relative;
    border: 2.5px solid #000;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
}

.y2k-img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    display: block;
}

.y2k-sticker-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #ffffff;
    border: 2px solid #000;
    box-shadow: 3px 3px 0px #ff007f;
    color: #000;
    font-family: 'Silkscreen', monospace;
    font-size: 0.72rem;
    font-weight: bold;
    padding: 4px 8px;
    transform: rotate(-3deg);
    border-radius: 3px;
}

.y2k-heart-charm {
    position: absolute;
    bottom: -6px;
    left: -6px;
    font-size: 1.8rem;
    filter: drop-shadow(2px 2px 0px #000);
    animation: float 2.5s infinite ease-in-out;
}

/* Window 3: EVENT DETAILS */
.details-yellow-bg {
    background-color: #ffffd4 !important;
}

.y2k-date-text {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    line-height: 1.1;
}

.y2k-time-text {
    font-family: 'Silkscreen', monospace;
    font-size: 1.15rem;
    font-weight: bold;
    color: #ff007f;
    margin-top: 3px;
}

.y2k-star-divider {
    color: #ff007f;
    font-size: 0.68rem;
    margin: 8px 0;
    letter-spacing: 2px;
}

.y2k-location-info {
    font-size: 0.78rem;
    line-height: 1.45;
    color: #000;
}

.y2k-heart-gem {
    position: absolute;
    bottom: 10px;
    right: 12px;
    font-size: 1.6rem;
    animation: float 3s infinite ease-in-out;
    filter: drop-shadow(1px 1px 0px #000);
}

/* Window 5: SPECIALS */
.y2k-specials-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.y2k-specials-list li {
    font-family: 'Silkscreen', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.35;
}

.specials-icon {
    font-size: 1rem;
}

/* Window 6: GIVEAWAY.EXE */
.window-giveaway .y2k-window-content {
    background-color: #fff0f5;
}

.y2k-giveaway-heading {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff007f;
    text-align: center;
    margin-bottom: 8px;
    text-shadow: 1px 1px 0px #000;
}

.y2k-giveaway-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.y2k-giveaway-list li {
    font-family: 'Silkscreen', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
}

.y2k-action-box {
    background: #ffffff;
    border: 2px solid #000;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 3px 3px 0px #ff007f;
}

.y2k-notice-tag {
    font-family: 'Silkscreen', monospace;
    font-size: 0.7rem;
    font-weight: bold;
    color: #ffffff;
    background: #ff007f;
    display: inline-block;
    padding: 2px 6px;
    border: 1px solid #000;
    margin-bottom: 6px;
}

.y2k-enter-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.y2k-enter-steps li {
    font-size: 0.68rem;
    font-weight: 700;
    color: #000;
    display: flex;
    align-items: center;
    gap: 6px;
}

.y2k-enter-steps li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    background: #ff007f;
    color: #fff;
    border-radius: 50%;
    font-size: 0.6rem;
}

.y2k-btn-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.y2k-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px 16px;
    font-family: 'Silkscreen', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: lowercase;
    border: 2px solid #000;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 3px 3px 0px #000000;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    text-decoration: none;
    position: relative;
}

.y2k-btn-pink {
    background: #ff007f;
    color: #ffffff;
}

.y2k-btn-pink:hover {
    background: #e60070;
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0px #000000;
}

.pointer-icon {
    font-size: 0.9rem;
    transform: rotate(-20deg);
}

.y2k-btn-grey {
    background: #e5e5e5;
    color: #000000;
}

.y2k-btn-grey:hover {
    background: #ffffff;
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0px #000000;
}

.y2k-wand-sticker {
    position: absolute;
    bottom: 12px;
    right: -10px;
    font-size: 1.6rem;
    filter: drop-shadow(2px 2px 0px #000);
}

/* Window 7: IMPORTANT NOTICE BANNER */
.important-content {
    background-color: #ffe6ef;
    padding: 12px 15px;
}

.important-warning-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.warning-icon-wrapper {
    background: #ffe600;
    border: 2px solid #000;
    padding: 6px 10px;
    border-radius: 4px;
    box-shadow: 2px 2px 0px #000;
}

.warning-icon {
    font-size: 1.3rem;
    color: #000;
}

.y2k-warning-text {
    font-family: 'Silkscreen', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
    text-align: left;
}

.y2k-important-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 6px;
    border-top: 1.5px dashed #ff007f;
}

.y2k-follow-btn {
    background: #ff007f;
    color: #ffffff;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.68rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 2px 2px 0px #000;
}

.y2k-heart-row {
    font-size: 0.95rem;
    letter-spacing: 3px;
}

/* Desktop & Tablet Layout Grid for Y2K Collage */
@media (min-width: 520px) {
    .y2k-flyer-grid {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        grid-gap: 16px;
        align-items: start;
    }

    .window-main-event {
        grid-column: 1 / 2;
    }

    .window-princess {
        grid-column: 2 / 3;
    }

    .window-details {
        grid-column: 2 / 3;
    }

    .window-bag-hunt {
        grid-column: 1 / 2;
    }

    .window-specials {
        grid-column: 1 / 2;
    }

    .window-giveaway {
        grid-column: 2 / 3;
    }

    .window-important {
        grid-column: 1 / 3;
    }
}

/* ==========================================================================
   ZIPLOC BAG STREETWEAR PORTFOLIO DOSSIER STYLING (PAGE 2 / #GALLERY)
   ========================================================================== */

#gallery.page {
    background-color: #121416;
    border: 3.5px solid #000000;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    padding: 15px 12px 30px 12px;
    position: relative;
    overflow: hidden;
}

.ziploc-back-btn {
    background: #ccff00 !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    box-shadow: 3px 3px 0px #000 !important;
    font-weight: bold;
}

/* Ziploc Bag Outer Container */
.ziploc-bag-wrapper {
    position: relative;
    width: 100%;
    margin-top: 45px;
}

/* Red Zip Seal Bar */
.ziploc-seal-bar {
    width: 100%;
    height: 18px;
    background: linear-gradient(180deg, #ff0055 0%, #cc0044 100%);
    border: 2.5px solid #000;
    border-radius: 4px 4px 0 0;
    position: relative;
    box-shadow: 0 3px 0px rgba(0,0,0,0.3);
    z-index: 10;
}

.ziploc-seal-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #ffe600;
    transform: translateY(-50%);
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

/* Ziploc Bag Body */
.ziploc-bag-body {
    background: linear-gradient(135deg, rgba(30, 34, 38, 0.95) 0%, rgba(20, 22, 25, 0.98) 100%);
    border: 2.5px solid #000;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 20px 15px 15px 15px;
    position: relative;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05), 5px 5px 0px #000;
    overflow: hidden;
}

/* Streetwear Side Graffiti & Hazard Tapes */
.ziploc-graffiti-left, .ziploc-graffiti-right {
    position: absolute;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(204, 255, 0, 0.15);
    user-select: none;
    pointer-events: none;
    text-transform: uppercase;
    z-index: 1;
}

.ziploc-graffiti-left {
    top: 60px;
    left: -15px;
    transform: rotate(-90deg);
}

.ziploc-graffiti-right {
    bottom: 80px;
    right: -15px;
    transform: rotate(90deg);
}

.ziploc-hazard-tape {
    position: absolute;
    background: #ffe600;
    color: #000;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 3px 20px;
    border: 1.5px solid #000;
    box-shadow: 2px 2px 0px #000;
    z-index: 5;
    white-space: nowrap;
}

.tape-left {
    top: 180px;
    left: -20px;
    transform: rotate(-12deg);
}

.tape-right {
    bottom: 120px;
    right: -20px;
    transform: rotate(8deg);
}

/* Header Bar: CV CURRICULUM VITAE */
.ziploc-header-bar {
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.ziploc-cv-tag {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ccff00;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px #000;
}

.cv-sub {
    font-size: 0.75rem;
    color: #fff;
    margin-left: 6px;
}

.stars-gold {
    color: #ffe600;
    margin-left: 8px;
    font-size: 0.85rem;
}

/* Profile ID Dossier Section */
.ziploc-profile-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    border: 2.5px solid #000;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 4px 4px 0px #ccff00;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    color: #000;
}

.ziploc-photo-badge {
    position: relative;
    width: 110px;
    margin: 0 auto;
    border: 2.5px solid #000;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
    box-shadow: 3px 3px 0px #000;
}

.photo-clip-tape {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #999;
    z-index: 5;
}

.ziploc-profile-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.photo-id-tag {
    background: #000;
    color: #ccff00;
    font-size: 0.58rem;
    font-weight: bold;
    text-align: center;
    padding: 3px 0;
}

/* Info Box */
.ziploc-info-box {
    flex: 1;
}

.ziploc-name-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #000;
    line-height: 1;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.ziploc-role-badge {
    display: inline-block;
    background: #000;
    color: #fff;
    font-size: 0.65rem;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.ziploc-details-table {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.7rem;
    border-top: 1.5px dashed #000;
    padding-top: 8px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-row i {
    color: #ff0055;
    font-size: 0.75rem;
}

.detail-row span {
    color: #555;
}

.detail-row strong {
    color: #000;
}

/* QR Box */
.ziploc-qr-box {
    text-align: center;
    border: 2px solid #000;
    padding: 8px;
    background: #fff;
    border-radius: 4px;
    min-width: 85px;
    box-shadow: 2px 2px 0px #000;
    align-self: center;
}

.qr-stamp-header {
    font-size: 0.6rem;
    font-weight: bold;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
    margin-bottom: 4px;
}

.qr-code-img {
    font-size: 2.2rem;
    color: #000;
    margin: 2px 0;
}

.qr-year-stamp {
    font-size: 0.85rem;
    font-weight: bold;
    color: #ff0055;
}

/* Sticker Row */
.ziploc-sticker-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.ransom-year-stickers {
    display: flex;
    gap: 4px;
}

.ransom-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 32px;
    background: #ffffff;
    border: 2px solid #000;
    font-size: 1.2rem;
    font-weight: 800;
    color: #000;
    box-shadow: 2px 2px 0px #000;
}

.r-1 { background: #ffe600; transform: rotate(-4deg); }
.r-2 { background: #ffffff; transform: rotate(3deg); }
.r-3 { background: #ff0055; color: #fff; transform: rotate(-2deg); }
.r-4 { background: #ccff00; transform: rotate(5deg); }

.laptop-sticker-badge {
    background: #ffffff;
    border: 2px solid #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: bold;
    box-shadow: 2.5px 2.5px 0px #000;
    transform: rotate(-2deg);
}

/* Content Grid */
.ziploc-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

/* Wishes Paper Sheet (MÉRITOS) */
.ziploc-wishes-paper {
    background: #ffffff;
    border: 2.5px solid #000;
    border-radius: 4px;
    padding: 20px 15px 15px 15px;
    box-shadow: 4px 4px 0px #ff0055;
    position: relative;
    color: #000;
}

.paper-clip-icon {
    position: absolute;
    top: -12px;
    left: 20px;
    font-size: 1.6rem;
    color: #888;
    filter: drop-shadow(1px 1px 0px #000);
}

.paper-tape-corner {
    position: absolute;
    width: 35px;
    height: 12px;
    background: rgba(255, 230, 0, 0.7);
    border: 1px solid #000;
}

.tape-tl { top: -6px; right: 20px; transform: rotate(5deg); }

.paper-stamp-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #000;
    letter-spacing: 1px;
    border-bottom: 2px solid #000;
    padding-bottom: 4px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.paper-stamp-badge {
    display: inline-block;
    border: 2px dashed #ff0055;
    color: #ff0055;
    font-size: 0.62rem;
    font-weight: bold;
    padding: 2px 6px;
    transform: rotate(-3deg);
    margin-bottom: 12px;
}

.wishes-numbered-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wishes-numbered-list li strong {
    font-size: 0.78rem;
    color: #000;
    display: block;
    margin-bottom: 2px;
}

.wishes-numbered-list li p {
    font-size: 0.72rem;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

.paper-barcode-sticker {
    border-top: 1.5px dashed #000;
    padding-top: 8px;
    text-align: center;
}

.barcode-lines {
    font-family: monospace;
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: #000;
}

.barcode-num {
    font-size: 0.6rem;
    color: #555;
}

/* Right Column: Bio & Traits */
.ziploc-right-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Bio Card ("Sobre mi / Tentang Kelisa") */
.ziploc-bio-card {
    background: #1e2226;
    border: 2.5px solid #000;
    border-radius: 6px;
    padding: 16px;
    color: #ffffff;
    box-shadow: 4px 4px 0px #ccff00;
    position: relative;
}

.bio-script-title {
    font-family: 'Caveat', cursive, sans-serif;
    font-size: 2rem;
    color: #ccff00;
    margin-bottom: 6px;
    line-height: 1;
}

.bio-paragraph {
    font-size: 0.75rem;
    color: #e0e0e0;
    line-height: 1.5;
    margin-bottom: 10px;
}

.bio-signature-badge {
    display: inline-block;
    background: #ff0055;
    color: #fff;
    font-size: 0.65rem;
    font-weight: bold;
    padding: 3px 8px;
    border: 1px solid #000;
    border-radius: 3px;
    box-shadow: 2px 2px 0px #000;
}

/* Traits & Skills Card */
.ziploc-traits-card {
    background: #ffffff;
    border: 2.5px solid #000;
    border-radius: 6px;
    padding: 14px;
    color: #000;
    box-shadow: 4px 4px 0px #000;
}

.traits-header {
    font-size: 0.7rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
}

.traits-icons-grid {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
    border-bottom: 1.5px dashed #000;
    padding-bottom: 10px;
}

.trait-item {
    text-align: center;
    flex: 1;
}

.trait-item i {
    font-size: 1.2rem;
    color: #ff0055;
    display: block;
    margin-bottom: 3px;
}

.trait-item span {
    font-size: 0.6rem;
    font-weight: bold;
    color: #333;
}

.skills-trademark-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 8px;
}

.skills-badges-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 10px;
}

.skill-box {
    background: #000;
    color: #fff;
    padding: 4px 6px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sk-code {
    background: #ff0055;
    color: #fff;
    font-weight: bold;
    font-size: 0.65rem;
    padding: 1px 4px;
    border-radius: 2px;
}

.sk-lbl {
    font-size: 0.6rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.languages-row {
    font-size: 0.65rem;
    color: #333;
    border-top: 1.5px dashed #000;
    padding-top: 6px;
}

/* Mac OS Dock Bar */
.ziploc-mac-dock {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 6px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.dock-item {
    width: 28px;
    height: 28px;
    background: #ffffff;
    border: 1.5px solid #000;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #000;
    box-shadow: 2px 2px 0px #000;
    transition: transform 0.15s ease;
    cursor: pointer;
}

.dock-item:hover {
    transform: translateY(-4px) scale(1.1);
}

.dock-calendar {
    flex-direction: column;
    background: #ffe600;
    font-size: 0.5rem;
    font-weight: bold;
    line-height: 1;
}

.dock-month {
    color: #ff0055;
    font-size: 0.45rem;
}

.dock-day {
    color: #000;
    font-size: 0.65rem;
}

/* Bottom Badges Bar */
.ziploc-bottom-badges {
    display: flex;
    justify-content: space-around;
    gap: 6px;
    position: relative;
    z-index: 2;
}

.bottom-badge-item {
    background: #000;
    color: #ffffff;
    border: 1.5px solid #ccff00;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.62rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ziploc-bottom-nav {
    margin-top: 20px;
    text-align: center;
}

/* Responsive Desktop & Mobile Layout for Ziploc Dossier */
@media (min-width: 769px) {
    .ziploc-profile-grid {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .ziploc-content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .skills-badges-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .ziploc-profile-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

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

    .skills-badges-row {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
}

/* ==========================================================================
   WINDOWS 95 RETRO DESKTOP OS STYLING (PAGE 3 / #SURPRISE)
   ========================================================================== */

#surprise.page {
    background-color: #008080;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 10px 10px;
    border: 3.5px solid #000000;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    padding: 12px 10px 30px 10px;
    position: relative;
    overflow: hidden;
    color: #000000;
}

/* Windows 95 Top Bar */
.win95-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #c0c0c0;
    border: 2px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    padding: 4px 10px;
    box-shadow: 2px 2px 0px #000;
    margin-bottom: 15px;
}

.win95-back-btn {
    background: #c0c0c0 !important;
    color: #000 !important;
    border: 2px solid !important;
    border-color: #ffffff #808080 #808080 #ffffff !important;
    box-shadow: 1px 1px 0px #000 !important;
    font-weight: bold;
    font-size: 0.72rem !important;
    padding: 3px 10px !important;
}

.win95-task-info {
    font-size: 0.7rem;
    font-weight: bold;
    color: #000;
}

/* Windows 95 Desktop Container */
.win95-desktop-container {
    width: 100%;
}

.win95-desktop-collage {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    align-items: start;
    position: relative;
}

.win95-main-app { grid-column: 1 / 2; }
.win95-paint-window { grid-column: 2 / 3; }
.win95-folders-window { grid-column: 2 / 3; }
.win95-alert-window { grid-column: 1 / 2; }
.win95-landscape-window { grid-column: 1 / 3; }

/* Base Windows 95 Window styling */
.win95-window {
    background: #c0c0c0;
    border: 2.5px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    box-shadow: 4px 4px 0px #000000;
    position: relative;
    overflow: hidden;
}

/* Windows 95 Titlebar */
.win95-titlebar {
    background: linear-gradient(90deg, #000080 0%, #1084d0 100%);
    padding: 3px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.win95-title-text {
    font-size: 0.75rem;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.win95-btn-group {
    display: flex;
    gap: 2px;
}

.win95-wbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #c0c0c0;
    border: 1.5px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    font-family: 'Silkscreen', monospace;
    font-size: 0.65rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
}

/* Classic Menu Bar */
.win95-menu-bar {
    background: #c0c0c0;
    border-bottom: 1.5px solid #808080;
    padding: 2px 8px;
    font-size: 0.72rem;
    display: flex;
    gap: 12px;
    color: #000;
}

.win95-menu-bar span {
    cursor: pointer;
}

/* Window 1: Main App (CD Player) - Clean Full-Width Vertical Stack */
.win95-app-content {
    padding: 12px !important;
    background: #c0c0c0 !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.win95-media-frame {
    position: relative !important;
    border: 2px solid #000 !important;
    margin: 0 0 12px 0 !important;
    background: #000 !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: 280px !important;
    overflow: hidden !important;
    display: block !important;
}

.win95-bounding-box {
    position: absolute;
    top: 15px;
    left: 20px;
    width: 110px;
    height: 110px;
    border: 2px solid #00ff00;
    pointer-events: none;
    z-index: 5;
}

.bb-label {
    background: #00ff00;
    color: #000;
    font-size: 0.6rem;
    font-weight: bold;
    padding: 1px 4px;
    position: absolute;
    top: -18px;
    left: -2px;
}

.win95-media-img {
    width: 100% !important;
    max-width: 100% !important;
    height: 240px !important;
    object-fit: cover !important;
    display: block !important;
}

.win95-cake-area {
    background: #ffffff !important;
    border: 2px solid;
    border-color: #808080 #ffffff #ffffff #808080 !important;
    padding: 15px 10px !important;
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.2) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
}

.win95-status-tag {
    font-size: 0.65rem;
    font-weight: bold;
    color: #ff0055;
    background: #ffe600;
    display: inline-block;
    padding: 2px 6px;
    border: 1px solid #000;
    margin-bottom: 10px;
}

.win95-btn {
    background: #c0c0c0;
    border: 2px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    box-shadow: 2px 2px 0px #000;
    font-size: 0.78rem;
    font-weight: bold;
    padding: 8px 16px;
    cursor: pointer;
    color: #000;
}

.win95-btn-pink {
    background: #ff007f !important;
    color: #ffffff !important;
    border-color: #ff80bf #800040 #800040 #ff80bf !important;
}

.win95-btn-pink:hover {
    background: #e60070 !important;
}

/* Window 2: MS Paint Studio */
.paint-body {
    display: flex;
    background: #ffffff;
    padding: 8px;
    gap: 8px;
    color: #000;
}

.paint-sidebar {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #c0c0c0;
    border: 1.5px solid #808080;
    padding: 4px;
}

.pt-icon {
    width: 22px;
    height: 22px;
    background: #c0c0c0;
    border: 1.5px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    cursor: pointer;
}

.pt-icon.active {
    border-color: #808080 #ffffff #ffffff #808080;
    background: #e0e0e0;
}

.paint-canvas {
    flex: 1;
    border: 1.5px solid #808080;
    padding: 8px;
    background: #fff;
}

.paint-artist-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 2px;
}

.paint-sub {
    font-size: 0.65rem;
    font-weight: bold;
    color: #ff0055;
    margin-bottom: 6px;
}

.paint-color-gradient {
    height: 12px;
    background: linear-gradient(90deg, red, yellow, green, cyan, blue, magenta);
    border: 1px solid #000;
    margin-bottom: 8px;
}

.paint-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
    font-size: 0.68rem;
    font-weight: bold;
    color: #333;
}

.paint-email-btn {
    background: #c0c0c0;
    border: 1.5px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    font-size: 0.65rem;
    padding: 3px 6px;
    text-align: center;
    font-weight: bold;
}

/* Window 3: Folders Window */
.folders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 12px;
    background: #ffffff;
    text-align: center;
}

.folder-item {
    cursor: pointer;
}

.f-icon {
    font-size: 1.6rem;
    margin-bottom: 2px;
}

.folder-item span {
    font-size: 0.65rem;
    font-weight: bold;
    color: #000;
}

/* Window 4: System Alert */
.win95-alert-window {
    max-width: 280px;
    margin: 0 auto;
}

.alert-body {
    padding: 12px;
    text-align: center;
    background: #c0c0c0;
}

.alert-text {
    font-size: 0.75rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.win95-btn-3d {
    min-width: 60px;
}

/* Window 5: Landscape Banner Window */
.win95-landscape-window {
    background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 50%, #fef08a 50%, #eab308 100%);
    border: 2.5px solid #000;
    padding: 15px;
    text-align: center;
    position: relative;
}

.landscape-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 0px #000000;
}

.cursor-stack {
    display: flex;
    justify-content: center;
    gap: 4px;
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow: 1px 1px 0px #000;
    margin-top: 4px;
}

/* Photo Viewer Window (Slideshow) */
.win95-slideshow-window {
    width: 100%;
    margin-top: 12px;
}

#slideshow-frame {
    position: relative;
    width: 100%;
    height: 380px;
    background: #000000;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slideshow-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.slideshow-img.active {
    opacity: 1;
}

.win95-caption {
    background: #c0c0c0;
    border-top: 2px solid #808080;
    padding: 10px;
    text-align: center;
}

/* Bottom Bliss Strip & Blue Prompt Bar */
.win95-bottom-section {
    margin-top: 20px;
}

.win95-bliss-strip {
    background: linear-gradient(180deg, #38bdf8 0%, #4ade80 60%, #16a34a 100%);
    border: 2.5px solid #000;
    border-radius: 6px;
    padding: 20px 10px;
    position: relative;
    box-shadow: 4px 4px 0px #000;
}

.win95-blue-prompt {
    background: #0000ff;
    border: 2px solid #ffffff;
    box-shadow: 3px 3px 0px #000;
    color: #ffffff;
    padding: 10px 15px;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
}

.prompt-title {
    font-size: 0.78rem;
    font-weight: bold;
    margin-bottom: 6px;
}

.prompt-choices {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.72rem;
    font-weight: bold;
}

.prompt-link {
    color: #ffe600 !important;
    text-decoration: none;
}

.prompt-link:hover {
    text-decoration: underline;
}

.prompt-no {
    color: #aaaaaa;
}

/* Desktop Collage Grid for Windows 95 */
@media (min-width: 769px) {
    .win95-desktop-collage {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: start;
    }

    .win95-main-app {
        grid-column: 1 / 2;
    }

    .win95-paint-window {
        grid-column: 2 / 3;
    }

    .win95-folders-window {
        grid-column: 2 / 3;
    }

    .win95-alert-window {
        grid-column: 1 / 2;
    }

    .win95-landscape-window {
        grid-column: 1 / -1;
    }

    .win95-slideshow-window {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .win95-desktop-collage {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .win95-window {
        width: 100% !important;
    }
}

/* ==========================================================================
   CUTE Y2K LAYERED FILE FOLDER SCRAPBOOK STYLING (PAGE 4 / #WISHES)
   ========================================================================== */

#wishes.page {
    background-color: #c9e0f5;
    background-image: radial-gradient(#9ac4ea 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    border: 3.5px solid #000000;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    padding-bottom: 40px;
    overflow: hidden;
    color: #000000;
}

.y2k-wishes-container {
    padding-top: 55px !important;
}

.y2k-back-btn {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
    box-shadow: 2px 2px 0px #ff007f !important;
    font-weight: bold;
}

.y2k-wishes-canvas {
    position: relative;
    padding: 20px 10px;
}

/* Y2K Stickers & Keychains */
.y2k-sticker {
    position: absolute;
    z-index: 30;
    pointer-events: none;
}

.sticker-heart-keychain {
    top: 5px;
    left: -5px;
}

.heart-key-ring {
    font-size: 0.9rem;
    margin-left: 30px;
    margin-bottom: -5px;
}

.heart-key-body {
    background: #ff3377;
    color: #fff;
    padding: 10px;
    clip-path: polygon(50% 0%, 100% 35%, 80% 100%, 50% 85%, 20% 100%, 0% 35%);
    width: 90px;
    height: 85px;
    text-align: center;
    box-shadow: 2px 2px 0px #000;
}

.hk-title {
    font-size: 0.55rem;
    font-weight: bold;
    display: block;
    margin-top: 6px;
}

.hk-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin: 4px auto 0 auto;
    border: 1.5px solid #fff;
}

.sticker-star-face {
    top: 10px;
    right: 15px;
    font-size: 2.2rem;
    filter: drop-shadow(2px 2px 0px #000);
}

.sticker-lover-tag {
    top: 130px;
    right: 5px;
    background: #ffccf2;
    color: #000;
    border: 2px solid #000;
    padding: 4px 10px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 4px;
    transform: rotate(6deg);
    box-shadow: 3px 3px 0px #000;
}

.sticker-lovrz-tag {
    bottom: 50px;
    left: 5px;
    background: #ffe600;
    color: #000;
    border: 2.5px solid #000;
    padding: 4px 12px;
    font-size: 1.4rem;
    font-weight: 800;
    box-shadow: 4px 4px 0px #000;
    transform: rotate(-8deg);
}

.sticker-callme-heart {
    bottom: 45px;
    right: 5px;
    background: #ff007f;
    color: #fff;
    border: 2px solid #000;
    padding: 10px 14px;
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: bold;
    text-align: center;
    box-shadow: 3px 3px 0px #000;
    transform: rotate(10deg);
}

/* Stacked File Folders Centerpiece */
.y2k-folder-stack-wrapper {
    position: relative;
    max-width: 520px;
    margin: 30px auto 20px auto;
}

/* Folder Tabs Header Stack */
.y2k-tab-stack {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
    margin-bottom: -6px;
    padding-left: 15px;
    gap: 4px 0;
}

.y2k-tab {
    background: #f8fafc;
    border: 2px solid #cbd5e1;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    padding: 8px 20px 10px 20px;
    font-family: 'Playfair Display', 'Syne', serif !important;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    box-shadow: 0 -4px 8px rgba(0,0,0,0.06);
    margin-right: -14px;
    transition: transform 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.y2k-tab:hover {
    transform: translateY(-4px);
    background: #ffffff;
    z-index: 10 !important;
}

.tab-1 { background: #e2e8f0; z-index: 1; }
.tab-2 { background: #f1f5f9; z-index: 2; }
.tab-3 { background: #f8fafc; z-index: 3; }
.tab-4 { background: #ffffff; z-index: 4; }
.tab-5 { background: #f1f5f9; z-index: 5; }
.tab-6 { background: #ffffff; z-index: 6; }

.y2k-tab.active {
    background: #ffffff !important;
    border: 3px solid #000000 !important;
    border-bottom: 3px solid #ffffff !important;
    transform: translateY(-6px) !important;
    z-index: 25 !important;
    color: #ff007f !important;
    font-weight: 800 !important;
    box-shadow: 0 -4px 12px rgba(255, 0, 127, 0.25) !important;
}

/* Main Front Folder Body */
.y2k-front-folder {
    background: #ffffff;
    border: 3px solid #000000;
    border-radius: 0 12px 12px 12px;
    padding: 25px 20px 20px 20px;
    box-shadow: 6px 6px 0px #000000;
    position: relative;
    z-index: 10;
}

.y2k-paperclip {
    position: absolute;
    top: -16px;
    left: 20px;
    font-size: 2rem;
    transform: rotate(-20deg);
    filter: drop-shadow(2px 2px 0px #000);
}

.y2k-folder-header {
    text-align: center;
    margin-bottom: 20px;
}

.y2k-title-serif {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    line-height: 0.9;
    letter-spacing: -1.5px;
    margin-bottom: 8px;
}

.title-sub {
    font-size: 2.2rem;
    color: #ff007f;
}

.y2k-subtitle-text {
    font-size: 0.72rem;
    color: #555;
}

/* Form Styles inside Y2K Folder */
.y2k-form-block {
    background: #f9f9f9;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 3px 3px 0px #000;
}

.y2k-input, .y2k-textarea {
    width: 100%;
    background: #ffffff !important;
    border: 2px solid #000000 !important;
    border-radius: 4px !important;
    padding: 8px 12px !important;
    font-size: 0.78rem !important;
    color: #000000 !important;
    box-shadow: 2px 2px 0px #ffe600 !important;
    margin-top: 4px;
}

.y2k-input:focus, .y2k-textarea:focus {
    outline: none;
    border-color: #ff007f !important;
}

.y2k-btn-pink {
    background: #ff007f !important;
    color: #ffffff !important;
    border: 2px solid #000000 !important;
    box-shadow: 3px 3px 0px #000000 !important;
    padding: 10px 18px !important;
    font-size: 0.78rem !important;
    font-weight: bold !important;
    width: 100%;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 10px;
    transition: transform 0.15s ease;
}

.y2k-btn-pink:hover {
    background: #e60070 !important;
    transform: translate(-1px, -1px);
}

/* Wish Board Envelope Container inside Y2K Folder */
.y2k-wishes-board-block {
    background: #fffdf5;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 3px 3px 0px #000;
}

.y2k-board-title {
    font-size: 0.72rem;
    font-weight: bold;
    color: #000;
    border-bottom: 1.5px dashed #000;
    padding-bottom: 6px;
    margin-bottom: 12px;
}

/* Mini Folder Card Aesthetic inside Wish Board */
.envelope-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.folder-card {
    position: relative;
    background: #fffdf0;
    border: 2.5px solid #000000;
    border-radius: 0 10px 10px 10px;
    box-shadow: 4px 4px 0px #000000;
    padding: 0;
    margin-top: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: folderCardAppear 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.folder-card:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 6px 6px 0px #000000;
}

.folder-card-tab {
    position: absolute;
    top: -24px;
    left: -2.5px;
    background: #ffe600;
    border: 2.5px solid #000000;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    padding: 3px 12px;
    font-size: 0.62rem;
    font-weight: 800;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.folder-card-body {
    padding: 14px 16px 12px 16px;
    position: relative;
}

.folder-card-clip {
    position: absolute;
    top: -12px;
    right: 15px;
    font-size: 1.4rem;
    transform: rotate(15deg);
    filter: drop-shadow(1px 1px 0px #000);
}

.folder-card-text {
    font-size: 0.78rem;
    font-weight: bold;
    color: #1a1a1a;
    line-height: 1.45;
    margin-bottom: 10px;
    white-space: pre-wrap;
    word-break: break-word;
}

.folder-card-sender {
    font-size: 0.65rem;
    color: #444;
    border-top: 1.5px dashed #cccccc;
    padding-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Color Variations for Mini Folders */
.folder-pink { background: #fff0f5; }
.folder-pink .folder-card-tab { background: #ff007f; color: #fff; }

.folder-blue { background: #f0f8ff; }
.folder-blue .folder-card-tab { background: #00bfff; color: #000; }

.folder-yellow { background: #fffdf0; }
.folder-yellow .folder-card-tab { background: #ffe600; color: #000; }

.folder-purple { background: #f9f5ff; }
.folder-purple .folder-card-tab { background: #b5179e; color: #fff; }

.folder-green { background: #f0fff4; }
.folder-green .folder-card-tab { background: #00f0b5; color: #000; }

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

.y2k-folder-footer {
    text-align: center;
    font-size: 0.62rem;
    color: #888;
    margin-top: 15px;
}

.y2k-btn-next {
    background: #ff007f !important;
    color: #ffffff !important;
    border: 2px solid #000000 !important;
    box-shadow: 3px 3px 0px #ffffff !important;
    font-size: 0.8rem !important;
    padding: 10px 20px !important;
}

.y2k-btn-next:hover {
    background: #ffffff !important;
    color: #000000 !important;
}

/* ==========================================================================
   EDITORIAL MAGAZINE MOODBOARD SCRAPBOOK STYLING (PAGE 5 / #ALBUM)
   ========================================================================== */

#album.page {
    background-color: #141414;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 14px 14px;
    border: 3.5px solid #000000;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
    padding-bottom: 40px;
    overflow: hidden;
    color: #ffffff;
}

.album-container {
    padding-top: 55px !important;
}

.album-back-btn {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Manila Folder Outer Container */
.editorial-manila-folder {
    background: #dfd7ca;
    border: 3px solid #1a1715;
    border-radius: 4px 12px 12px 12px;
    padding: 30px 15px 25px 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), 6px 6px 0px #1a1715;
    margin-top: 25px;
    margin-bottom: 25px;
    position: relative;
    color: #000000;
}

.editorial-paperclip {
    position: absolute;
    top: -16px;
    right: 25px;
    font-size: 2.2rem;
    transform: rotate(15deg);
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.3));
    z-index: 25;
}

.editorial-folder-tab {
    position: absolute;
    top: -28px;
    right: 0;
    background: #dfd7ca;
    border: 3px solid #1a1715;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    padding: 3px 15px;
    font-size: 0.65rem;
    font-weight: bold;
    color: #000;
}

/* Moodboard Canvas Grid */
.editorial-moodboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
    position: relative;
}

.ed-la-couleur { grid-column: 1 / 2; }
.ed-red-postit { grid-column: 2 / 3; justify-self: end; }
.ed-album-cover { grid-column: 1 / 2; }
.ed-spine-banner { grid-column: 1 / 3; }
.ed-fleurs-article { grid-column: 2 / 3; }
.ed-bw-photostrip { grid-column: 1 / 2; }
.ed-main-headline { grid-column: 1 / 3; }
.ed-cd-disc { grid-column: 1 / 2; }
.ed-ripped-quote { grid-column: 2 / 3; }
.ed-polaroid-strip { grid-column: 1 / 3; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ed-action-card { grid-column: 1 / 3; }

.ed-block {
    position: relative;
}

/* 1. LA COULEUR Section */
.ed-la-couleur {
    background: #000000;
    color: #ffffff;
    padding: 14px;
    border: 2px solid #000;
    box-shadow: 3px 3px 0px #ff0033;
}

.ed-tag {
    font-size: 0.6rem;
    color: #ffe600;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.ed-title-bold {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 0.9;
    letter-spacing: -1px;
    margin-bottom: 6px;
}

.ed-text-small {
    font-size: 0.65rem;
    color: #ccc;
    line-height: 1.3;
    margin-bottom: 10px;
}

.ed-sneaker-row {
    display: flex;
    gap: 8px;
}

.snk-card {
    background: #222;
    border: 1px solid #444;
    padding: 3px 6px;
    font-size: 0.6rem;
}

.snk-year {
    color: #ff0055;
    font-weight: bold;
    margin-right: 4px;
}

/* 2. Red Post-It Note */
.ed-red-postit {
    background: #ff2a00;
    color: #fff;
    padding: 8px;
    border: 2px solid #000;
    box-shadow: 3px 3px 0px #000;
    transform: rotate(-3deg);
    max-width: 140px;
}

.postit-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
    filter: grayscale(40%);
}

.postit-tag {
    font-size: 0.6rem;
    font-weight: bold;
    text-align: center;
    margin-top: 4px;
}

/* 3. Album Cover: LES X */
.ed-album-cover {
    background: #111;
    border: 2px solid #000;
    padding: 10px;
    color: #fff;
    box-shadow: 4px 4px 0px #000;
}

.album-cover-title {
    font-size: 1.6rem;
    color: #3b82f6;
    font-weight: bold;
}

.album-cover-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
    margin: 6px 0;
}

.album-cover-sub {
    font-size: 0.6rem;
    color: #aaa;
}

/* 4. Spine Banner: FILS DE RAP */
.ed-spine-banner {
    background: #000;
    color: #fff;
    padding: 8px 12px;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.spine-text {
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.spine-sub {
    font-size: 0.6rem;
    color: #ffe600;
}

/* 5. Article: LES FLEURS DU MÂLE */
.ed-fleurs-article {
    background: #ffffff;
    border: 2px solid #000;
    padding: 12px;
    color: #000;
    box-shadow: 4px 4px 0px #000;
}

.fleurs-header {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.fleurs-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.fleurs-caption {
    font-size: 0.6rem;
    font-weight: bold;
    color: #ff0055;
    margin-top: 4px;
}

/* 6. B&W Photostrip */
.ed-bw-photostrip {
    background: #000;
    padding: 6px;
    border: 2px solid #000;
    transform: rotate(2deg);
}

.bw-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    filter: grayscale(100%);
}

.bw-caption {
    color: #fff;
    font-size: 0.6rem;
    text-align: center;
    margin-top: 4px;
}

/* 7. Main Editorial Headline: FOULE EXPERIMENTALE */
.ed-main-headline {
    background: #fff;
    border: 3px solid #000;
    padding: 15px;
    color: #000;
    box-shadow: 5px 5px 0px #000;
}

.foule-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.foule-sub {
    font-size: 0.68rem;
    line-height: 1.3;
    border-top: 1.5px solid #000;
    padding-top: 6px;
}

/* 8. Circular Vinyl / CD Disc Overlay */
.ed-cd-disc {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.cd-outer-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, #333 0%, #111 60%, #444 100%);
    border: 3px solid #000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.4);
}

.cd-inner-hole {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #dfd7ca;
    border: 3px solid #000;
}

.cd-graffiti-text {
    position: absolute;
    color: #ffe600;
    font-size: 1.2rem;
    font-weight: bold;
    transform: rotate(-15deg);
    text-shadow: 2px 2px 0px #000;
}

.cd-shiny-reflection {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
    pointer-events: none;
}

/* 9. Ripped Paper Quote Note */
.ed-ripped-quote {
    background: #fffdf5;
    border: 1.5px solid #000;
    padding: 12px;
    position: relative;
    box-shadow: 3px 3px 0px rgba(0,0,0,0.2);
    transform: rotate(-1.5deg);
    color: #000;
}

.tape-strip {
    position: absolute;
    top: -8px;
    left: 20px;
    width: 50px;
    height: 14px;
    background: rgba(240, 230, 200, 0.7);
    border: 1px solid rgba(0,0,0,0.2);
    transform: rotate(-5deg);
}

.quote-text {
    font-size: 0.72rem;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 6px;
}

.quote-signature {
    font-size: 0.6rem;
    font-weight: bold;
    color: #ff0055;
}

/* 10. Polaroid Strip Collage */
.ed-polaroid-strip {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pol-card {
    background: #fff;
    border: 2px solid #000;
    padding: 6px 6px 10px 6px;
    box-shadow: 3px 3px 0px #000;
}

.rot-left { transform: rotate(-3deg); }
.rot-right { transform: rotate(3deg); }
.rot-left-small { transform: rotate(-1.5deg); }

.pol-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.pol-cap {
    font-size: 0.65rem;
    font-weight: bold;
    color: #000;
    text-align: center;
    display: block;
    margin-top: 4px;
}

/* 11. Movie Action Scene Card */
.ed-action-card {
    position: relative;
    border: 2.5px solid #000;
    overflow: hidden;
    background: #000;
}

.action-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    opacity: 0.85;
}

.action-overlay {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 4px 8px;
    border: 1px solid #fff;
}

.act-tag {
    font-size: 0.58rem;
    color: #4ade80;
    display: block;
}

.act-code {
    font-size: 1.1rem;
    color: #fff;
    font-weight: bold;
}

.saw-blade-graphic {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 1.3rem;
}

/* Responsive Editorial Grid Layout */
@media (min-width: 540px) {
    .editorial-moodboard-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        align-items: start;
    }

    .ed-la-couleur { grid-column: 1 / 2; }
    .ed-red-postit { grid-column: 2 / 3; justify-self: end; }
    .ed-album-cover { grid-column: 1 / 2; }
    .ed-spine-banner { grid-column: 1 / 3; }
    .ed-fleurs-article { grid-column: 2 / 3; }
    .ed-bw-photostrip { grid-column: 1 / 2; }
    .ed-main-headline { grid-column: 1 / 3; }
    .ed-cd-disc { grid-column: 1 / 2; }
    .ed-ripped-quote { grid-column: 2 / 3; }
    .ed-polaroid-strip { grid-column: 1 / 3; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .ed-action-card { grid-column: 1 / 3; }
}

/* ==========================================================================
   MAXIMALIST ULTRA-PACKED STACKED COLLAGE OVERLAYS & RESPONSIVENESS
   ========================================================================== */

.portal-sticker, .ziploc-overlap-polaroid, .wishes-overlap-pol {
    position: absolute;
    background: #ffffff;
    border: 2.5px solid #000000;
    padding: 5px;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.4);
    z-index: 25;
    transition: transform 0.3s ease;
}

.portal-sticker:hover, .ziploc-overlap-polaroid:hover, .wishes-overlap-pol:hover {
    transform: scale(1.08) rotate(0deg) !important;
    z-index: 50 !important;
}

.tape-strip {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 14px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px dashed rgba(0,0,0,0.3);
    z-index: 30;
}

.pol-img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    display: block;
    border: 1px solid #ddd;
}

.pol-cap {
    font-size: 0.55rem;
    font-weight: bold;
    color: #000;
    text-align: center;
    display: block;
    margin-top: 3px;
}

/* Home Page Overlays (#home) */
.sticker-tape-pol1 {
    top: 40px;
    left: 10px;
    transform: rotate(-12deg);
}

.sticker-tape-pol2 {
    top: 180px;
    right: 10px;
    transform: rotate(10deg);
}

.sticker-starburst-home {
    bottom: 30px;
    left: 15px;
    background: #ffe600;
    clip-path: polygon(50% 0%, 63% 10%, 80% 3%, 82% 20%, 98% 22%, 88% 38%, 100% 52%, 85% 65%, 93% 82%, 73% 80%, 65% 98%, 50% 86%, 35% 98%, 27% 80%, 7% 82%, 15% 65%, 0% 52%, 12% 38%, 2% 22%, 18% 20%, 20% 3%, 37% 10%);
    padding: 12px 10px;
    font-size: 0.6rem;
    font-weight: bold;
    color: #e60067;
    text-align: center;
    transform: rotate(-8deg);
}

/* Gallery Overlays (#gallery) */
.pol-top-left {
    top: -15px;
    left: 20px;
    transform: rotate(-15deg);
}

.pol-bottom-right {
    bottom: 10px;
    right: 25px;
    transform: rotate(12deg);
}

/* Wishes Overlays (#wishes) */
.pol-wishes-left {
    top: 60px;
    left: 5px;
    transform: rotate(-14deg);
}

.pol-wishes-right {
    bottom: 80px;
    right: 10px;
    transform: rotate(11deg);
}

/* Responsive adjustments for Mobile vs Desktop */
@media (max-width: 650px) {
    .portal-sticker, .ziploc-overlap-polaroid, .wishes-overlap-pol {
        transform: scale(0.75);
    }
    
    .sticker-tape-pol1 { top: 10px; left: -15px; }
    .sticker-tape-pol2 { top: 120px; right: -15px; }
    .pol-top-left { top: -20px; left: -10px; }
    .pol-bottom-right { bottom: 5px; right: -10px; }
    .pol-wishes-left { top: 30px; left: -15px; }
    .pol-wishes-right { bottom: 30px; right: -15px; }
}

@media (min-width: 900px) {
    .portal-sticker, .ziploc-overlap-polaroid, .wishes-overlap-pol {
        transform: scale(1.1);
    }
}

/* Clean Responsive Adjustments for Mobile Screens */
@media screen and (max-width: 768px) {
    .card-layout {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border: none !important;
        overflow-x: hidden !important;
    }

    .container {
        padding: 60px 8px 30px 8px !important;
        min-width: 0 !important;
    }

    .win95-top-bar {
        flex-wrap: wrap !important;
        gap: 6px !important;
    }

    .win95-back-btn {
        font-size: 0.65rem !important;
        padding: 4px 8px !important;
        white-space: nowrap !important;
    }

    .win95-task-info {
        font-size: 0.6rem !important;
    }

    .win95-app-content {
        padding: 8px !important;
    }

    .win95-media-frame {
        width: 100% !important;
        max-width: 100% !important;
    }

    .win95-media-img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 280px !important;
        object-fit: cover !important;
    }

    .cake-container {
        width: 100% !important;
        max-width: 100% !important;
    }

    .btn-blow-candle {
        font-size: 0.75rem !important;
        padding: 8px 12px !important;
        white-space: nowrap !important;
    }
}

/* ==========================================================================
   DO IT! SPOOKY JUMPSCARE OVERLAY STYLING
   ========================================================================== */

.jumpscare-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #000000;
    z-index: 9999999 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.jumpscare-overlay.active-jumpscare {
    animation: jumpscareFlash 0.12s infinite alternate;
}

@keyframes jumpscareFlash {
    0% { background: #000000; }
    33% { background: #ff0033; }
    66% { background: #ffffff; }
    100% { background: #7928ca; }
}

.jumpscare-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    animation: jumpscareZoom 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, jumpscareShake 0.08s infinite;
}

@keyframes jumpscareZoom {
    0% { transform: scale(0.1) rotate(-20deg); opacity: 0; }
    50% { transform: scale(1.35) rotate(10deg); opacity: 1; }
    100% { transform: scale(1.1) rotate(0deg); opacity: 1; }
}

@keyframes jumpscareShake {
    0% { transform: translate(0, 0) scale(1.1); }
    20% { transform: translate(-14px, 10px) scale(1.15) rotate(-4deg); }
    40% { transform: translate(16px, -12px) scale(1.08) rotate(5deg); }
    60% { transform: translate(-12px, -8px) scale(1.12) rotate(-3deg); }
    80% { transform: translate(14px, 12px) scale(1.1) rotate(3deg); }
    100% { transform: translate(0, 0) scale(1.1); }
}

.jumpscare-img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #ff0055;
    box-shadow: 0 0 50px #ff0055, 0 0 100px #ffffff;
    margin-bottom: 20px;
}

.jumpscare-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffe600;
    text-shadow: 4px 4px 0px #ff0033, -4px -4px 0px #000;
    letter-spacing: 2px;
}

.jumpscare-subtitle {
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 0px #000;
    background: #ff0055;
    padding: 6px 16px;
    border-radius: 6px;
    margin-top: 10px;
    display: inline-block;
}
