:root {
    --bg-1: #fff4f8;
    --bg-2: #ffe7ef;
    --bg-3: #ffd3dd;
    --ink: #331722;
    --muted: #6b4a57;
    --accent: #ff4f8b;
    --accent-2: #ff7aa8;
    --accent-dark: #d92c4d;
    --card: rgba(255, 255, 255, 0.78);
    --border: rgba(255, 255, 255, 0.85);
    --shadow: 0 30px 80px rgba(211, 72, 118, 0.22);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(255, 209, 221, 0.9), transparent 30%),
        radial-gradient(circle at top right, rgba(255, 241, 246, 0.95), transparent 28%),
        linear-gradient(135deg, var(--bg-1), var(--bg-2) 55%, var(--bg-3));
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
        radial-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px);
    background-position: 0 0, 24px 24px;
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent 75%);
    pointer-events: none;
}

.page-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px;
    position: relative;
}

/* =========================================
   Floating Music Player Widget
   ========================================= */
.music-widget-wrapper {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 1000;
}

.music-player-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 79, 139, 0.25);
    box-shadow: 0 10px 25px rgba(211, 72, 118, 0.18);
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 220ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.music-player-btn:hover {
    transform: translateY(-2px) scale(1.04);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 30px rgba(255, 79, 139, 0.28);
    border-color: var(--accent);
}

.music-player-btn.is-playing {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 235, 242, 0.95));
    border-color: var(--accent);
    color: var(--accent);
}

.music-equalizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 14px;
}

.music-equalizer span {
    width: 3px;
    height: 6px;
    background: var(--accent);
    border-radius: 999px;
    transition: height 180ms ease;
}

.music-player-btn.is-playing .music-equalizer span:nth-child(1) {
    animation: soundBar 0.8s ease-in-out infinite alternate;
}

.music-player-btn.is-playing .music-equalizer span:nth-child(2) {
    animation: soundBar 1.1s ease-in-out infinite alternate 0.2s;
}

.music-player-btn.is-playing .music-equalizer span:nth-child(3) {
    animation: soundBar 0.7s ease-in-out infinite alternate 0.4s;
}

.music-player-btn.is-playing .music-equalizer span:nth-child(4) {
    animation: soundBar 1s ease-in-out infinite alternate 0.1s;
}

@keyframes soundBar {
    0% { height: 4px; }
    100% { height: 14px; }
}

/* =========================================
   Hero Card & Glassmorphism
   ========================================= */
.hero-card {
    width: min(1120px, 100%);
    border: 1px solid var(--border);
    border-radius: 32px;
    background: var(--card);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    padding: clamp(24px, 4vw, 44px);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    animation: riseIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.simple-hero {
    width: min(680px, 100%);
    padding: clamp(20px, 3vw, 36px);
}

.simple-card {
    display: grid;
    gap: 22px;
    justify-items: center;
    text-align: center;
}

.simple-gif-frame {
    width: min(100%, 360px);
    padding: 14px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 44px rgba(185, 72, 111, 0.18);
}

.simple-gif-frame img {
    display: block;
    width: 100%;
    border-radius: 18px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.simple-copy {
    width: 100%;
}

.simple-copy .lead {
    margin-left: auto;
    margin-right: auto;
}

.simple-copy .cta-row {
    justify-content: center;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: auto -12% -24% auto;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 122, 168, 0.22), transparent 68%);
    filter: blur(10px);
    pointer-events: none;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 79, 139, 0.14);
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.badge-soft {
    background: rgba(255, 255, 255, 0.88);
    color: var(--muted);
}

.content-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}

.copy-column h1 {
    margin: 0;
    font-family: "Caveat", cursive;
    font-size: clamp(3.2rem, 7vw, 6.4rem);
    line-height: 0.92;
    letter-spacing: -0.02em;
    animation: floatText 4s ease-in-out infinite;
}

.eyebrow {
    margin: 0 0 10px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent);
    font-weight: 800;
}

.lead {
    margin: 18px 0 24px;
    max-width: 58ch;
    font-size: 1.06rem;
    line-height: 1.75;
    color: var(--muted);
}

/* =========================================
   Date Ideas Selector & Gallery Tabs
   ========================================= */
.date-selector-section {
    margin-bottom: 20px;
}

.section-title-row {
    margin-bottom: 12px;
}

.section-title {
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
}

.date-tabs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* =========================================
   Luxury Experience Cards System (Ultra Clean & User Friendly)
   ========================================= */
.luxury-planner-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.luxury-plan-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 24px rgba(185, 72, 111, 0.05);
    transition: transform 200ms cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 200ms cubic-bezier(0.25, 1, 0.5, 1),
                border-color 200ms ease,
                background 200ms ease;
    position: relative;
    cursor: pointer;
    text-align: left;
}

.luxury-plan-card:hover:not(.time-card-static):not(.note-card-static):not(.reaction-card-static) {
    transform: translateY(-3px) scale(1.008);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(255, 79, 139, 0.35);
    box-shadow: 0 14px 36px rgba(255, 79, 139, 0.16);
}

.time-card-static,
.note-card-static,
.reaction-card-static {
    cursor: default;
}

/* Card Avatar Icon Badges */
.card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: linear-gradient(135deg, rgba(255, 79, 139, 0.12), rgba(255, 220, 235, 0.7));
    border: 1px solid rgba(255, 79, 139, 0.22);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 79, 139, 0.1);
}

.card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 2px;
    min-width: 0;
}

.card-step-tag {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.card-main-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.card-sub-quote {
    margin: 0;
    font-family: "Caveat", cursive;
    font-size: 1.18rem;
    color: #e11d48;
    font-weight: 600;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Card Action Button */
.card-action {
    flex-shrink: 0;
}

.card-action-btn {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #ff2f73);
    color: white;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 79, 139, 0.3);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.luxury-plan-card:hover .card-action-btn {
    transform: scale(1.06);
    box-shadow: 0 6px 18px rgba(255, 79, 139, 0.45);
}

/* 2-Column Responsive Row */
.luxury-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 780px) {
    .luxury-grid-row {
        grid-template-columns: 1fr;
    }
}

/* Sleek Time Pills */
.sleek-time-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.sleek-pill {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 79, 139, 0.2);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    transition: all 160ms ease;
}

.sleek-pill:hover {
    background: white;
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 79, 139, 0.15);
}

.sleek-pill.active {
    background: linear-gradient(135deg, var(--accent), #ff2f73);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(255, 79, 139, 0.32);
}

/* Luxury Sleek Textarea */
.sleek-luxury-textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1.5px solid rgba(255, 79, 139, 0.2);
    font-family: inherit;
    font-size: 0.88rem;
    color: var(--ink);
    line-height: 1.5;
    resize: vertical;
    outline: none;
    margin-top: 6px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.sleek-luxury-textarea:focus {
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 79, 139, 0.18);
}

/* Suggestion Tags */
.quick-tag-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.suggestion-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 79, 139, 0.08);
    border: 1px dashed rgba(255, 79, 139, 0.35);
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--accent);
    cursor: pointer;
    transition: all 150ms ease;
    user-select: none;
}

.suggestion-tag:hover {
    background: rgba(255, 79, 139, 0.18);
    transform: scale(1.05);
}

/* Reaction Buttons Row */
.reaction-buttons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.reaction-btn {
    padding: 7px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 79, 139, 0.22);
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(185, 72, 111, 0.05);
    transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.reaction-btn:hover {
    transform: scale(1.12);
    background: white;
    box-shadow: 0 6px 18px rgba(255, 79, 139, 0.25);
    border-color: var(--accent);
}

/* Date Summary Confirmation Modal */
.date-summary-modal {
    margin-top: 24px;
    padding: 22px 26px;
    border-radius: 26px;
    background: linear-gradient(135deg, #ffffff, #fff2f6);
    border: 2px solid var(--accent);
    box-shadow: 0 20px 50px rgba(255, 79, 139, 0.25);
    position: relative;
    animation: riseIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.summary-card-inner h3 {
    margin: 0 0 16px;
    color: var(--accent);
    font-size: 1.35rem;
    font-weight: 800;
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 1.1rem;
    color: var(--muted);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 50%;
    transition: color 150ms ease;
}

.modal-close-btn:hover {
    color: var(--accent);
}

.summary-details-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
    text-align: left;
}

.summary-item-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid rgba(255, 79, 139, 0.2);
    box-shadow: 0 4px 14px rgba(185, 72, 111, 0.05);
}

.summary-item-label {
    font-weight: 800;
    color: var(--accent);
    min-width: 90px;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
}

.summary-item-value {
    color: var(--ink);
    font-weight: 700;
    font-size: 0.98rem;
    flex-grow: 1;
}

.summary-footer-note {
    margin: 16px 0 0;
    font-family: "Caveat", cursive;
    font-size: 1.45rem;
    color: #e11d48;
    font-weight: 700;
    line-height: 1.4;
}

/* =========================================
   Big Technological Cyber-Glass Pop-up Modal
   ========================================= */
.vibe-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(12, 3, 18, 0.9);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    z-index: 999999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(20px, 3.5vw, 40px) 16px;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    animation: modalBackdropFade 0.25s ease forwards;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 79, 139, 0.75) rgba(15, 3, 20, 0.5);
}

.vibe-modal-backdrop::-webkit-scrollbar {
    width: 12px;
}

.vibe-modal-backdrop::-webkit-scrollbar-track {
    background: rgba(15, 3, 20, 0.5);
}

.vibe-modal-backdrop::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff4f8b, #ff2f73);
    border-radius: 999px;
    border: 2px solid rgba(15, 3, 20, 0.5);
    box-shadow: 0 0 12px rgba(255, 79, 139, 0.6);
}

.vibe-modal-backdrop::-webkit-scrollbar-thumb:hover {
    background: #ff1464;
}

@keyframes modalBackdropFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Ambient Neon Glow Orbs behind Modal */
.cyber-modal-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
    opacity: 0.6;
}

.cyber-modal-orb.orb-a {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 79, 139, 0.45) 0%, rgba(255, 79, 139, 0) 70%);
    top: 15%;
    left: 10%;
    animation: floatOrb 12s ease-in-out infinite alternate;
}

.cyber-modal-orb.orb-b {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.4) 0%, rgba(129, 140, 248, 0) 70%);
    bottom: 12%;
    right: 12%;
    animation: floatOrb 15s ease-in-out infinite alternate-reverse;
}

/* Grand Technological Glass Card (Extra Large, Centred & Smoothly Scrollable) */
.cyber-glass-card {
    position: relative !important;
    width: min(96vw, 1100px) !important;
    margin: 20px auto 40px auto !important;
    flex-shrink: 0 !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 240, 248, 0.94) 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.95) !important;
    border-radius: 36px !important;
    padding: clamp(24px, 3.8vw, 42px) !important;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.65), 
                0 0 60px rgba(255, 79, 139, 0.35), 
                inset 0 1px 2px rgba(255, 255, 255, 1) !important;
    animation: modalCardPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    z-index: 10 !important;
}

@keyframes modalCardPop {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(28px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.cyber-close {
    position: absolute;
    top: 22px;
    right: 26px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 1.5px solid rgba(255, 79, 139, 0.25);
    color: var(--muted);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 180ms ease;
    z-index: 20;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.cyber-close:hover {
    background: var(--accent);
    color: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 79, 139, 0.45);
}

/* 2-Column Grand Responsive Grid Layout */
.cyber-modal-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 36px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .cyber-modal-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Left Column: Panoramic Widescreen Showcase */
.cyber-showcase-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.carousel-hud-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-inline: 4px;
}

.hud-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #e11d48;
    background: rgba(255, 79, 139, 0.12);
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 79, 139, 0.25);
}

.hud-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e11d48;
    box-shadow: 0 0 8px #e11d48;
    animation: livePulse 1.2s ease-in-out infinite alternate;
}

@keyframes livePulse {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(1.3); opacity: 1; }
}

.hud-counter {
    font-family: 'Inter', monospace;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--muted);
    letter-spacing: 0.08em;
}

.cyber-carousel {
    position: relative;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #000;
    border: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32), 0 0 35px rgba(255, 79, 139, 0.25);
}

.carousel-track {
    display: flex;
    width: 100%;
    transition: transform 600ms cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    aspect-ratio: 16 / 11;
    max-height: 420px;
    position: relative;
}

@media (max-width: 900px) {
    .carousel-slide {
        aspect-ratio: 16 / 9;
        max-height: 250px;
    }
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-caption-badge {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(12, 3, 18, 0.84);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: white;
    padding: 8px 22px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.badge-icon {
    font-size: 1.2rem;
}

/* Floating Glass Arrow Controls */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    color: var(--ink);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 180ms ease;
    z-index: 8;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.carousel-nav-btn:hover {
    background: white;
    color: var(--accent);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 28px rgba(255, 79, 139, 0.45);
}

.prev-btn { left: 14px; }
.next-btn { right: 14px; }

/* Segmented Progress Line */
.carousel-progress-track {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 6;
}

.carousel-progress-fill {
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, #ff4f8b, #ff7aa8, #ffffff);
    box-shadow: 0 0 12px rgba(255, 79, 139, 0.9);
    transition: width 350ms cubic-bezier(0.25, 1, 0.5, 1);
}

/* Dots Row */
.carousel-dots-row {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 14px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 79, 139, 0.25);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: all 220ms ease;
}

.carousel-dot.active {
    width: 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #ff2f73);
    box-shadow: 0 0 14px rgba(255, 79, 139, 0.6);
}

/* =========================================
   Cyber Glass Clock Styling (Time Modal)
   ========================================= */
.cyber-clock-wrapper {
    background: radial-gradient(circle at center, rgba(255, 240, 248, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    padding: 24px 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), 0 0 25px rgba(255, 79, 139, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.cyber-clock-circle {
    position: relative;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: linear-gradient(135deg, #18091f, #2d0b2b);
    border: 3px solid rgba(255, 79, 139, 0.5);
    box-shadow: 0 0 25px rgba(255, 79, 139, 0.35), inset 0 0 20px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.clock-glow-ring {
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 79, 139, 0.4);
    pointer-events: none;
    animation: rotateSlow 40s linear infinite;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.clock-center-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff4f8b;
    box-shadow: 0 0 10px #ff4f8b;
    z-index: 10;
}

.clock-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: 50% 100%;
    border-radius: 999px;
    transition: transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.clock-hand.hour-hand {
    width: 4px;
    height: 42px;
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    transform: translateX(-50%) rotate(315deg);
    z-index: 6;
}

.clock-hand.minute-hand {
    width: 3px;
    height: 62px;
    background: linear-gradient(to top, #ff4f8b, #ff7aa8);
    box-shadow: 0 0 10px #ff4f8b;
    transform: translateX(-50%) rotate(180deg);
    z-index: 8;
}

.clock-num {
    position: absolute;
    font-family: 'Inter', monospace;
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.75);
    user-select: none;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.clock-num.num-12 { top: 12%; left: 50%; }
.clock-num.num-1  { top: 17%; left: 70%; }
.clock-num.num-2  { top: 30%; left: 83%; }
.clock-num.num-3  { top: 50%; left: 88%; }
.clock-num.num-4  { top: 70%; left: 83%; }
.clock-num.num-5  { top: 83%; left: 70%; }
.clock-num.num-6  { top: 88%; left: 50%; }
.clock-num.num-7  { top: 83%; left: 30%; }
.clock-num.num-8  { top: 70%; left: 17%; }
.clock-num.num-9  { top: 50%; left: 12%; }
.clock-num.num-10 { top: 30%; left: 17%; }
.clock-num.num-11 { top: 17%; left: 30%; }

/* Hand Arrow Tips */
.hand-arrow-tip {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--accent);
    box-shadow: 0 0 10px rgba(255, 79, 139, 0.9);
    cursor: grab;
    transition: transform 120ms ease;
}

.hand-arrow-tip:hover {
    transform: translateX(-50%) scale(1.3);
}

.hand-arrow-tip.min-tip {
    background: #ff4f8b;
    border-color: #ffffff;
}

/* Stepper Controls Console */
.clock-stepper-console {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.85);
    padding: 10px 18px;
    border-radius: 20px;
    border: 1.5px solid rgba(255, 79, 139, 0.2);
    box-shadow: 0 4px 16px rgba(185, 72, 111, 0.08);
}

.stepper-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stepper-arrow-btn {
    width: 32px;
    height: 24px;
    border-radius: 8px;
    background: rgba(255, 79, 139, 0.1);
    border: 1px solid rgba(255, 79, 139, 0.25);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 140ms ease;
}

.stepper-arrow-btn:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.12);
    box-shadow: 0 4px 10px rgba(255, 79, 139, 0.35);
}

.stepper-val {
    font-family: 'Inter', monospace;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.1;
    min-width: 32px;
    text-align: center;
}

.stepper-label {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.stepper-separator {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 12px;
}

.stepper-ampm-unit {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: 4px;
}

.ampm-toggle-btn {
    padding: 4px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 79, 139, 0.2);
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 150ms ease;
}

.ampm-toggle-btn.active {
    background: linear-gradient(135deg, var(--accent), #ff2f73);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(255, 79, 139, 0.35);
}

.digital-time-readout {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: 'Inter', monospace;
}

.digital-time-digits {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-shadow: 0 2px 10px rgba(255, 79, 139, 0.25);
}

.digital-time-ampm {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
}

/* =========================================
   Cyber Glass Calendar Styling
   ========================================= */
.cyber-calendar-wrapper {
    background: rgba(255, 255, 255, 0.88);
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    padding: 20px 22px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), 0 0 25px rgba(255, 79, 139, 0.15);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calendar-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 79, 139, 0.18);
}

.cal-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 79, 139, 0.25);
    color: var(--ink);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 160ms ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.cal-nav-btn:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 79, 139, 0.35);
}

.cal-current-label {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.calendar-weekdays-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding-bottom: 4px;
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.cal-day-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 79, 139, 0.12);
    transition: all 150ms ease;
    user-select: none;
}

.cal-day-cell:hover:not(.disabled) {
    background: white;
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.12);
    box-shadow: 0 4px 12px rgba(255, 79, 139, 0.25);
    z-index: 2;
}

.cal-day-cell.active {
    background: linear-gradient(135deg, var(--accent), #ff2f73) !important;
    color: white !important;
    border-color: transparent !important;
    font-weight: 800 !important;
    box-shadow: 0 6px 18px rgba(255, 79, 139, 0.45) !important;
    transform: scale(1.08);
}

.cal-day-cell.today {
    border: 2px solid var(--accent);
    font-weight: 800;
    color: var(--accent);
}

.cal-day-cell.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    background: transparent;
    border-color: transparent;
}

.calendar-selected-badge {
    margin-top: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 79, 139, 0.1);
    border: 1px solid rgba(255, 79, 139, 0.28);
    color: var(--accent);
    font-size: 0.84rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

/* Right Column: Cyber-Glass Radio Matrix */
.cyber-controls-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cyber-controls-column .modal-header {
    text-align: left;
    margin-bottom: 16px;
}

.cyber-controls-column .modal-header-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255, 79, 139, 0.1);
    border: 1px solid rgba(255, 79, 139, 0.28);
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.cyber-controls-column .modal-header-title {
    margin: 0 0 4px;
    font-size: clamp(1.5rem, 3.2vw, 1.85rem);
    font-weight: 800;
    color: var(--ink);
}

.cyber-controls-column .modal-header-sub {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.45;
}

/* Radio Buttons Group */
.vibe-radio-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 14px;
}

.vibe-radio-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1.5px solid rgba(255, 79, 139, 0.18);
    box-shadow: 0 4px 14px rgba(185, 72, 111, 0.04);
    cursor: pointer;
    transition: all 180ms cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    user-select: none;
}

.vibe-radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.custom-radio-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255, 79, 139, 0.35);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 180ms ease;
    flex-shrink: 0;
}

.vibe-radio-card input[type="radio"]:checked + .custom-radio-circle {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 79, 139, 0.22);
}

.vibe-radio-card input[type="radio"]:checked + .custom-radio-circle::after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: white;
}

.vibe-radio-icon {
    font-size: 1.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.vibe-radio-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vibe-radio-text {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--ink);
}

.vibe-radio-sub {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
}

.vibe-radio-card:hover {
    background: #ffffff;
    border-color: var(--accent);
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(255, 79, 139, 0.18);
}

.vibe-radio-card.active {
    background: linear-gradient(135deg, rgba(255, 79, 139, 0.14), rgba(244, 230, 255, 0.9));
    border-color: var(--accent);
    box-shadow: 0 8px 28px rgba(255, 79, 139, 0.25);
}

.vibe-radio-card.active .vibe-radio-text {
    color: var(--accent);
}

/* Custom Choice Expandable Input */
.cyber-custom-box {
    margin: 8px 0 14px;
    padding: 14px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px dashed var(--accent);
    box-shadow: 0 8px 24px rgba(255, 79, 139, 0.14);
    animation: riseIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cyber-input {
    background: #ffffff;
    border-color: rgba(255, 79, 139, 0.35);
    padding: 11px 16px;
    font-size: 0.95rem;
}

.cyber-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 79, 139, 0.25), 0 0 18px rgba(255, 79, 139, 0.2);
}

.cyber-confirm-btn {
    width: 100%;
    padding: 17px 28px;
    border-radius: 999px;
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, var(--accent), #ff2f73, #9333ea);
    box-shadow: 0 16px 40px rgba(255, 79, 139, 0.42);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.cyber-confirm-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 79, 139, 0.58), 0 0 30px rgba(147, 51, 234, 0.4);
}

/* =========================================
   Buttons & Interaction Controls
   ========================================= */
.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.choice-stage {
    position: relative;
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
}

button {
    border: 0;
    cursor: pointer;
    font: inherit;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.primary-btn,
.secondary-btn {
    padding: 15px 26px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.01em;
    font-size: 1.05rem;
}

.primary-btn {
    color: white;
    background: linear-gradient(135deg, var(--accent), #ff2f73);
    box-shadow: 0 18px 35px rgba(255, 79, 139, 0.35);
}

.pulse-glow {
    animation: gentleGlow 2.5s ease-in-out infinite alternate;
}

.pulse-strong {
    animation: strongGlow 1.2s ease-in-out infinite alternate;
}

@keyframes gentleGlow {
    0% { box-shadow: 0 14px 30px rgba(255, 79, 139, 0.3); }
    100% { box-shadow: 0 20px 45px rgba(255, 79, 139, 0.55), 0 0 24px rgba(255, 79, 139, 0.35); }
}

@keyframes strongGlow {
    0% { box-shadow: 0 18px 40px rgba(255, 79, 139, 0.45); }
    100% { box-shadow: 0 26px 55px rgba(255, 79, 139, 0.75), 0 0 35px rgba(255, 79, 139, 0.55); }
}

.secondary-btn {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 79, 139, 0.25);
    box-shadow: 0 10px 24px rgba(211, 72, 118, 0.1);
}

.runaway-btn {
    min-width: 120px;
    background: linear-gradient(135deg, #ffffff, #fff0f5);
    border: 2px solid rgba(255, 79, 139, 0.28);
    color: var(--accent);
    cursor: pointer;
    user-select: none;
    touch-action: manipulation;
}

.runaway-btn.is-floating {
    position: fixed !important;
    z-index: 999999 !important;
    margin: 0 !important;
    background: #ffffff !important;
    border: 2px solid var(--accent) !important;
    color: var(--accent) !important;
    white-space: nowrap !important;
    pointer-events: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: top 180ms cubic-bezier(0.34, 1.56, 0.64, 1),
                left 180ms cubic-bezier(0.34, 1.56, 0.64, 1),
                transform 150ms ease,
                box-shadow 180ms ease !important;
    box-shadow: 0 16px 36px rgba(255, 79, 139, 0.45), 0 0 0 4px rgba(255, 79, 139, 0.18) !important;
    animation: dodgeShake 250ms ease-out;
}

@keyframes dodgeShake {
    0% { transform: scale(0.9) rotate(-6deg); }
    50% { transform: scale(1.1) rotate(6deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.poof-cloud {
    position: fixed;
    transform: translate(-50%, -50%);
    font-size: 28px;
    pointer-events: none;
    z-index: 998;
    animation: poofFade 0.6s ease-out forwards;
}

@keyframes poofFade {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(0.6); }
    100% { opacity: 0; transform: translate(-50%, -80%) scale(1.6); }
}

.secondary-link {
    box-shadow: inset 0 0 0 1px rgba(255, 79, 139, 0.06);
}

button:hover {
    transform: translateY(-3px) scale(1.02);
}

button:active {
    transform: translateY(0) scale(0.98);
}

.response-text {
    margin-top: 20px;
    min-height: 64px;
    padding: 16px 20px;
    border-radius: 20px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.72);
    border: 1px dashed rgba(255, 79, 139, 0.28);
    line-height: 1.65;
    transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.response-text.pop {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
    border-color: var(--accent);
}

/* =========================================
   Visual Column & GIF Showcase
   ========================================= */
.visual-column {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
}

.gif-frame {
    width: min(100%, 420px);
    padding: 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 24px 60px rgba(185, 72, 111, 0.22);
    transform: rotate(-3deg);
    animation: bob 6s ease-in-out infinite;
    position: relative;
}

.gif-frame.pop-bounce {
    animation: popBounce 0.5s ease;
}

@keyframes popBounce {
    0% { transform: scale(0.92) rotate(-3deg); }
    50% { transform: scale(1.04) rotate(-1deg); }
    100% { transform: scale(1) rotate(-3deg); }
}

.gif-frame img {
    display: block;
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.gif-overlay-badge {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 79, 139, 0.2);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    pointer-events: none;
    white-space: nowrap;
}

.mini-card {
    position: absolute;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 16px 30px rgba(137, 56, 88, 0.12);
    max-width: 210px;
    backdrop-filter: blur(10px);
    animation: drift 5s ease-in-out infinite;
}

.mini-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--accent);
    font-weight: 800;
}

.mini-card strong {
    display: block;
    font-size: 0.96rem;
    line-height: 1.45;
}

.tilt-left {
    left: -10px;
    bottom: 50px;
    transform: rotate(-8deg);
}

.tilt-right {
    right: 8px;
    top: 28px;
    transform: rotate(7deg);
    animation-delay: 0.8s;
}

/* =========================================
   Particles & Sparkles
   ========================================= */
.cursor-sparkle {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    animation: sparkleFloat 0.8s ease-out forwards;
    filter: drop-shadow(0 2px 6px rgba(255, 79, 139, 0.4));
}

@keyframes sparkleFloat {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(0.6) rotate(0deg); }
    100% { opacity: 0; transform: translate(-50%, -120%) scale(1.3) rotate(45deg); }
}

.love-burst-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 800;
}

.love-burst-piece {
    position: absolute;
    top: -24px;
    font-size: 1.2rem;
    opacity: 0;
    animation: loveRise 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    filter: drop-shadow(0 8px 14px rgba(255, 79, 139, 0.25));
}

.confetti-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 850;
}

.confetti-piece {
    position: absolute;
    top: -20px;
    width: 12px;
    height: 18px;
    border-radius: 3px;
    opacity: 0.95;
    animation: fall linear forwards;
}

.bg-orb {
    position: fixed;
    border-radius: 999px;
    filter: blur(24px);
    opacity: 0.65;
    pointer-events: none;
    mix-blend-mode: screen;
}

.orb-one {
    width: 260px;
    height: 260px;
    background: rgba(255, 122, 168, 0.35);
    top: 5%;
    left: 3%;
    animation: floatOrb 14s ease-in-out infinite;
}

.orb-two {
    width: 320px;
    height: 320px;
    background: rgba(255, 214, 229, 0.85);
    bottom: 6%;
    right: 5%;
    animation: floatOrb 18s ease-in-out infinite reverse;
}

.orb-three {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.65);
    top: 40%;
    right: 22%;
    animation: floatOrb 12s ease-in-out infinite;
}

/* =========================================
   Animations Keyframes
   ========================================= */
@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(36px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@keyframes loveRise {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.7) rotate(0deg);
    }
    15% { opacity: 1; }
    100% {
        opacity: 0;
        transform: translateY(-145vh) scale(1.25) rotate(24deg);
    }
}

@keyframes floatText {
    0%, 100% { transform: translateY(0px) rotate(-1deg); }
    50% { transform: translateY(-4px) rotate(1deg); }
}

@keyframes bob {
    0%, 100% { transform: translateY(0px) rotate(-3deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes drift {
    0%, 100% { transform: translateY(0px) rotate(var(--card-rotation, 0deg)); }
    50% { transform: translateY(-8px) rotate(var(--card-rotation, 0deg)); }
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(22px, -18px) scale(1.1); }
}

@keyframes fall {
    to {
        transform: translateY(110vh) rotate(720deg);
        opacity: 0;
    }
}

/* =========================================
   Sparkling Pink & White Sand 3D Heart Loader
   ========================================= */
.love-loader-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    background: radial-gradient(circle at center, #290618 0%, #15020c 60%, #070004 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: grab;
    transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), visibility 800ms;
}

.love-loader-overlay:active {
    cursor: grabbing;
}

.love-loader-overlay::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 79, 139, 0.32) 0%, rgba(255, 143, 177, 0.12) 50%, transparent 70%);
    filter: blur(45px);
    pointer-events: none;
    animation: sandAuraPulse 3.5s ease-in-out infinite alternate;
}

@keyframes sandAuraPulse {
    0% { transform: scale(0.85); opacity: 0.6; }
    100% { transform: scale(1.3); opacity: 1; filter: blur(60px); }
}

.love-loader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.love-3d-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    display: block;
}

.loader-text-wrapper {
    position: absolute;
    bottom: clamp(24px, 6vh, 55px);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-inline: 20px;
    text-align: center;
    pointer-events: none;
}

.loader-subtitle {
    margin: 0;
    font-family: "Caveat", cursive;
    font-size: clamp(2.2rem, 5.2vw, 3.4rem);
    color: #ff85a2;
    font-weight: 700;
    text-shadow: 0 0 25px rgba(255, 79, 139, 0.85), 0 2px 6px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.02em;
    min-height: 44px;
    transition: opacity 300ms ease;
    animation: textGlowPulse 1.8s ease-in-out infinite alternate;
}

@keyframes textGlowPulse {
    0% { transform: scale(0.98); opacity: 0.9; }
    100% { transform: scale(1.02); opacity: 1; text-shadow: 0 0 35px rgba(255, 133, 162, 1), 0 2px 8px rgba(0,0,0,0.9); }
}

.loader-progress-bar {
    width: min(300px, 72vw);
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 18px rgba(255, 79, 139, 0.4);
    border: 1px solid rgba(255, 143, 177, 0.35);
}

.loader-progress-bar span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff4f8b, #ffffff, #ffa6c1, #ffffff, #ff4f8b);
    background-size: 250% 100%;
    border-radius: 999px;
    box-shadow: 0 0 16px rgba(255, 79, 139, 0.9);
    transition: width 6.8s cubic-bezier(0.1, 0.8, 0.25, 1);
    animation: progressShimmer 2s linear infinite;
}

@keyframes progressShimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.blast-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 0px solid rgba(255, 79, 139, 0.9);
    box-shadow: 0 0 70px rgba(255, 79, 139, 0.95), inset 0 0 50px rgba(255, 255, 255, 0.9);
    pointer-events: none;
    opacity: 0;
    z-index: 10;
}

/* =========================================
   Sweet Love Reaction Spotlight GIF Modal
   ========================================= */
.reaction-spotlight-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 2, 16, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 18px;
    animation: spotlightFadeIn 0.25s ease forwards;
    cursor: pointer;
}

@keyframes spotlightFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.spotlight-dark-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.85) 100%);
}

.reaction-spotlight-card {
    position: relative;
    width: min(92vw, 420px);
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 240, 248, 0.94) 100%);
    border: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6), 0 0 50px rgba(255, 79, 139, 0.4);
    padding: 22px 20px 18px;
    text-align: center;
    z-index: 10;
    animation: spotlightPop 0.38s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    cursor: default;
}

@keyframes spotlightPop {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(24px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.spotlight-gif-frame {
    width: 100%;
    height: 250px;
    border-radius: 22px;
    overflow: hidden;
    background: #000;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.spotlight-gif-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.spotlight-reaction-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(12, 3, 18, 0.84);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.spotlight-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ink);
    margin: 14px 0 3px;
}

.spotlight-subtitle {
    font-family: "Caveat", cursive;
    font-size: 1.25rem;
    color: #e11d48;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 12px;
}

.spotlight-timer-track {
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 79, 139, 0.2);
    overflow: hidden;
    margin-bottom: 8px;
}

.spotlight-timer-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #ff4f8b, #ff7aa8, #ffffff);
    transform-origin: left;
}

.spotlight-timer-fill.animating {
    animation: timerProgress 3.5s linear forwards;
}

@keyframes timerProgress {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

.spotlight-dismiss-hint {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.03em;
}

/* =========================================
   Universal Responsive Breakpoints (Mobile, Tablet, Desktop)
   ========================================= */

/* Tablets & Small Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 24px;
    }

    .cyber-modal-grid {
        gap: 24px;
    }

    .cyber-glass-card {
        padding: 28px 24px;
        width: 96vw;
    }
}

/* Medium Tablets & Large Phones (max-width: 900px) */
@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cyber-modal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .visual-column {
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 16px;
        padding-top: 10px;
    }

    .gif-frame {
        transform: none;
        width: min(100%, 360px);
        animation: none;
    }

    .mini-card {
        position: static;
        margin: 0;
        max-width: min(100%, 360px);
        width: 100%;
        text-align: center;
        transform: none !important;
    }

    .music-widget-wrapper {
        top: 12px;
        right: 12px;
    }

    .carousel-slide {
        aspect-ratio: 16 / 10;
        max-height: 280px;
    }
}

/* Mobile Devices & Phones (max-width: 640px) */
@media (max-width: 640px) {
    .page-shell {
        padding: 10px 8px 36px 8px;
        padding-top: 52px;
        min-height: 100vh;
        width: 100%;
    }

    .music-widget-wrapper {
        top: 8px;
        right: 8px;
    }

    .music-player-btn {
        padding: 5px 11px;
        font-size: 0.72rem;
        gap: 6px;
        box-shadow: 0 4px 14px rgba(211, 72, 118, 0.16);
    }

    .music-equalizer {
        height: 11px;
        gap: 2px;
    }

    .music-equalizer span {
        width: 2px;
    }

    .hero-card {
        border-radius: 22px;
        padding: 18px 12px;
        width: 100%;
    }

    .simple-hero {
        padding: 16px 12px;
    }

    .simple-card {
        gap: 16px;
    }

    .copy-column h1,
    .simple-copy h1 {
        font-size: clamp(1.65rem, 7vw, 2.2rem);
        line-height: 1.22;
    }

    .eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.07em;
    }

    .lead {
        font-size: 0.9rem;
        line-height: 1.48;
    }

    .cta-row {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .choice-stage {
        min-height: 60px;
        width: 100%;
    }

    .primary-btn,
    .secondary-btn,
    .cyber-confirm-btn {
        width: 100%;
        justify-content: center;
        padding: 13px 18px;
        font-size: 0.98rem;
        box-sizing: border-box;
    }

    .runaway-btn.is-floating {
        width: auto !important;
        padding: 11px 22px !important;
        font-size: 0.95rem !important;
    }

    .simple-gif-frame {
        width: min(100%, 250px);
        height: 200px;
        border-radius: 18px;
    }

    /* Step Cards on Mobile */
    .step-card {
        padding: 16px 12px;
        border-radius: 20px;
        gap: 12px;
    }

    .vibe-preview-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 12px;
    }

    .step-action-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }

    /* Modal Backdrop & Glass Card on Mobile */
    .vibe-modal-backdrop {
        padding: 10px 6px 30px 6px !important;
    }

    .cyber-glass-card {
        padding: 18px 12px !important;
        border-radius: 22px !important;
        margin: 6px auto 24px auto !important;
        width: 96vw !important;
    }

    .cyber-close {
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .modal-header-title {
        font-size: 1.35rem !important;
        line-height: 1.25 !important;
    }

    .modal-header-sub {
        font-size: 0.78rem !important;
    }

    /* Carousel on Mobile */
    .carousel-slide {
        aspect-ratio: 16 / 9;
        max-height: 200px;
    }

    .slide-caption-badge {
        font-size: 0.76rem;
        padding: 5px 14px;
        bottom: 10px;
    }

    .carousel-nav-btn {
        width: 34px;
        height: 34px;
        font-size: 1.3rem;
    }

    /* Vibe Radio Cards on Mobile */
    .vibe-radio-group {
        gap: 8px;
    }

    .vibe-radio-card {
        padding: 10px 12px;
        gap: 10px;
        border-radius: 14px;
    }

    .vibe-radio-text {
        font-size: 0.9rem;
    }

    .vibe-radio-sub {
        font-size: 0.72rem;
        line-height: 1.25;
    }

    .vibe-radio-icon {
        font-size: 1.3rem;
    }

    /* Calendar on Mobile */
    .cyber-calendar-wrapper {
        padding: 12px 10px;
        border-radius: 18px;
        gap: 8px;
    }

    .cal-current-label {
        font-size: 0.9rem;
    }

    .cal-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }

    .calendar-weekdays-grid {
        font-size: 0.65rem;
        padding-bottom: 2px;
    }

    .calendar-days-grid {
        gap: 3px;
    }

    .cal-day-cell {
        font-size: 0.8rem;
        border-radius: 8px;
        min-height: 32px;
    }

    .calendar-selected-badge {
        font-size: 0.76rem;
        padding: 6px 12px;
    }

    /* Clock Widget on Mobile */
    .cyber-clock-wrapper {
        padding: 14px 10px;
        border-radius: 18px;
        gap: 10px;
    }

    .cyber-clock-circle {
        width: 140px;
        height: 140px;
    }

    .clock-hand.hour-hand {
        height: 34px;
    }

    .clock-hand.minute-hand {
        height: 48px;
    }

    .clock-num {
        font-size: 0.62rem;
    }

    .clock-stepper-console {
        padding: 6px 10px;
        gap: 6px;
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }

    .stepper-val {
        font-size: 1.1rem;
        min-width: 24px;
    }

    .stepper-arrow-btn {
        width: 26px;
        height: 20px;
        font-size: 0.65rem;
    }

    .digital-time-digits {
        font-size: 1.7rem;
    }

    .digital-time-ampm {
        font-size: 0.9rem;
    }

    /* Reactions Grid on Mobile */
    .reaction-buttons-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
    }

    .reaction-btn {
        padding: 8px 4px !important;
        font-size: 0.74rem !important;
    }

    .reaction-btn-icon {
        font-size: 1.3rem !important;
    }

    .suggestion-tags-row {
        gap: 6px;
    }

    .suggestion-tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    /* Proposal Page Mobile */
    .teaser-card {
        padding: 20px 14px !important;
        border-radius: 24px !important;
        width: 95vw !important;
    }

    .teaser-icon-wrapper {
        width: 64px;
        height: 64px;
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .teaser-title {
        font-size: 1.3rem !important;
    }

    .teaser-subtitle {
        font-size: 1.05rem !important;
        margin-bottom: 16px;
    }

    .quote-highlight {
        font-size: 1.18rem !important;
        padding: 12px 14px !important;
    }

    .summary-receipt-card {
        padding: 10px 12px !important;
    }

    .receipt-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 2px !important;
        padding: 6px 0 !important;
    }

    .receipt-val {
        text-align: left !important;
        font-size: 0.88rem !important;
    }

    .email-status-badge {
        font-size: 0.75rem !important;
        padding: 7px 12px !important;
        text-align: center;
    }

    /* Spotlight Modal on Mobile */
    .reaction-spotlight-card {
        width: 94vw !important;
        max-width: 340px !important;
        padding: 16px 12px !important;
        border-radius: 22px !important;
    }

    .spotlight-gif-frame {
        height: 190px !important;
        border-radius: 16px !important;
    }

    .spotlight-title {
        font-size: 1.15rem !important;
    }

    .spotlight-subtitle {
        font-size: 1.05rem !important;
    }
}

/* Extra Small Phones (max-width: 380px: iPhone SE, Galaxy A) */
@media (max-width: 380px) {
    .copy-column h1,
    .simple-copy h1 {
        font-size: 1.48rem;
    }

    .reaction-buttons-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .cal-day-cell {
        min-height: 28px;
        font-size: 0.72rem;
    }

    .cyber-clock-circle {
        width: 124px;
        height: 124px;
    }

    .digital-time-digits {
        font-size: 1.45rem;
    }
}

/* =========================================
   Final Proposal Page & Question Teaser Overlay
   ========================================= */
.question-teaser-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: radial-gradient(circle at center, rgba(28, 6, 32, 0.94) 0%, rgba(10, 2, 14, 0.98) 100%);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
}

.question-teaser-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.teaser-card {
    position: relative;
    width: min(92vw, 520px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 240, 248, 0.94) 100%);
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 36px;
    padding: clamp(28px, 5vw, 44px) clamp(20px, 4vw, 36px);
    text-align: center;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 79, 139, 0.4);
    animation: modalCardPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.teaser-icon-wrapper {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4f8b, #ff2f73);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 12px 36px rgba(255, 79, 139, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.6);
    animation: pulseHeart 2s infinite ease-in-out;
}

.teaser-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(255, 79, 139, 0.12);
    border: 1px solid rgba(255, 79, 139, 0.3);
    border-radius: 999px;
    color: #e11d48;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.teaser-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 10px;
    line-height: 1.25;
}

.teaser-subtitle {
    font-family: "Caveat", cursive;
    font-size: 1.35rem;
    color: #e11d48;
    font-weight: 600;
    margin: 0 0 24px;
}

.teaser-progress-bar {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 79, 139, 0.15);
    overflow: hidden;
    margin-bottom: 24px;
}

.teaser-progress-fill {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff4f8b, #ff7aa8, #ff2f73);
    border-radius: 999px;
    box-shadow: 0 0 12px rgba(255, 79, 139, 0.6);
    transition: width 2.4s linear;
}

/* Success Celebration View on Proposal Page */
.proposal-success-box {
    animation: modalCardPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    text-align: center;
    width: 100%;
}

.quote-highlight {
    background: linear-gradient(135deg, rgba(255, 79, 139, 0.08), rgba(255, 235, 245, 0.7));
    border: 1.5px solid rgba(255, 79, 139, 0.25);
    border-radius: 20px;
    padding: 16px 20px;
    margin: 18px 0;
    font-family: "Caveat", cursive;
    font-size: 1.45rem;
    font-weight: 600;
    color: #be123c;
    line-height: 1.4;
    box-shadow: 0 8px 24px rgba(255, 79, 139, 0.1);
}

.email-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(16, 185, 129, 0.12);
    border: 1.5px solid rgba(16, 185, 129, 0.4);
    border-radius: 999px;
    color: #065f46;
    font-size: 0.88rem;
    font-weight: 700;
    margin: 12px auto;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.email-status-badge.sending {
    background: rgba(255, 79, 139, 0.12);
    border-color: rgba(255, 79, 139, 0.35);
    color: #be123c;
}

.summary-receipt-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 79, 139, 0.2);
    border-radius: 20px;
    padding: 16px 20px;
    margin: 16px 0;
    text-align: left;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 79, 139, 0.2);
    font-size: 0.92rem;
}

.receipt-row:last-child {
    border-bottom: none;
}

.receipt-label {
    font-weight: 700;
    color: var(--muted);
}

.receipt-val {
    font-weight: 800;
    color: var(--ink);
    text-align: right;
}