/* --- KÖK DEĞİŞKENLER VE TEMEL AYARLAR --- */
:root {
    --primary-color: #b30059;
    --secondary-color: #ff4d88;
    --background-light: #fff0f5;
    --background-dark: #ffccdd;
    --text-dark: #4b0000;
    --text-light: #ffffff;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Roboto', sans-serif;
    --font-handwriting: 'Caveat', cursive;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background-color: var(--background-light); color: var(--text-dark); font-family: var(--font-secondary); line-height: 1.6; overflow-x: hidden; }
body.story-mode-active { overflow: hidden; }
h1, h2, h3 { font-family: var(--font-primary); color: var(--primary-color); line-height: 1.2; }

/* --- NAVİGASYON VE ANLATIM MODU --- */
#navbar { position: fixed; top: 0; width: 100%; background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); z-index: 1000; transition: top 0.3s; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; }
.nav-brand { font-family: var(--font-primary); font-style: italic; font-size: 1.5rem; color: var(--primary-color); text-decoration: none; font-weight: bold; }
.nav-menu { display: flex; align-items: center; }
.nav-link { color: var(--primary-color); text-decoration: none; margin: 0 0.7rem; font-weight: bold; position: relative; transition: color 0.3s; padding: 0.5rem; }
.nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 50%; transform: translateX(-50%); background-color: var(--secondary-color); transition: width 0.3s ease-in-out; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; justify-content: space-around; width: 30px; height: 25px; background: transparent; border: none; cursor: pointer; padding: 0; z-index: 1001; }
.nav-toggle span { width: 30px; height: 3px; background: var(--primary-color); border-radius: 10px; transition: all 0.3s linear; position: relative; transform-origin: 1px; }
.button-small { padding: 0.6rem 1.2rem; font-size: 0.9rem; }
.story-controls { position: fixed; right: 2rem; top: 50%; transform: translateY(-50%); z-index: 998; display: flex; flex-direction: column; gap: 1rem; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.story-controls.is-active { opacity: 1; visibility: visible; }
.story-nav-btn { width: 50px; height: 50px; background: rgba(255,255,255,0.7); border: 1px solid rgba(0,0,0,0.1); border-radius: 50%; font-size: 1.5rem; color: var(--primary-color); cursor: pointer; backdrop-filter: blur(5px); transition: transform 0.2s, box-shadow 0.2s; }
.story-nav-btn:hover { transform: scale(1.1); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.story-nav-btn.disabled { opacity: 0.4; cursor: not-allowed; transform: scale(1); }

/* --- BÖLÜMLER --- */
.full-screen-section { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; }
.content-section { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; text-align: center; }
.section-subtitle { font-size: 1.2rem; color: var(--text-dark); margin-top: -1rem; margin-bottom: 3rem; font-style: italic; }

/* --- ANA KARŞILAMA EKRANI --- */
#hero-section { background: linear-gradient(135deg, #ffdde1, #ff9a9e, #fad0c4); background-size: 400% 400%; animation: animated-gradient 15s ease infinite; }
@keyframes animated-gradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
#particle-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-content { z-index: 2; position: relative; }
.hero-content h1 { font-size: clamp(2.5rem, 8vw, 5rem); font-style: italic; text-shadow: 0 0 20px rgba(255, 255, 255, 0.7); }
.hero-content p { font-size: clamp(1rem, 3vw, 1.5rem); margin-bottom: 2rem; }
.button { padding: 1rem 2.5rem; background: var(--secondary-color); color: var(--text-light); border: none; border-radius: 50px; font-size: 1rem; font-weight: bold; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 4px 15px rgba(179, 0, 89, 0.3); }
.button:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(179, 0, 89, 0.4); }

/* --- SAYAC & TAKVİM --- */
.countdown-container { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.countdown-item { background: white; padding: 1.5rem; border-radius: 15px; min-width: 120px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); text-align: center; }
.countdown-item span { display: block; font-size: 3rem; font-weight: bold; color: var(--secondary-color); }
#calendar-section { background-color: var(--background-light); }
.calendar-container { display: inline-block; background-color: #fff; padding: 2rem; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.calendar-container h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.calendar-container table { border-collapse: collapse; font-size: 1rem; color: var(--text-dark); }
.calendar-container th, .calendar-container td { padding: 0.8rem; text-align: center; }
.calendar-container .highlighted-day { background-color: var(--secondary-color); color: white; font-weight: bold; border-radius: 50%; }
.calendar-container .caption { margin-top: 1rem; font-style: italic; }

/* --- SENİN DÜNYAN --- */
.favorites-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.favorite-card { background: white; border-radius: 20px; padding: 2rem; text-align: center; box-shadow: 0 8px 25px rgba(0,0,0,0.07); transition: transform 0.3s, box-shadow 0.3s; }
.favorite-card:hover { transform: translateY(-10px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }
.favorite-icon { margin-bottom: 1rem; }
.favorite-icon svg { width: 60px; height: 60px; color: #2c2c2c; }
.favorite-card h3 { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.favorite-card p { font-size: 1.1rem; color: var(--secondary-color); font-weight: bold; font-style: normal; }

/* --- SENİ NEDEN SEVİYORUM --- */
.reasons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.reason-card { background-color: var(--background-dark); padding: 2rem; border-radius: 15px; font-family: var(--font-primary); font-style: italic; font-size: 1.3rem; line-height: 1.7; border-left: 5px solid var(--secondary-color); box-shadow: 5px 5px 20px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden; }
.reason-card:hover { transform: translateY(-8px); box-shadow: 5px 15px 25px rgba(0,0,0,0.1); }
.reason-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent); transition: left 0.8s; }
.reason-card:hover::before { left: 100%; }

/* --- İLKLERİMİZ VE HAYALLERİMİZ --- */
#firsts-and-dreams { background-color: #fff; }
.grid-container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-column h2 { margin-bottom: 2rem; }
.firsts-container, .dreams-container { display: flex; flex-direction: column; gap: 1.5rem; }
.first-item, .dream-card { background: var(--background-light); margin-top: 0; padding: 2rem; border-radius: 15px; }
.first-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.dream-card h3 { margin-bottom: 1rem; }

/* --- KÜÇÜK NOTLAR --- */
.notes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1000px; margin: 3rem auto; }
.note { padding: 2rem; font-family: var(--font-handwriting); font-size: 1.8rem; line-height: 1.5; background: #fdf9a7; box-shadow: 5px 5px 15px rgba(0,0,0,0.1); transition: transform 0.2s, box-shadow 0.2s; }
.note:hover { transform: scale(1.1) rotate(0deg) !important; box-shadow: 10px 10px 25px rgba(0,0,0,0.2); z-index: 10; }

/* --- GALERİ & FİLTRE --- */
.filter-controls { margin-bottom: 2.5rem; display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.filter-btn { padding: 0.7rem 1.5rem; font-size: 1rem; font-weight: bold; color: var(--primary-color); background-color: white; border: 2px solid var(--background-dark); border-radius: 50px; cursor: pointer; transition: all 0.3s ease; }
.filter-btn:hover { background-color: var(--background-dark); border-color: var(--secondary-color); }
.filter-btn.active { background-color: var(--secondary-color); color: white; border-color: var(--secondary-color); }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.gallery-item { transition: transform 0.4s ease, opacity 0.4s ease; overflow: hidden; border-radius: 15px; }
.gallery-image { width: 100%; height: 250px; object-fit: cover; border-radius: 15px; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; }
.gallery-image:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.gallery-item.is-hidden { transform: scale(0.8); opacity: 0; width: 0; height: 0; padding: 0; margin: 0; overflow: hidden; }

/* --- VİDEO BÖLÜMÜ --- */
.cinematic-section { padding: 0; max-width: none; }
.video-poster { position: relative; width: 100%; height: 70vh; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; flex-direction: column; cursor: pointer; }
.video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); transition: background-color 0.3s; }
.video-poster:hover .video-overlay { background: rgba(0,0,0,0.2); }
.play-button { width: 90px; height: 90px; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(5px); border: 2px solid white; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; transition: transform 0.3s, background-color 0.3s; }
.play-button svg { width: 40px; height: 40px; fill: white; transform: translateX(3px); }
.video-poster:hover .play-button { transform: scale(1.1); background: rgba(255, 255, 255, 0.3); }
.video-title { z-index: 2; color: white; margin-top: 1.5rem; font-size: 2rem; text-shadow: 2px 2px 10px rgba(0,0,0,0.7); }

/* --- ZAMAN ÇİZELGESİ --- */
.timeline { position: relative; max-width: 800px; margin: 2rem auto; padding: 2rem 0; }
.timeline::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 3px; height: 100%; background: var(--background-dark); }
.timeline-item { padding: 1rem 3rem; position: relative; width: 50%; }
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; text-align: left; }
.timeline-item::after { content: ''; position: absolute; width: 25px; height: 25px; top: calc(50% - 12.5px); background: white; border: 4px solid var(--secondary-color); border-radius: 50%; z-index: 1; }
.timeline-item:nth-child(odd)::after { right: -12.5px; }
.timeline-item:nth-child(even)::after { left: -12.5px; }

/* --- MEKTUP & İMZA --- */
.letter-box { max-width: 800px; margin: 0 auto; padding: 3rem; background: white; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); text-align: left; white-space: pre-wrap; font-family: var(--font-primary); font-style: italic; font-size: 1.2rem; line-height: 2; }
.signature { text-align: center; font-family: var(--font-handwriting); font-size: 2.5rem; margin-top: 2rem; color: var(--primary-color); }

/* --- FİNAL BÖLÜMÜ --- */
#finale-section { background: #0f0c29; background: -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29); background: linear-gradient(to right, #24243e, #302b63, #0f0c29); color: white; overflow: hidden; }
#writing-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; cursor: crosshair; z-index: 1;}
.finale-content { z-index: 2; text-align: center; color: white; pointer-events: none; }
.finale-content h1 { color: white; text-shadow: 0 0 15px rgba(255,255,255,0.5); }

/* --- MEDYA GÖRÜNTÜLEYİCİ, ANİMASYONLAR, VS. --- */
.media-viewer-container { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.9); align-items: center; justify-content: center; }
.image-wrapper, .video-wrapper { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.media-viewer-content { max-width: 90%; max-height: 80%; animation: zoom 0.5s; display: block; }
.video-wrapper { width: 90%; max-width: 1200px; position: relative; }
#lightbox-video { width: 100%; border-radius: 10px; }
@keyframes zoom { from { transform: scale(0); } to { transform: scale(1); } }
.media-viewer-close { position: absolute; top: 2rem; right: 2.5rem; color: white; font-size: 3rem; font-weight: bold; cursor: pointer; z-index: 2001;}
.media-viewer-prev, .media-viewer-next { cursor: pointer; position: absolute; top: 50%; transform: translateY(-50%); color: white; font-size: 2rem; padding: 1rem; user-select: none; z-index: 2001;}
.media-viewer-prev { left: 1rem; }
.media-viewer-next { right: 1rem; }
.scroll-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 50px; height: 50px; background-color: var(--secondary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; text-decoration: none; box-shadow: 0 4px 10px rgba(0,0,0,0.2); z-index: 999; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s ease; }
.scroll-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-to-top:hover { background-color: var(--primary-color); transform: scale(1.1); }
.click-heart { position: fixed; font-size: 24px; color: var(--secondary-color); animation: fall-and-fade 1.5s linear forwards; user-select: none; pointer-events: none; z-index: 9999; }
@keyframes fall-and-fade { 0% { transform: translateY(0) scale(1); opacity: 1; } 100% { transform: translateY(150px) scale(0.5); opacity: 0; } }
[data-animate] { opacity: 0; transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
[data-animate="fade-in"] { transform: translateY(20px); }
[data-animate="fade-in-up"] { transform: translateY(50px); }
[data-animate="fade-in-left"] { transform: translateX(-50px); }
[data-animate="fade-in-right"] { transform: translateX(50px); }
[data-animate].is-visible { opacity: 1; transform: translateY(0) translateX(0); }

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 992px) { .nav-link { margin: 0 0.5rem; } }
@media (max-width: 768px) {
    .nav-menu { position: fixed; top: 0; right: -100%; width: 60%; height: 100vh; flex-direction: column; justify-content: center; background: var(--background-light); transition: right 0.4s ease-in-out; box-shadow: -5px 0 15px rgba(0,0,0,0.1); }
    .nav-menu.is-active { right: 0; }
    .nav-link { margin: 1.5rem 0; font-size: 1.2rem; }
    .nav-toggle { display: flex; }
    .nav-toggle.is-active span:nth-child(1) { transform: rotate(45deg); }
    .nav-toggle.is-active span:nth-child(2) { opacity: 0; transform: translateX(20px); }
    .nav-toggle.is-active span:nth-child(3) { transform: rotate(-45deg); }
    .content-section { padding: 4rem 1.5rem; }
    .timeline::before { left: 30px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 20px; text-align: left !important; left: 0 !important; }
    .timeline-item::after { left: 18px !important; }
    .media-viewer-close { top: 1rem; right: 1.5rem; font-size: 2.5rem; }
    .countdown-item { min-width: 100px; padding: 1rem; }
    .countdown-item span { font-size: 2.5rem; }
    .video-title { font-size: 1.5rem; }
    .grid-container { grid-template-columns: 1fr; }
}
/* --- MOBİL UYUMLULUK --- */

/* Genel İyileştirmeler */
body {
    -webkit-text-size-adjust: 100%; /* iOS cihazlarda metin boyutlandırmayı düzeltir */
    text-size-adjust: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Resimlerin altında oluşabilecek fazladan boşlukları engeller */
}

/* 992px ve daha küçük ekranlar için genel responsive kurallar */
@media (max-width: 992px) {
    /* Navbar için daha küçük marjinler */
    .nav-container {
        padding: 0.8rem 1.5rem;
    }

    .nav-brand {
        font-size: 1.3rem;
    }

    .button-small {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* Hikaye kontrolleri için daha büyük butonlar ve konum */
    .story-controls {
        right: 1rem; /* Sağdan biraz daha yaklaşsın */
        gap: 0.8rem;
    }

    .story-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    /* Bölüm paddingleri */
    .content-section {
        padding: 5rem 1.5rem;
    }

    /* Sayfa başlıkları için responsive font boyutları */
    h1 {
        font-size: clamp(2rem, 7vw, 4rem); /* Minimum 2rem, maksimum 4rem, viewport genişliğine göre ayarlanır */
    }

    h2 {
        font-size: clamp(1.8rem, 6vw, 3rem);
    }

    h3 {
        font-size: clamp(1.3rem, 5vw, 2rem);
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-content p {
        font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    }

    .button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    /* Favoriler ve Nedenler grid düzeni */
    .favorites-grid,
    .reasons-grid,
    .notes-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Daha küçük ekranlarda daha az sütun */
        gap: 1.5rem;
    }

    .favorite-card, .reason-card, .note {
        padding: 1.5rem;
    }

    .favorite-icon svg {
        width: 50px;
        height: 50px;
    }

    .favorite-card p {
        font-size: 1rem;
    }

    .reason-card {
        font-size: 1.1rem;
    }

    .note {
        font-size: 1.5rem;
        margin: 0 auto; /* Notları ortalamak için */
        transform: none !important; /* Küçük ekranlarda notların dönme efektini kaldır */
    }

    /* Galeri */
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Daha küçük galeriler */
        gap: 1rem;
    }

    .gallery-image {
        height: 180px; /* Görsel yüksekliğini düşür */
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* 768px ve daha küçük ekranlar için özel responsive kurallar */
@media (max-width: 768px) {
    /* Navbar'ın mobil menüye geçişi (mevcut kodunuzdan alındı) */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 60%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        background: var(--background-light);
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    .nav-menu.is-active {
        right: 0;
    }
    .nav-link {
        margin: 1.5rem 0;
        font-size: 1.2rem;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-toggle.is-active span:nth-child(1) { transform: rotate(45deg); }
    .nav-toggle.is-active span:nth-child(2) { opacity: 0; transform: translateX(20px); }
    .nav-toggle.is-active span:nth-child(3) { transform: rotate(-45deg); }
    
    /* İçerik bölümlerinin padding'i */
    .content-section {
        padding: 4rem 1rem; /* Yanlardan daha az boşluk */
    }

    /* Zaman sayacı */
    .countdown-container {
        flex-direction: column; /* Alt alta sırala */
        gap: 1rem;
    }
    .countdown-item {
        width: 100%; /* Tam genişlik kaplasın */
        max-width: 250px; /* Maksimum genişlik vererek çok büyümesini engelle */
        margin: 0 auto; /* Ortala */
        padding: 1rem;
    }
    .countdown-item span {
        font-size: 2.2rem; /* Sayı fontunu biraz daha küçült */
    }

    /* Takvim */
    .calendar-container {
        padding: 1.5rem;
        width: 100%;
    }
    .calendar-container table {
        font-size: 0.85rem;
        width: 100%; /* Tablonun tam genişliği kaplamasını sağla */
    }
    .calendar-container th, .calendar-container td {
        padding: 0.6rem;
    }

    /* Grid sütunları tekli olsun */
    .favorites-grid,
    .reasons-grid,
    .notes-grid {
        grid-template-columns: 1fr; /* Tek sütun */
    }

    .grid-container {
        grid-template-columns: 1fr; /* Tek sütun */
        gap: 2rem;
    }

    /* Timeline (Zaman Çizelgesi) - Mevcut hali iyi ama biraz daha düzenlenebilir */
    .timeline::before {
        left: 20px; /* Çizgiyi daha sola al */
    }
    .timeline-item {
        width: 100%; /* Tam genişlik */
        padding-left: 60px; /* İşaretçiden sonraki boşluk */
        padding-right: 1rem;
        text-align: left !important;
        left: 0 !important;
    }
    .timeline-item::after {
        left: 10px !important; /* İşaretçinin çizgiyi ortalaması */
        width: 20px; /* Daha küçük işaretçi */
        height: 20px;
        top: 1.5rem; /* Konumunu ayarla */
    }
    .timeline-item h3 {
        font-size: 1.1rem;
    }
    .timeline-item p {
        font-size: 0.9rem;
    }

    /* Video Bölümü */
    .video-poster {
        height: 40vh; /* Video posterini küçült */
    }
    .play-button {
        width: 70px; /* Oynatma butonunu küçült */
        height: 70px;
    }
    .play-button svg {
        width: 30px;
        height: 30px;
    }
    .video-title {
        font-size: 1.3rem;
        margin-top: 1rem;
    }

    /* Mektup ve İmza */
    .letter-box {
        padding: 1.5rem;
        font-size: 1rem;
        line-height: 1.8;
    }
    .signature {
        font-size: 2rem;
    }

    /* Medya Görüntüleyici */
    .media-viewer-content {
        max-width: 95vw;
        max-height: 70vh;
    }
    .media-viewer-close {
        font-size: 2.2rem;
        top: 0.8rem;
        right: 0.8rem;
    }
    .media-viewer-prev, .media-viewer-next {
        font-size: 1.8rem;
        padding: 0.5rem;
    }

    /* Hikaye Kontrolleri ve Yukarı Çık Butonu */
    .story-controls {
        flex-direction: row; /* Mobil cihazlarda okları yan yana getir */
        bottom: 15px; /* Alta al */
        top: auto; /* Üstten ayarı kaldır */
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 30px); /* Kenarlardan boşluk bırak */
        justify-content: center;
        gap: 15px; /* Butonlar arasına boşluk */
        padding: 0;
    }

    .story-nav-btn {
        width: 40px; /* Daha küçük butonlar */
        height: 40px;
        font-size: 1.2rem;
    }

    /* Okların sıralamasını değiştirelim, Next (aşağı) önce gelsin. */
    .story-nav-btn.prev {
        order: 2;
    }
    .story-nav-btn.next {
        order: 1;
    }

    #scroll-to-top {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        bottom: 70px; /* Story controls ile çakışmaması için yukarı kaydır */
        right: 15px;
    }

    /* Animasyonları daha basit hale getirme (performans için) */
    [data-animate] {
        transition: opacity 0.5s ease-out; /* Sadece opaklık animasyonu */
        transform: none; /* Transform animasyonlarını kaldır */
    }
    [data-animate].is-visible {
        opacity: 1;
    }
}

/* 480px ve daha küçük ekranlar için ekstra ince ayarlar (çoğu telefon) */
@media (max-width: 480px) {
    h1 {
        font-size: clamp(1.8rem, 8vw, 3.5rem);
    }
    h2 {
        font-size: clamp(1.6rem, 7vw, 2.5rem);
    }
    h3 {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
    }

    .nav-brand {
        font-size: 1.2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .button {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
    }

    .countdown-item {
        padding: 0.8rem;
    }
    .countdown-item span {
        font-size: 1.8rem;
    }

    .favorite-card, .reason-card, .note {
        padding: 1rem;
        font-size: 1rem;
    }
    .favorite-icon svg {
        width: 40px;
        height: 40px;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.8rem;
    }
    .gallery-image {
        height: 150px;
    }

    .letter-box {
        padding: 1rem;
        font-size: 0.9rem;
    }
    .signature {
        font-size: 1.8rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }
    .play-button svg {
        width: 25px;
        height: 25px;
    }
    .video-title {
        font-size: 1.1rem;
    }

    .story-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    #scroll-to-top {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        bottom: 60px; /* Tekrar ayarlama */
    }
}
#our-video {
    /* * Kapsayıcısının %100'ü kadar genişlik kaplar, 
     * böylece duyarlı (responsive) olur.
     */
    width: 100%; 
    
    /* * Ancak, ekran genişliği 800 pikselden büyük olsa bile 
     * video asla 800 pikseli geçmez. 
     * İstediğiniz maksimum boyutu buraya yazın.
     */
    max-width: 300px; /* İstediğiniz maksimum genişlik */
    
    /* * Videonun sayfanın ortasında yer almasını sağlar 
     * (eğer genişliği max-width'ten küçükse).
     */
    display: block; 
    margin: 0 auto; 
}

/* Videonun kapsayıcısını da (content-section) kontrol edebilirsiniz */
.content-section {
    padding: 20px; /* Kenar boşlukları ekler */
}
#our-video {
    width: 100%; /* Kapsayıcısının genişliğini kapla */
    max-width: 300px; /* Maksimum genişliği sınırla, istediğiniz piksel değerini girin */
    height: auto; /* Genişliğe göre yüksekliği otomatik ayarla, oranları koru */
    
    /* * Burası önemli: Video içeriğinin kapsayıcıya nasıl sığacağını belirtir. */
    object-fit: contain; /* Videoyu orantılı bir şekilde sığdır, gerekirse boşluk bırak (şimdiki durumunuz) */
    /* object-fit: cover; */ /* Videoyu kapsayıcıyı tamamen kaplayacak şekilde büyüt, bazı kısımları kesilebilir */
    /* object-fit: fill; */ /* Videoyu kapsayıcıyı tamamen dolduracak şekilde gerer/sıkıştırır, oranlar bozulabilir */

    /* Videoyu ortalamak için */
    display: block; 
    margin: 0 auto; 
    
    background-color: black; /* Siyah boşluklar oluşursa arkasını siyah yapar, ancak çözüm değildir. */
}
