/* ==========================================================================
   Tasarım Sistemi & Global Ayarlar
   ========================================================================== */
:root {
    /* Renk Paleti (Romantik Mor & Büyülü Altın/Pembe) - KOYU TEMA */
    --bg-dark: #090114;
    --bg-gradient: linear-gradient(135deg, #090114 0%, #17042b 50%, #290847 100%);
    --primary-purple: #8e44ad;
    --primary-light: #b378d3;
    --accent-pink: #ff3377;
    --accent-gold: #ffd700;
    --text-light: #ffffff;
    --text-muted: #cdb4db;
    
    /* Cam Efekti (Glassmorphism) Tasarımları */
    --glass-bg: rgba(25, 10, 45, 0.45);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-blur: blur(12px);

    /* Font Tanımları */
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-cursive: 'Great Vibes', cursive;
}

/* ==========================================================================
   AÇIK TEMA (Light Theme Variables Overrides)
   ========================================================================== */
body.light-theme {
    --bg-dark: #fbf8ff;
    --bg-gradient: linear-gradient(135deg, #fbf8ff 0%, #f3e6ff 50%, #e7caff 100%);
    --primary-purple: #702996;
    --primary-light: #9b59b6;
    --accent-pink: #e01b5d;
    --accent-gold: #e6a100;
    --text-light: #2a113d;
    --text-muted: #644a7a;
    
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(142, 68, 173, 0.16);
    --glass-shadow: 0 8px 32px 0 rgba(142, 68, 173, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Arka Plandaki Uçuşan Kalpler Canvası */
#hearts-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hidden {
    display: none !important;
}

/* ==========================================================================
   1. ŞİFRE GİRİŞ EKRANI (Passcode Screen)
   ========================================================================== */
#passcode-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.8s ease;
}

#passport-section {
    background: radial-gradient(circle at center, rgba(142, 68, 173, 0.05) 0%, var(--bg-dark) 100%);
    overflow: visible;
}

.passport-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1rem 0;
    overflow: visible;
}

.passport-3d-container {
    perspective: 1500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow: visible;
    transition: transform 0.5s ease;
}

.passport-book-3d {
    width: 320px;
    height: 440px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.passport-page {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform-origin: left center;
    transform-style: preserve-3d;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.page-front, .page-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.page-front {
    z-index: 2;
    border-radius: 0 16px 16px 0;
}

.page-back {
    z-index: 1;
    transform: rotateY(180deg);
    border-radius: 16px 0 0 16px;
}

/* Page states */
.passport-page.flipped {
    transform: rotateY(-180deg);
}

/* Cover Styling (Page 0 Front) */
.page-cover {
    background: linear-gradient(135deg, #7c1a22 0%, #4a0d12 100%);
    color: #ffd700;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    text-align: center;
    border-right: 3px solid #ffd700;
}

.passport-cover-design {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.emblem-icon {
    width: 75px;
    height: 75px;
    color: #ffd700;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.4));
}

.page-cover h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 0.4rem;
}

.passport-title {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
}

.passport-gold-line {
    width: 80px;
    height: 2px;
    background: #ffd700;
    margin-bottom: 2rem;
}

.open-tip {
    font-size: 0.78rem;
    color: rgba(255, 215, 0, 0.7);
    animation: pulseGlow 1.5s infinite alternate;
}

/* Inside Cover Pattern (Page 0 Back) */
.page-pattern {
    background: #fffdf5;
    border-left: 2px solid rgba(0,0,0,0.1);
}

.passport-inside-cover {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(142, 68, 173, 0.05) 15%, transparent 20%);
    background-size: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.watermark-logo {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(142, 68, 173, 0.03);
    font-family: var(--font-serif);
    letter-spacing: 5px;
}

/* Identity Info (Page 1 Front) */
.page-identity {
    background: #fffdf5;
}

.passport-identity-page {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.page-header {
    font-size: 0.75rem;
    font-weight: 800;
    color: #4c566a;
    border-bottom: 1.5px solid rgba(0,0,0,0.1);
    padding-bottom: 5px;
    letter-spacing: 0.5px;
}

.passport-identity {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-grow: 1;
}

.passport-photo-frame {
    width: 110px;
    height: 140px;
    border: 2px solid #4a5568;
    background: #e2e8f0;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.passport-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.passport-stamp-approved {
    position: absolute;
    bottom: 15px;
    right: -10px;
    background: rgba(199, 21, 133, 0.15);
    border: 3px double #c71585;
    color: #c71585;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 4px 8px;
    border-radius: 4px;
    transform: rotate(-20deg);
    letter-spacing: 1px;
    z-index: 5;
}

.passport-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-row {
    display: flex;
    flex-direction: column;
}

.detail-row .lbl {
    font-size: 0.62rem;
    color: #718096;
    text-transform: uppercase;
}

.detail-row .val {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1a202c;
    font-family: var(--font-serif);
}

/* Destination Pages (Pages 1B, 2A, 2B, 3A) */
.page-destination {
    background: #fdfcf7;
    border-left: 2px solid rgba(0,0,0,0.1);
}

.passport-destination-page {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.visa-stamp {
    position: absolute;
    top: 25px;
    right: 25px;
    border: 2px dashed #008080;
    color: #008080;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    transform: rotate(15deg);
    text-transform: uppercase;
}

.stamp-rome {
    border-color: #d63031;
    color: #d63031;
    transform: rotate(-10deg);
}

.stamp-kapadokya {
    border-color: #e67e22;
    color: #e67e22;
    transform: rotate(5deg);
}

.stamp-tokyo {
    border-color: #2980b9;
    color: #2980b9;
    transform: rotate(-15deg);
}

.dest-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.1);
    margin-top: 10px;
}

.passport-destination-page h5 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #2d3748;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.passport-destination-page p {
    font-size: 0.72rem;
    line-height: 1.15rem;
    color: #4a5568;
    margin-top: 5px;
    text-align: justify;
    flex-grow: 1;
}

/* Final Page (Page 3 Back) */
.page-final {
    background: #fffdf5;
}

.passport-final-page {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-align: center;
    position: relative;
    border-left: 2px solid rgba(0,0,0,0.1);
}

.stamp-final-heart {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-12deg);
    border: 3px double #e0115f;
    color: #e0115f;
    font-size: 0.8rem;
    font-weight: 900;
    padding: 8px 16px;
    border-radius: 8px;
    opacity: 0.25;
    letter-spacing: 2px;
    pointer-events: none;
    z-index: 1;
}

.passport-final-page h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 800;
    color: #2b1836;
    letter-spacing: 1px;
}

.final-promise {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.85rem;
    line-height: 1.35rem;
    color: #4a5568;
    z-index: 2;
    margin: 15px 0;
}

.boarding-pass-attachment {
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e1 100%);
    border-radius: 8px;
    border-left: 5px dashed #ff1493;
    padding: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    text-align: left;
    margin-top: 10px;
}

.boarding-pass-attachment .ticket-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    font-weight: 900;
    color: #ff1493;
    border-bottom: 1px dashed rgba(255, 20, 147, 0.2);
    padding-bottom: 3px;
    margin-bottom: 5px;
}

.ticket-body-mini {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 0.65rem;
    color: #2a113d;
}

/* Controls */
.passport-controls-3d {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

/* Responsive 3D Passport Scale */
@media (max-width: 768px) {
    .passport-3d-container {
        transform: scale(0.75);
        margin: -50px 0;
        transform-origin: center center;
    }
}
@media (max-width: 480px) {
    .passport-3d-container {
        transform: scale(0.55);
        margin: -100px 0;
        transform-origin: center center;
    }
}
@media (max-width: 380px) {
    .passport-3d-container {
        transform: scale(0.46);
        margin: -125px 0;
        transform-origin: center center;
    }
}

#passcode-screen.unlocked {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.passcode-container {
    width: 100%;
    max-width: 380px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 10;
}

.avatar-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 2px solid var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(179, 120, 211, 0.4);
    animation: pulseGlow 2s infinite alternate;
}

.heart-lock-icon {
    width: 36px;
    height: 36px;
    color: var(--accent-pink);
    overflow: visible !important;
    display: block;
}

.passcode-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    background: linear-gradient(to right, var(--text-light), var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.passcode-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.passcode-dots {
    display: flex;
    gap: 15px;
    margin-bottom: 2.5rem;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    transition: all 0.2s ease;
}

.dot.active {
    background-color: var(--accent-pink);
    border-color: var(--accent-pink);
    box-shadow: 0 0 10px var(--accent-pink);
    transform: scale(1.15);
}

.keypad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 280px;
}

.key-btn {
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-light);
    font-size: 1.6rem;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    user-select: none;
    box-shadow: var(--glass-shadow);
}

.key-btn:active {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(0.95);
    border-color: var(--primary-light);
}

.empty-btn {
    background: transparent;
    border: none;
    cursor: default;
    box-shadow: none;
}

.delete-btn {
    background: transparent;
    border: none;
    box-shadow: none;
}

.delete-btn:active {
    background: transparent;
    transform: scale(0.9);
}

.error-text {
    color: var(--accent-pink);
    font-size: 0.85rem;
    margin-top: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 600;
}

.error-text.show {
    opacity: 1;
}

.shake {
    animation: shakeAnim 0.5s ease-in-out;
}

/* ==========================================================================
   2. ANA İÇERİK & GENEL BÖLÜM YAPISI
   ========================================================================== */
#main-content {
    position: relative;
    z-index: 2;
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem;
    position: relative;
}

.section-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    z-index: 5;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    line-height: 1.3;
    text-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.section-title i {
    color: var(--accent-pink);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   3. YÜZEN MÜZİK VE TEMA BUTONLARI (Floating Controls)
   ========================================================================== */
.music-btn, .theme-btn {
    position: fixed;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--primary-light);
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 0 20px rgba(142, 68, 173, 0.3);
    backdrop-filter: var(--glass-blur);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.music-btn {
    right: 25px;
}

.theme-btn {
    left: 25px; /* Temayı sol köşeye yerleştiriyoruz */
}

.music-btn:hover, .theme-btn:hover {
    transform: scale(1.1);
    background: rgba(142, 68, 173, 0.2);
}

.music-btn.playing {
    border-color: var(--accent-pink);
    box-shadow: 0 0 20px rgba(255, 51, 119, 0.4);
    animation: rotateBtn 10s infinite linear;
}

.music-tooltip {
    position: absolute;
    right: 70px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
    backdrop-filter: var(--glass-blur);
    color: var(--text-muted);
}

.music-btn:hover .music-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   4. KARŞILAMA EKRANI (Hero Section)
   ========================================================================== */
#hero-section {
    background: var(--bg-gradient);
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-pretitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-light) 30%, var(--primary-light) 70%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 3rem;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 2px;
    cursor: pointer;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator i {
    margin-top: 8px;
    animation: bounce 2s infinite;
}

/* ==========================================================================
   5. AŞK SAYACI BÖLÜMÜ (Love Counter Section)
   ========================================================================== */
#counter-section {
    background: radial-gradient(circle at center, rgba(142, 68, 173, 0.08) 0%, var(--bg-dark) 100%);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 3rem;
}

.counter-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: var(--glass-blur);
    transition: transform 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.counter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-pink));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.counter-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
}

.counter-card:hover::before {
    opacity: 1;
}

.counter-value {
    display: block;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 0.8rem;
    white-space: nowrap;
}

.counter-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.counter-since {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    opacity: 0.85;
}

/* ==========================================================================
   6. ZAMAN TÜNELİ BÖLÜMÜ (Timeline Section)
   ========================================================================== */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-purple) 0%, var(--accent-pink) 50%, var(--primary-light) 100%);
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 4rem;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    margin-left: 50%;
    justify-content: flex-start;
}

.timeline-item:nth-child(odd) {
    margin-right: 50%;
}

.timeline-dot {
    position: absolute;
    right: -10px;
    top: 15px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 3px solid var(--accent-pink);
    z-index: 10;
    box-shadow: 0 0 10px var(--accent-pink);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
    right: auto;
}

.timeline-item.active .timeline-dot {
    background-color: var(--accent-pink);
    transform: scale(1.3);
}

.timeline-content {
    width: 90%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.8rem;
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: var(--glass-blur);
    text-align: left;
    transition: all 0.4s ease;
    transform: translateY(30px);
    opacity: 0;
}

.timeline-item.reveal .timeline-content {
    transform: translateY(0);
    opacity: 1;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 1.5rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 1.5rem;
}

.timeline-date {
    font-size: 0.85rem;
    color: var(--accent-pink);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-event-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.timeline-image-wrapper {
    width: 100%;
    height: auto;
    max-height: 380px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
    transition: transform 0.5s ease;
    display: block;
}

.timeline-content:hover .timeline-image {
    transform: scale(1.03);
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   7. BÜYÜLÜ ANILAR GALERİSİ (Gallery Section)
   ========================================================================== */
.gallery-wrapper {
    overflow-x: auto;
    padding: 1.5rem 0.5rem;
    display: flex;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gallery-wrapper::-webkit-scrollbar {
    display: none;
}

.gallery-track {
    display: flex;
    gap: 25px;
    padding: 0 1rem;
}

.gallery-item {
    flex: 0 0 280px;
    height: 380px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--glass-shadow);
    backdrop-filter: var(--glass-blur);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-light);
    box-shadow: 0 15px 30px rgba(179, 120, 211, 0.15);
}

.gallery-item-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item-img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(9, 1, 20, 0.9) 0%, rgba(9, 1, 20, 0.4) 60%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    text-align: left;
    transform: translateY(5px);
    transition: transform 0.3s ease;
}

body.light-theme .gallery-overlay {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.5) 60%, transparent 100%);
}

.gallery-overlay-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.gallery-overlay-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.9;
}

/* Modaller */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(9, 1, 20, 0.92);
    backdrop-filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.light-theme .modal {
    background-color: rgba(255, 255, 255, 0.92);
}

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

.close-modal {
    position: absolute;
    top: 25px;
    right: 35px;
    color: var(--text-light);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10001;
}

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

.modal-content-wrapper {
    max-width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-content {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.modal-caption {
    margin-top: 1.5rem;
    color: var(--text-light);
    text-align: center;
    font-size: 1.1rem;
    font-family: var(--font-serif);
    padding: 0 1rem;
}

/* ==========================================================================
   8. SEVGİ KAVANOZU (Love Jar Section)
   ========================================================================== */
.jar-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 480px;
}

.love-jar {
    width: 160px;
    height: 240px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    z-index: 5;
}

.love-jar:hover {
    transform: scale(1.05) translateY(-5px);
}

.love-jar:active {
    transform: scale(0.98);
}

.jar-lid {
    width: 110px;
    height: 20px;
    background: linear-gradient(to right, #b58d3d, #ffd700, #b58d3d);
    margin: 0 auto;
    border-radius: 8px 8px 3px 3px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.jar-neck {
    width: 90px;
    height: 15px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 auto;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.jar-body {
    width: 160px;
    height: 205px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 40px 40px 50px 50px;
    box-shadow: inset 0 20px 30px rgba(255,255,255,0.06), 
                inset -15px -15px 30px rgba(0,0,0,0.25), 
                0 15px 35px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(5px);
}

body.light-theme .jar-body {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(142, 68, 173, 0.3);
}

.jar-heart {
    width: 50px;
    height: 50px;
    color: var(--accent-pink);
    fill: var(--accent-pink);
    filter: drop-shadow(0 0 15px rgba(255, 51, 119, 0.5));
    animation: heartbeat 1.5s infinite;
}

.jar-tag {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 20px) rotate(-5deg);
    background: #e8c37d;
    color: #4a3411;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    border: 1px dashed #6b4d18;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jar-floating-heart {
    position: absolute;
    bottom: 250px;
    color: var(--accent-pink);
    fill: var(--accent-pink);
    pointer-events: none;
    z-index: 4;
    animation: floatUp 1.2s forwards cubic-bezier(0.1, 0.8, 0.3, 1);
}

.love-note-box {
    width: 100%;
    max-width: 500px;
    background: var(--glass-bg);
    border: 1px solid var(--accent-pink);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 0 25px rgba(255, 51, 119, 0.15);
    backdrop-filter: var(--glass-blur);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.love-note-box.show {
    transform: scale(1);
    opacity: 1;
}

.love-note-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.note-heart-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-pink);
    fill: var(--accent-pink);
}

#love-note-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

/* ==========================================================================
   9. AŞK MEKTUBU BÖLÜMÜ (Love Letter Section)
   ========================================================================== */
.letter-card {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    perspective: 1000px;
}

.letter-paper {
    background: rgba(253, 250, 242, 0.96);
    color: #2c2520;
    border-radius: 12px;
    padding: 4rem 3.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 
                inset 0 0 100px rgba(212,192,163,0.12);
    text-align: left;
    border: 1px solid #e3d2bd;
    position: relative;
    overflow: hidden;
}

.letter-paper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 100% 3.2rem;
    pointer-events: none;
    margin-top: 5rem;
}

.letter-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.letter-date {
    font-size: 0.85rem;
    color: #8c7a6b;
    align-self: flex-end;
    font-weight: 500;
}

.letter-to {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: #4a3c31;
    margin-top: 1rem;
    font-weight: 600;
}

.letter-body {
    font-family: var(--font-cursive);
    font-size: 2.2rem;
    line-height: 3.2rem;
    color: #261f1a;
    min-height: 200px;
    position: relative;
    z-index: 2;
    word-wrap: break-word;
}

.typed-text::after {
    content: '|';
    animation: blink 0.75s step-end infinite;
    font-family: monospace;
    font-size: 1.8rem;
    margin-left: 3px;
    color: var(--accent-pink);
    display: inline-block;
    vertical-align: middle;
}

.typed-text.done::after {
    display: none;
}

.letter-footer {
    margin-top: 3.5rem;
    text-align: right;
    position: relative;
    z-index: 2;
}

.letter-from {
    font-size: 0.9rem;
    color: #8c7a6b;
    font-weight: 500;
}

.letter-signature {
    font-family: var(--font-cursive);
    font-size: 2.8rem;
    color: #b54a5f;
    margin-top: 0.2rem;
    line-height: 1;
}

/* ==========================================================================
   10. İNTERAKTİF TÜRKİYE HARİTASI (Turkey Map Section)
   ========================================================================== */
#map-section {
    background: radial-gradient(circle at center, rgba(142, 68, 173, 0.08) 0%, var(--bg-dark) 100%);
}

.map-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.map-btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: var(--glass-blur);
    transition: all 0.3s ease;
}

.map-btn-secondary:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    background: rgba(142, 68, 173, 0.15);
}

.map-btn-secondary.active {
    border-color: var(--accent-pink);
    background: rgba(255, 51, 119, 0.15);
    box-shadow: 0 0 15px rgba(255, 51, 119, 0.2);
}

/* Arama / Şehir Seçimi Dropdownu */
.map-select-wrapper {
    width: 100%;
    max-width: 280px;
}

.city-select-dropdown {
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 0.75rem 1.2rem;
    border-radius: 20px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-shadow);
}

.city-select-dropdown option {
    background: var(--bg-dark);
    color: var(--text-light);
}

.map-mode-tip {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    opacity: 0.8;
}

.map-wrapper {
    position: relative;
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: var(--glass-shadow);
    backdrop-filter: var(--glass-blur);
    overflow: hidden;
}

.turkey-map-container {
    width: 100%;
    height: auto;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#turkey-svg {
    width: 100%;
    height: auto;
    max-height: 480px;
}

/* SVG Yolları (Şehirler) */
.city-path {
    fill: rgba(255, 255, 255, 0.05);
    stroke: rgba(255, 255, 255, 0.18);
    stroke-width: 0.8px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.city-path path {
    fill: inherit;
    stroke: inherit;
    stroke-width: inherit;
    transition: fill 0.25s ease, stroke 0.25s ease, stroke-width 0.25s ease;
}

body.light-theme .city-path {
    fill: rgba(142, 68, 173, 0.04);
    stroke: rgba(142, 68, 173, 0.15);
}

.city-path:hover {
    fill: rgba(142, 68, 173, 0.35);
    stroke: var(--primary-light);
}

.city-path.visited {
    fill: rgba(255, 51, 119, 0.35);
    stroke: var(--accent-pink);
    stroke-width: 1.2px;
}

body.light-theme .city-path.visited {
    fill: rgba(255, 51, 119, 0.45);
}

.city-path.visited:hover {
    fill: rgba(255, 51, 119, 0.55);
    stroke: var(--accent-gold);
}

.map-loading {
    font-size: 1.1rem;
    color: var(--text-muted);
    padding: 3rem;
}

.map-tooltip {
    position: absolute;
    background: rgba(9, 1, 20, 0.95);
    border: 1px solid var(--primary-light);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.1s ease;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transform: translate(-50%, -120%);
    backdrop-filter: blur(5px);
    font-weight: 600;
}

body.light-theme .map-tooltip {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-light);
}

.map-tooltip.show {
    opacity: 1;
}

/* Şehir Ayrıntıları Modali */
.city-modal-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem;
}

.city-modal-content {
    background: var(--glass-bg);
    border: 2px solid var(--primary-light);
    border-radius: 28px;
    padding: 3rem 2.5rem;
    box-shadow: var(--glass-shadow);
    backdrop-filter: var(--glass-blur);
    text-align: left;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}

.city-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.city-date {
    font-size: 0.9rem;
    color: var(--accent-pink);
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
}

.city-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.city-photos-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 1.5rem;
}

.city-photo {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.city-photo:hover {
    transform: scale(1.04);
}

.city-empty-msg {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-muted);
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.city-empty-msg.show {
    display: flex;
}

.empty-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-light);
    animation: heartbeat 2s infinite;
}

.city-empty-msg p {
    font-size: 1.05rem;
    line-height: 1.5;
    font-style: italic;
}

/* ==========================================================================
   11. BURÇ UYUMU BÖLÜMÜ (Zodiac Section)
   ========================================================================== */
#zodiac-section {
    background: radial-gradient(circle at center, rgba(255, 51, 119, 0.05) 0%, var(--bg-dark) 100%);
}

.zodiac-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.zodiac-cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.zodiac-card {
    flex: 1 1 250px;
    max-width: 300px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    box-shadow: var(--glass-shadow);
    backdrop-filter: var(--glass-blur);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Kova için Turkuaz-Mavi Glow, Aslan için Altın Glow */
.zodiac-card.she-card {
    border-color: rgba(0, 206, 209, 0.35);
    box-shadow: var(--glass-shadow), 0 0 20px rgba(0, 206, 209, 0.15);
}

.zodiac-card.he-card {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: var(--glass-shadow), 0 0 20px rgba(255, 215, 0, 0.1);
}

.zodiac-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    border: 1px solid var(--glass-border);
}

.she-card .zodiac-icon-wrapper {
    background: rgba(0, 206, 209, 0.1);
    color: #00ced1;
}

.he-card .zodiac-icon-wrapper {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
}

.zodiac-symbol-icon {
    width: 28px;
    height: 28px;
}

.zodiac-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.zodiac-sign {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 0.1rem;
}

.zodiac-element {
    font-size: 0.8rem;
    color: var(--accent-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.zodiac-traits {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.zodiac-traits li {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    color: var(--text-muted);
}

/* Uyum Skoru Dairesi */
.zodiac-score-card {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-circle-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.score-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 8;
}

body.light-theme .score-circle-bg {
    stroke: rgba(142, 68, 173, 0.05);
}

.score-circle-bar {
    fill: none;
    stroke: url(#score-gradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283; /* 2 * PI * r (r=45) */
    stroke-dashoffset: 283; /* Başlangıçta boş */
    transition: stroke-dashoffset 2s cubic-bezier(0.1, 0.8, 0.3, 1);
}

/* SVG Gradients for score circle */
#score-gradient-svg {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

.zodiac-score-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.score-percent {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-pink);
    line-height: 1;
}

.score-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Uyum Açıklama Kartı */
.zodiac-description-card {
    width: 100%;
    max-width: 750px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
    backdrop-filter: var(--glass-blur);
    text-align: left;
}

.zodiac-desc-paragraph {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.zodiac-bars-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
}

.zodiac-bar-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.zodiac-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.zodiac-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

body.light-theme .zodiac-bar-bg {
    background: rgba(142, 68, 173, 0.05);
}

.zodiac-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-pink));
    width: 0;
    border-radius: 4px;
    transition: width 2s cubic-bezier(0.1, 0.8, 0.3, 1);
}

/* ==========================================================================
   11.5. PAPATYA FALI BÖLÜMÜ (Daisy Oracle Section)
   ========================================================================== */
#daisy-section {
    background: radial-gradient(circle at center, rgba(255, 51, 119, 0.03) 0%, var(--bg-dark) 100%);
}

.daisy-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.daisy-container {
    width: 320px;
    height: 320px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.daisy-flower {
    width: 100%;
    height: 100%;
    position: relative;
}

.daisy-center {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffe043 0%, #ffa500 70%, #ff7b00 100%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 0 25px rgba(255, 165, 0, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.6);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.daisy-petal {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 120px;
    background: linear-gradient(to bottom, #ffffff 0%, #fbfbfb 75%, #eceaea 100%);
    border-radius: 16px 16px 8px 8px;
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(var(--angle));
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), inset 0 2px 2px rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 5;
}

.daisy-petal:hover {
    filter: brightness(0.96) contrast(1.05);
    transform: translate(-50%, -100%) rotate(var(--angle)) scale(1.04);
}

.daisy-petal.plucked {
    pointer-events: none;
    animation: petalFall 1.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes petalFall {
    0% {
        opacity: 1;
    }
    15% {
        transform: translate(-50%, -100%) rotate(var(--angle)) translateY(-10px);
    }
    100% {
        transform: translate(-50%, -100%) rotate(calc(var(--angle) + 55deg)) translateY(220px) rotateX(120deg) rotateY(90deg);
        opacity: 0;
    }
}

.daisy-result-box {
    width: 100%;
    max-width: 600px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    backdrop-filter: var(--glass-blur);
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.daisy-result-content {
    width: 100%;
    text-align: center;
}

.daisy-status {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-pink);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: pulseGlow 1.5s infinite alternate;
}

.daisy-text {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    line-height: 1.8rem;
    font-style: italic;
    color: var(--text-light);
    transition: opacity 0.3s ease;
}

}

/* ==========================================================================
   11.6. AŞKIMIZIN ŞARKI KUTUSU (Vinyl Record Player)
   ========================================================================== */
#playlist-section {
    background: radial-gradient(circle at center, rgba(155, 89, 182, 0.04) 0%, var(--bg-dark) 100%);
}

.playlist-wrapper {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.turntable-container {
    width: 320px;
    height: 320px;
    background: #2e3440;
    border-radius: 20px;
    box-shadow: var(--glass-shadow), 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 5px solid #242933;
    padding: 20px;
    position: relative;
}

.turntable {
    width: 100%;
    height: 100%;
    position: relative;
    background: #3b4252;
    border-radius: 12px;
    overflow: hidden;
}

.turntable-base {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #4c566a;
    border-radius: 4px;
    bottom: 15px;
    right: 15px;
    border: 2px solid #2e3440;
}

.platter {
    width: 220px;
    height: 220px;
    background: #2e3440;
    border-radius: 50%;
    position: absolute;
    top: 30px;
    left: 20px;
    box-shadow: inset 0 0 12px #000;
}

.vinyl-record {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: radial-gradient(circle, #434c5e 20%, #2e3440 40%, #1a1c23 70%);
    position: absolute;
    top: 5px;
    left: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transform: rotate(0deg);
}

.vinyl-record.playing {
    animation: spinVinyl 3.5s linear infinite;
}

@keyframes spinVinyl {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vinyl-grooves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: repeating-radial-gradient(circle, transparent, transparent 4px, rgba(255, 255, 255, 0.025) 5px, transparent 6px);
}

.vinyl-label {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #1a1c23;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-purple);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.tonearm {
    position: absolute;
    top: 10px;
    right: 40px;
    width: 25px;
    height: 140px;
    background: linear-gradient(to right, #eceff4, #d8dee9);
    border-radius: 4px;
    transform-origin: 12px 15px;
    transform: rotate(-30deg);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 8;
    box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.3);
}

.tonearm::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: #4c566a;
    border-radius: 50%;
    top: 3px;
    left: 0px;
    border: 2px solid #2e3440;
}

.tonearm::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 30px;
    background: #bf616a;
    bottom: -5px;
    left: 5px;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tonearm.playing {
    transform: rotate(14deg);
}

.playlist-controls {
    flex: 1;
    min-width: 280px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.song-info {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 16px;
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-shadow);
}

.song-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.song-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.playlist-buttons {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.playlist-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--glass-shadow);
}

.playlist-btn:hover {
    background: var(--primary-purple);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(155, 89, 182, 0.4);
}

.play-pause-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    color: #fff;
    border: none;
}

.song-selector-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 5px;
    scrollbar-width: none;
}

.song-selector-list::-webkit-scrollbar {
    display: none;
}

.song-item {
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.song-item:hover, .song-item.active {
    background: var(--glass-bg);
    color: var(--text-light);
    border-color: var(--primary-purple);
}

/* ==========================================================================
   11.7. BENİM BARBIE KUTUM (Barbie Frame Section)
   ========================================================================== */
#barbie-section {
    background: radial-gradient(circle at center, rgba(255, 105, 180, 0.05) 0%, var(--bg-dark) 100%);
}

.barbie-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.barbie-box {
    width: 320px;
    border: 12px solid #ff1493;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.25), var(--glass-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.barbie-box-header {
    background: #ff1493;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.barbie-logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    font-style: italic;
    letter-spacing: -1px;
}

.limited-edition {
    font-size: 0.65rem;
    font-weight: 800;
    color: #ffd700;
    letter-spacing: 2px;
}

.barbie-box-body {
    background: #fff0f5;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.barbie-photo-container {
    width: 250px;
    height: 330px;
    border-radius: 12px;
    border: 4px solid #ff69b4;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

.barbie-glass-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.15) 100%);
    pointer-events: none;
    z-index: 5;
}

.barbie-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.barbie-box-footer {
    background: #ff1493;
    padding: 18px;
    color: #ffffff;
    text-align: center;
}

.barbie-toy-title {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.barbie-toy-desc {
    font-size: 0.72rem;
    line-height: 1.1rem;
    color: #ffb6c1;
}

body.light-theme .barbie-box {
    background: #fff;
}

body.light-theme .barbie-box-body {
    background: #fff9fb;
}

/* ==========================================================================
   11.8. BULUTLARIN ARDINDAKİ GÜNEŞ (Rain to Sun transition)
   ========================================================================== */
#storm-section {
    background: radial-gradient(circle at center, rgba(44, 62, 80, 0.05) 0%, var(--bg-dark) 100%);
}

.storm-card {
    width: 100%;
    max-width: 600px;
    height: 380px;
    margin: 0 auto;
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('https://images.unsplash.com/photo-1534274988757-a28bf1a57c17?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    box-shadow: var(--glass-shadow), 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background-image 1.8s ease, border-color 1.8s ease, box-shadow 1.8s ease;
}

.storm-card.sunny {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=800&q=80');
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2), var(--glass-shadow);
}

.lightning-flash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    opacity: 0;
    pointer-events: none;
    z-index: 3;
}

@keyframes lightningFlashAnimation {
    0%, 93%, 95%, 99%, 100% { opacity: 0; }
    94% { opacity: 0.75; }
    96% { opacity: 0.55; }
    98% { opacity: 0.8; }
}

.storm-card:not(.sunny) .lightning-flash {
    animation: lightningFlashAnimation 6s infinite ease-in-out;
}

.rain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="40"><line x1="15" y1="0" x2="5" y2="40" stroke="rgba(255,255,255,0.22)" stroke-width="1.2"/></svg>');
    animation: rainEffect 0.35s linear infinite;
    opacity: 1;
    transition: opacity 1.5s ease;
    z-index: 1;
}

@keyframes rainEffect {
    0% { background-position: 0 0; }
    100% { background-position: -40px 400px; }
}

.clouds-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.cloud {
    position: absolute;
    background: radial-gradient(circle at center, #2d3748 10%, #1a202c 70%, #0f172a 100%);
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0.85;
    transition: transform 2.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 2.2s ease;
}

.cloud-left {
    width: 250px;
    height: 180px;
    top: -40px;
    left: -50px;
}

.cloud-right {
    width: 280px;
    height: 200px;
    top: -60px;
    right: -70px;
}

.cloud-mid {
    width: 200px;
    height: 140px;
    top: -20px;
    left: 30%;
    opacity: 0.7;
}

.storm-card.sunny .cloud-left {
    transform: translateX(-340px) translateY(-50px) scale(0.2);
    opacity: 0;
}

.storm-card.sunny .cloud-right {
    transform: translateX(340px) translateY(-50px) scale(0.2);
    opacity: 0;
}

.storm-card.sunny .cloud-mid {
    transform: translateY(-200px) scale(0.2);
    opacity: 0;
}

.storm-card.sunny .rain-overlay {
    opacity: 0;
}

.storm-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 4;
}

.sun-glow {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0%, #ffbe0f 30%, rgba(255, 190, 15, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 2.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    z-index: 1;
}

.storm-card.sunny .sun-glow {
    transform: translate(-50%, -50%) scale(2.5);
}

.storm-text-card {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.8rem;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    z-index: 4;
    transition: background 1.5s ease, border-color 1.5s ease;
}

.storm-card.sunny .storm-text-card {
    background: rgba(15, 23, 42, 0.5);
    border-color: rgba(255, 215, 0, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.storm-instruction {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.5rem;
}

.storm-card.sunny .storm-instruction {
    opacity: 0;
    pointer-events: none;
    display: none;
}

.sun-message-wrapper {
    animation: fadeIn 1.5s forwards;
}

.sun-message {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.65rem;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.storm-slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
    background: rgba(15, 23, 42, 0.6);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.slider-heart-icon {
    color: #ff1493;
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 5px #ff1493);
    animation: beatHeart 1s infinite alternate;
}

@keyframes beatHeart {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.storm-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    outline: none;
}

.storm-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ff1493;
    cursor: pointer;
    box-shadow: 0 0 15px #ff1493, inset 0 2px 2px rgba(255,255,255,0.5);
    border: 2px solid #ffffff;
    transition: transform 0.1s;
}

.storm-slider::-webkit-slider-thumb:active {
    transform: scale(1.15);
}

/* ==========================================================================
   11.9. BÜYÜLÜ AŞK PASAPORTUMUZ (3D Booklet Section)
   ========================================================================== */
#passport-section {
    background: radial-gradient(circle at center, rgba(142, 68, 173, 0.05) 0%, var(--bg-dark) 100%);
}

.passport-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1rem 0;
}

.passport-3d-container {
    perspective: 1500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.passport-book-3d {
    width: 320px;
    height: 440px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.passport-page {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform-origin: left center;
    transform-style: preserve-3d;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.page-front, .page-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.page-front {
    z-index: 2;
    border-radius: 0 16px 16px 0;
}

.page-back {
    z-index: 1;
    transform: rotateY(180deg);
    border-radius: 16px 0 0 16px;
}

/* Page states */
.passport-page.flipped {
    transform: rotateY(-180deg);
}

/* Cover Styling (Page 0 Front) */
.page-cover {
    background: linear-gradient(135deg, #7c1a22 0%, #4a0d12 100%);
    color: #ffd700;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    text-align: center;
    border-right: 3px solid #ffd700;
}

.passport-cover-design {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.emblem-icon {
    width: 75px;
    height: 75px;
    color: #ffd700;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.4));
}

.page-cover h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 0.4rem;
}

.passport-title {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
}

.passport-gold-line {
    width: 80px;
    height: 2px;
    background: #ffd700;
    margin-bottom: 2rem;
}

.open-tip {
    font-size: 0.78rem;
    color: rgba(255, 215, 0, 0.7);
    animation: pulseGlow 1.5s infinite alternate;
}

/* Inside Cover Pattern (Page 0 Back) */
.page-pattern {
    background: #fffdf5;
    border-left: 2px solid rgba(0,0,0,0.1);
}

.passport-inside-cover {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(142, 68, 173, 0.05) 15%, transparent 20%);
    background-size: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.watermark-logo {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(142, 68, 173, 0.03);
    font-family: var(--font-serif);
    letter-spacing: 5px;
}

/* Identity Info (Page 1 Front) */
.page-identity {
    background: #fffdf5;
}

.passport-identity-page {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.page-header {
    font-size: 0.75rem;
    font-weight: 800;
    color: #4c566a;
    border-bottom: 1.5px solid rgba(0,0,0,0.1);
    padding-bottom: 5px;
    letter-spacing: 0.5px;
}

.passport-identity {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-grow: 1;
}

.passport-photo-frame {
    width: 110px;
    height: 140px;
    border: 2px solid #4a5568;
    background: #e2e8f0;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.passport-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.passport-stamp-approved {
    position: absolute;
    bottom: 15px;
    right: -10px;
    background: rgba(199, 21, 133, 0.15);
    border: 3px double #c71585;
    color: #c71585;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 4px 8px;
    border-radius: 4px;
    transform: rotate(-20deg);
    letter-spacing: 1px;
    z-index: 5;
}

.passport-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-row {
    display: flex;
    flex-direction: column;
}

.detail-row .lbl {
    font-size: 0.62rem;
    color: #718096;
    text-transform: uppercase;
}

.detail-row .val {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1a202c;
    font-family: var(--font-serif);
}

/* Destination Pages (Pages 1B, 2A, 2B, 3A) */
.page-destination {
    background: #fdfcf7;
    border-left: 2px solid rgba(0,0,0,0.1);
}

.passport-destination-page {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.visa-stamp {
    position: absolute;
    top: 25px;
    right: 25px;
    border: 2px dashed #008080;
    color: #008080;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    transform: rotate(15deg);
    text-transform: uppercase;
}

.stamp-rome {
    border-color: #d63031;
    color: #d63031;
    transform: rotate(-10deg);
}

.stamp-kapadokya {
    border-color: #e67e22;
    color: #e67e22;
    transform: rotate(5deg);
}

.stamp-tokyo {
    border-color: #2980b9;
    color: #2980b9;
    transform: rotate(-15deg);
}

.stamp-venice {
    border-color: #1abc9c;
    color: #1abc9c;
    transform: rotate(12deg);
}

.stamp-amsterdam {
    border-color: #d35400;
    color: #d35400;
    transform: rotate(-8deg);
}

.stamp-london {
    border-color: #34495e;
    color: #34495e;
    transform: rotate(15deg);
}

.stamp-barcelona {
    border-color: #e74c3c;
    color: #e74c3c;
    transform: rotate(-12deg);
}

.stamp-bali {
    border-color: #f1c40f;
    color: #f1c40f;
    transform: rotate(8deg);
}

.dest-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.1);
    margin-top: 10px;
}

.passport-destination-page h5 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #2d3748;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.passport-destination-page p {
    font-size: 0.72rem;
    line-height: 1.15rem;
    color: #4a5568;
    margin-top: 5px;
    text-align: justify;
    flex-grow: 1;
}

/* Final Page (Page 3 Back) */
.page-final {
    background: #fffdf5;
}

.passport-final-page {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-align: center;
    position: relative;
    border-left: 2px solid rgba(0,0,0,0.1);
}

.stamp-final-heart {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-12deg);
    border: 3px double #e0115f;
    color: #e0115f;
    font-size: 0.8rem;
    font-weight: 900;
    padding: 8px 16px;
    border-radius: 8px;
    opacity: 0.25;
    letter-spacing: 2px;
    pointer-events: none;
    z-index: 1;
}

.passport-final-page h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 800;
    color: #2b1836;
    letter-spacing: 1px;
}

.final-promise {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.85rem;
    line-height: 1.35rem;
    color: #4a5568;
    z-index: 2;
    margin: 15px 0;
}

.boarding-pass-attachment {
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e1 100%);
    border-radius: 8px;
    border-left: 5px dashed #ff1493;
    padding: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    text-align: left;
    margin-top: 10px;
}

.boarding-pass-attachment .ticket-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    font-weight: 900;
    color: #ff1493;
    border-bottom: 1px dashed rgba(255, 20, 147, 0.2);
    padding-bottom: 3px;
    margin-bottom: 5px;
}

.ticket-body-mini {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 0.65rem;
    color: #2a113d;
}

/* Controls */
.passport-controls-3d {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

/* ==========================================================================
   12. AŞK KAZI KAZANI (Scratch Card Section)
   ========================================================================== */
#scratch-section {
    background: radial-gradient(circle at center, rgba(142, 68, 173, 0.08) 0%, var(--bg-dark) 100%);
}

.scratch-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2.5rem;
}

.coupon-badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--primary-light);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: var(--glass-shadow);
}

.scratch-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.scratch-card-container {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 16/10;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border: 2px solid var(--glass-border);
}

.scratch-underlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 11, 71, 0.9) 0%, rgba(21, 0, 43, 0.95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    z-index: 1;
}

body.light-theme .scratch-underlay {
    background: linear-gradient(135deg, rgba(243, 230, 255, 0.95) 0%, rgba(220, 185, 255, 0.95) 100%);
}

.coupon-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.2));
}

.coupon-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.coupon-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.coupon-validity {
    font-size: 0.75rem;
    color: var(--accent-pink);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

#scratch-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: crosshair;
    touch-action: none;
}

/* ==========================================================================
   13. FOOTER & EK ANIMASYONLAR
   ========================================================================== */
footer {
    background-color: #05000c;
    padding: 3rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

body.light-theme footer {
    background-color: #f1e4ff;
    border-color: rgba(142, 68, 173, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.footer-heart {
    color: var(--accent-pink);
}

.filled-heart {
    width: 20px;
    height: 20px;
    fill: var(--accent-pink);
    animation: heartbeat 1.5s infinite;
}

/* ==========================================================================
   14. YARDIMCI ANIMASYONLAR (Animations)
   ========================================================================== */
@keyframes pulseGlow {
    from { box-shadow: 0 0 15px rgba(179, 120, 211, 0.3); }
    to { box-shadow: 0 0 30px rgba(179, 120, 211, 0.7), 0 0 10px var(--accent-pink); }
}

@keyframes shakeAnim {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-10px); }
    40%, 80% { transform: translateX(10px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    15% { transform: scale(1.15); }
    30% { transform: scale(1); }
    45% { transform: scale(1.15); }
    60% { transform: scale(1); }
    100% { transform: scale(1); }
}

@keyframes rotateBtn {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(0.6) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-150px) scale(1.2) rotate(20deg);
        opacity: 0;
    }
}

@keyframes blink {
    from, to { color: transparent; }
    50% { color: var(--accent-pink); }
}

.reveal-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   15. RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */

@media (max-width: 900px) {
    .timeline-line {
        left: 25px;
    }
    
    .timeline-item {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        justify-content: flex-start;
        padding-left: 55px;
    }
    
    .timeline-dot {
        left: 17px !important;
        right: auto !important;
    }
    
    .timeline-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .city-photos-container {
        grid-template-columns: 1fr;
    }
    
    .zodiac-bars-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 600px) {
    html {
        font-size: 14px;
    }
    
    .section {
        padding: 3.5rem 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        line-height: 1.4;
    }
    
    .counter-value {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .counter-card {
        padding: 1.2rem 0.8rem;
    }
    
    .letter-paper {
        padding: 2.5rem 1.5rem;
    }
    
    .letter-paper::after {
        background-size: 100% 2.6rem;
        margin-top: 4.5rem;
    }
    
    .letter-body {
        font-size: 1.5rem;
        line-height: 2.6rem;
    }
    
    .music-btn {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
    
    .theme-btn {
        bottom: 20px;
        left: 20px;
        width: 48px;
        height: 48px;
    }
    
    .music-tooltip {
        display: none !important;
    }
    
    .map-wrapper {
        padding: 1rem;
    }
    
    .city-modal-content {
        padding: 2rem 1.5rem;
    }
    
    .scratch-card-container {
        max-width: 320px;
    }
    
    .zodiac-card {
        max-width: 100%;
    }
    
    .zodiac-desc-paragraph {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .timeline-event-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    /* Papatya Falı Mobil Uyum */
    .daisy-container {
        width: 250px;
        height: 250px;
        margin-bottom: 1.5rem;
    }
    
    .daisy-petal {
        width: 26px;
        height: 95px;
        border-radius: 13px 13px 6px 6px;
    }
    
    .daisy-center {
        width: 55px;
        height: 55px;
    }
    
    .daisy-text {
        font-size: 1.15rem;
        line-height: 1.6rem;
    }
    
    .daisy-result-box {
        padding: 1.2rem 1rem;
        min-height: 110px;
        margin-bottom: 1.5rem;
    }
    
    /* 3.5. Şarkı Kutusu Mobil */
    .turntable-container {
        width: 270px;
        height: 270px;
        padding: 15px;
    }
    .platter {
        width: 190px;
        height: 190px;
        top: 25px;
        left: 15px;
    }
    .vinyl-record {
        width: 180px;
        height: 180px;
    }
    .vinyl-label {
        width: 55px;
        height: 55px;
    }
    .tonearm {
        height: 110px;
        right: 30px;
    }
    .playlist-wrapper {
        gap: 1.5rem;
    }

    /* 5.5. Barbie Kutusu Mobil */
    .barbie-box {
        width: 270px;
        border-width: 8px;
    }
    .barbie-photo-container {
        width: 210px;
        height: 280px;
    }
    .barbie-toy-title {
        font-size: 0.85rem;
    }
    .barbie-toy-desc {
        font-size: 0.68rem;
    }

    /* 7.2. Fırtına ve Güneş Mobil */
    .storm-card {
        height: 340px;
        padding: 1.5rem;
    }
    .cloud {
        width: 220px;
        height: 100px;
    }
    .sun-message {
        font-size: 1rem;
        line-height: 1.4rem;
    }
    
    /* 8.5. Pasaport Mobil */
    .passport-book {
        width: 240px;
        height: 330px;
    }
    .passport-names {
        font-size: 1.5rem;
    }
    .postcards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .ticket-body {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 360px) {
    .passcode-container {
        padding: 1.2rem 1rem;
    }
    
    .avatar-ring {
        width: 65px;
        height: 65px;
        margin-bottom: 0.8rem;
    }
    
    .passcode-title {
        font-size: 1.5rem;
    }
    
    .passcode-subtitle {
        margin-bottom: 1.5rem;
    }
    
    .passcode-dots {
        margin-bottom: 1.8rem;
        gap: 10px;
    }

    .keypad {
        gap: 10px;
    }
    
    .key-btn {
        font-size: 1.4rem;
    }
    
    .counter-grid {
        grid-template-columns: 1fr;
    }
}
