/* CSS Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background: #ffb3d9;
    background-image: 
        radial-gradient(circle at 20% 20%, #ffccee 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, #ff99cc 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, #ffddee 0%, transparent 50%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    animation: retro-bg 3s ease-in-out infinite alternate, body-shake 5s ease-in-out infinite;
}

@keyframes retro-bg {
    0% { background-color: #ffb3d9; }
    33% { background-color: #ff99cc; }
    66% { background-color: #ffccee; }
    100% { background-color: #ffb3ff; }
}

@keyframes body-shake {
    0%, 100% { transform: translateX(0px); }
    10% { transform: translateX(-1px); }
    20% { transform: translateX(1px); }
    30% { transform: translateX(-1px); }
    40% { transform: translateX(1px); }
    50% { transform: translateX(0px); }
}

/* Yıldızlı Arka Plan Animasyonu */
.stars, .stars2, .stars3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.stars {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="white" opacity="0.8"/><circle cx="80" cy="40" r="0.8" fill="gold" opacity="0.6"/><circle cx="40" cy="60" r="1.2" fill="white" opacity="0.9"/><circle cx="70" cy="80" r="0.6" fill="gold" opacity="0.7"/></svg>') repeat;
    animation: sparkle 3s linear infinite;
}

.stars2 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="60" cy="30" r="0.8" fill="white" opacity="0.7"/><circle cx="10" cy="70" r="1" fill="gold" opacity="0.8"/><circle cx="90" cy="20" r="0.6" fill="white" opacity="0.6"/></svg>') repeat;
    animation: sparkle 4s linear infinite reverse;
}

.stars3 {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="30" cy="10" r="0.6" fill="gold" opacity="0.9"/><circle cx="85" cy="60" r="0.8" fill="white" opacity="0.7"/><circle cx="15" cy="90" r="1" fill="gold" opacity="0.6"/></svg>') repeat;
    animation: sparkle 5s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-100vh); opacity: 0; }
}

/* Kalp Yağmuru */
.heart-rain {
    position: fixed;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.heart-rain::before,
.heart-rain::after {
    content: '💖';
    position: absolute;
    font-size: 20px;
    animation: heartFall 8s linear infinite;
}

.heart-rain::before {
    left: 10%;
    animation-delay: 0s;
}

.heart-rain::after {
    left: 70%;
    animation-delay: 4s;
}

@keyframes heartFall {
    0% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Fixed Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ff0066;
    border-bottom: 4px solid #ff3399;
    box-shadow: 0 4px 8px rgba(255, 0, 102, 0.5);
    z-index: 1000;
    animation: navbar-glow 3s ease-in-out infinite alternate;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 1rem;
    gap: 1rem;
}

.site-title {
    font-family: 'Comic Sans MS', cursive;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 2px 2px 0px #ff3399;
    animation: title-bounce 2s ease-in-out infinite;
}

@keyframes navbar-glow {
    0% { background: #ff0066; }
    100% { background: #ff3399; }
}

@keyframes title-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Mini Music Player */
.mini-music-player {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid #ff6699;
    box-shadow: 3px 3px 0px #ff99cc;
    animation: player-pulse 2s ease-in-out infinite;
}

.mini-control-btn {
    background: #ff99dd;
    border: 2px solid #ff0066;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 0.8rem;
    color: #ff0066;
    font-weight: bold;
    transition: all 0.2s ease;
    animation: mini-wiggle 3s ease-in-out infinite;
}

.mini-control-btn:hover {
    transform: scale(1.1) rotate(15deg);
    background: #ff66cc;
}

.mini-heart-play-btn {
    background: #ff0066;
    border: 2px solid #ffffff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: all 0.2s ease;
    animation: mini-heart-pulse 1.5s ease-in-out infinite;
}

.mini-heart-play-btn:hover {
    transform: scale(1.1) rotate(360deg);
    background: #ff3388;
}

.mini-heart {
    font-size: 1rem;
    color: #ffffff;
}

.mini-song-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 120px;
}

.mini-song-title {
    font-size: 0.8rem;
    color: #ff0066;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.mini-song-counter {
    font-size: 0.7rem;
    color: #ff6699;
    font-weight: bold;
}

.mini-volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mini-volume-icon {
    font-size: 0.9rem;
    color: #ff0066;
}

.mini-volume-slider {
    width: 60px;
    height: 4px;
    background: #ff99dd;
    border: 1px solid #ff0066;
    border-radius: 0px;
    outline: none;
    cursor: pointer;
}

@keyframes player-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

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

@keyframes mini-heart-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Ana Container - Navbar için padding eklendi */
.container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 80px; /* Navbar için boşluk */
    min-height: 100vh;
}

/* Başlık */
.main-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 2s ease-out;
}

.love-title {
    font-family: 'Comic Sans MS', cursive;
    font-size: 4rem;
    color: #ff0066;
    text-shadow: 
        3px 3px 0px #ffccee,
        6px 6px 0px #ff99cc,
        9px 9px 0px #ff6699;
    margin-bottom: 1rem;
    animation: 
        retro-bounce 1.5s ease-in-out infinite,
        color-change 2s ease-in-out infinite,
        crazy-rotate 4s linear infinite,
        size-pulse 3s ease-in-out infinite;
    border: 4px solid #ff0066;
    background: #ffeeaa;
    padding: 1rem 2rem;
    border-radius: 0px;
    position: relative;
}

@keyframes retro-bounce {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-5deg); }
    50% { transform: translateY(0px) rotate(5deg); }
    75% { transform: translateY(-5px) rotate(-2deg); }
}

@keyframes color-change {
    0% { color: #ff0066; border-color: #ff0066; }
    25% { color: #ff3399; border-color: #ff3399; }
    50% { color: #ff6699; border-color: #ff6699; }
    75% { color: #ff0099; border-color: #ff0099; }
    100% { color: #ff0066; border-color: #ff0066; }
}

@keyframes crazy-rotate {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    50% { transform: rotate(-3deg); }
    75% { transform: rotate(2deg); }
    100% { transform: rotate(0deg); }
}

@keyframes size-pulse {
    0%, 100% { font-size: 4rem; }
    50% { font-size: 4.3rem; }
}

.subtitle {
    font-size: 1.5rem;
    color: #ff0066;
    font-weight: bold;
    background: #ffccee;
    border: 3px dashed #ff6699;
    padding: 0.5rem 1rem;
    border-radius: 0px;
    text-shadow: 2px 2px 0px #ffffff;
    animation: 
        retro-blink 1s ease-in-out infinite,
        subtitle-dance 2s ease-in-out infinite,
        rainbow-border 3s linear infinite;
    position: relative;
}

@keyframes retro-blink {
    0%, 70%, 100% { opacity: 1; }
    85% { opacity: 0.3; }
}

@keyframes subtitle-dance {
    0%, 100% { transform: translateX(0px) skewX(0deg); }
    25% { transform: translateX(-5px) skewX(-5deg); }
    50% { transform: translateX(5px) skewX(5deg); }
    75% { transform: translateX(-3px) skewX(-3deg); }
}

@keyframes rainbow-border {
    0% { border-color: #ff6699; }
    20% { border-color: #ff3399; }
    40% { border-color: #ff0066; }
    60% { border-color: #ff6699; }
    80% { border-color: #ff99cc; }
    100% { border-color: #ff6699; }
}

@keyframes heartbeat {
    0%, 50%, 100% { transform: scale(1); }
    25%, 75% { transform: scale(1.1); }
}

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

/* Dekoratif Boombox */
.music-player-decorative {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    animation: retro-slide 2s ease-out 0.5s both;
}

.retro-boombox {
    background: #ff99dd;
    padding: 2rem;
    border-radius: 0px;
    border: 5px solid #ff0066;
    box-shadow: 10px 10px 0px #ff6699;
    text-align: center;
    position: relative;
    animation: boombox-bounce 3s ease-in-out infinite;
}

.retro-boombox h3 {
    color: #ff0066;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-shadow: 2px 2px 0px #ffffff;
}

.retro-boombox p {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-shadow: 1px 1px 0px #ff0066;
}

.fake-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fake-btn {
    background: #ffccee;
    border: 3px solid #ff0066;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #ff0066;
    animation: fake-btn-spin 4s linear infinite;
}

.visualizer {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    height: 30px;
    align-items: end;
}

.bar {
    width: 8px;
    background: #ff0066;
    border-radius: 4px 4px 0 0;
    animation: visualizer-dance 1s ease-in-out infinite;
}

.bar:nth-child(1) { animation-delay: 0s; height: 10px; }
.bar:nth-child(2) { animation-delay: 0.2s; height: 15px; }
.bar:nth-child(3) { animation-delay: 0.4s; height: 25px; }
.bar:nth-child(4) { animation-delay: 0.6s; height: 20px; }
.bar:nth-child(5) { animation-delay: 0.8s; height: 12px; }

@keyframes retro-slide {
    0% { transform: translateX(-100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

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

@keyframes fake-btn-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes visualizer-dance {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

.music-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.control-btn {
    background: #ffccee;
    border: 3px solid #ff0066;
    border-radius: 0px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 3px 3px 0px #ff6699;
    font-size: 1.2rem;
    color: #ff0066;
    font-weight: bold;
    animation: 
        btn-wiggle 2s ease-in-out infinite,
        btn-pulse 1.5s ease-in-out infinite,
        btn-color-cycle 3s linear infinite;
}

.control-btn:hover {
    transform: translate(-1px, -1px) rotate(15deg) scale(1.1);
    box-shadow: 4px 4px 0px #ff6699;
    background: #ff99dd;
    animation: 
        rapid-spin 0.8s linear infinite,
        hover-bounce 0.4s ease-in-out infinite;
}

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

@keyframes btn-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes btn-color-cycle {
    0% { background: #ffccee; border-color: #ff0066; }
    33% { background: #ff99dd; border-color: #ff3399; }
    66% { background: #ffaaee; border-color: #ff6699; }
    100% { background: #ffccee; border-color: #ff0066; }
}

@keyframes rapid-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes hover-bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.song-info {
    text-align: center;
    color: #ff0066;
    background: #ffffff;
    border: 2px solid #ff6699;
    padding: 0.8rem;
    border-radius: 0px;
}

.song-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 0px #ffccee;
    color: #ff0066;
}

.song-counter {
    font-size: 0.9rem;
    color: #ff6699;
    font-weight: bold;
    background: #ffeeaa;
    padding: 0.2rem 0.5rem;
    border: 1px solid #ff6699;
    display: inline-block;
}

.heart-play-btn {
    background: #ff0066;
    border: 4px solid #ffffff;
    border-radius: 0px;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 5px 5px 0px #ff6699;
    position: relative;
    animation: 
        retro-pulse 1s ease-in-out infinite,
        heart-spin 3s linear infinite,
        heart-bounce 2s ease-in-out infinite,
        border-glow 1.5s ease-in-out infinite alternate;
}

.heart-play-btn:hover {
    transform: translate(-2px, -2px) rotate(360deg);
    box-shadow: 7px 7px 0px #ff6699;
    background: #ff3388;
    animation: 
        crazy-spin 0.5s linear infinite,
        heart-bounce 0.3s ease-in-out infinite;
}

.heart-play-btn .heart {
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 2px 2px 0px #ff0066;
    animation: heart-beat 1s ease-in-out infinite;
}

@keyframes retro-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes heart-spin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.05); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes heart-bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes border-glow {
    0% { border-color: #ffffff; box-shadow: 5px 5px 0px #ff6699; }
    100% { border-color: #ffff99; box-shadow: 5px 5px 10px #ff3399; }
}

@keyframes crazy-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffccee;
    padding: 1rem 1.5rem;
    border-radius: 0px;
    border: 3px solid #ff6699;
    box-shadow: 3px 3px 0px #ff99cc;
}

.volume-icon {
    font-size: 1.5rem;
    color: #ff0066;
}

.volume-slider {
    width: 150px;
    height: 10px;
    border-radius: 0px;
    background: #ff99dd;
    outline: none;
    cursor: pointer;
    border: 2px solid #ff0066;
}

/* Gün Sayaçları */
.counters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 2s ease-out 1s both;
}

.counter-card {
    background: #ffeeaa;
    border-radius: 0px;
    padding: 2rem;
    text-align: center;
    border: 4px solid #ff0066;
    transition: transform 0.2s ease;
    box-shadow: 8px 8px 0px #ff99cc;
    position: relative;
    animation: 
        retro-wiggle 2s ease-in-out infinite,
        card-bounce 3s ease-in-out infinite,
        card-glow 2s ease-in-out infinite alternate,
        card-shake 4s ease-in-out infinite;
}

.counter-card:hover {
    transform: translate(-3px, -3px) rotate(5deg) scale(1.05);
    box-shadow: 11px 11px 0px #ff99cc;
    animation: 
        wild-spin 1s linear infinite,
        crazy-bounce 0.5s ease-in-out infinite;
}

.counter-card:before {
    content: "💕";
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff0066;
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.counter-card h3 {
    font-family: 'Comic Sans MS', cursive;
    font-size: 2rem;
    color: #ff0066;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px #ffffff;
}

.counter-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff0066;
    text-shadow: 3px 3px 0px #ffccee;
    margin-bottom: 0.5rem;
    background: #ffffff;
    border: 2px solid #ff6699;
    padding: 0.5rem;
    display: inline-block;
}

.counter-card p {
    color: #ff0066;
    font-size: 1.1rem;
    font-weight: bold;
}

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

@keyframes card-bounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
}

@keyframes card-glow {
    0% { border-color: #ff0066; background: #ffeeaa; }
    100% { border-color: #ff3399; background: #fff99f; }
}

@keyframes card-shake {
    0%, 100% { transform: translateX(0px); }
    10% { transform: translateX(-2px); }
    20% { transform: translateX(2px); }
    30% { transform: translateX(-1px); }
    40% { transform: translateX(1px); }
    50% { transform: translateX(0px); }
}

@keyframes wild-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes crazy-bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Saate Göre Mesaj */
.time-message {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 2s ease-out 1.5s both;
}

.time-message p {
    font-size: 1.8rem;
    color: #ff0066;
    background: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 0px;
    display: inline-block;
    text-shadow: 2px 2px 0px #ffccee;
    border: 4px dashed #ff6699;
    font-weight: bold;
    box-shadow: 6px 6px 0px #ff99cc;
    animation: retro-float 3s ease-in-out infinite;
}

@keyframes retro-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Slideshow Fotoğraf Galerisi */
.photo-gallery {
    margin: 60px auto;
    text-align: center;
    max-width: 800px;
    background: #ffccee;
    border: 8px solid #ff0066;
    box-shadow: 10px 10px 0px #cc0044;
    animation: wiggle 6s infinite, glow 4s infinite;
    padding: 30px;
}

.gallery-title {
    color: #ff0066;
    font-size: 32px;
    margin-bottom: 30px;
    text-shadow: 3px 3px 0px #000;
    animation: bounce 2s infinite;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
    text-align: center;
}

.slideshow-container {
    position: relative;
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border: 6px solid #ff0066;
    box-shadow: 8px 8px 0px #cc0044;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: translateX(100%);
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

.slide-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 0;
    filter: sepia(0.2) saturate(1.3) brightness(1.1);
}

/* Slide caption kaldırıldı */

.slideshow-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 0 20px;
}

.slide-btn {
    background: #ff0066;
    color: white;
    border: 4px solid #cc0044;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 5px 5px 0px #cc0044;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.slide-btn:hover {
    background: #cc0044;
    transform: scale(1.1);
    animation: bounce 0.5s infinite;
}

.slide-counter {
    background: #ff99dd;
    color: #ff0066;
    padding: 10px 20px;
    border: 4px solid #ff0066;
    box-shadow: 3px 3px 0px #cc0044;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 0px #000;
    animation: blink 3s infinite;
}

.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    background: #ff99dd;
    border: 2px solid #ff0066;
    cursor: pointer;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.indicator-dot.active {
    background: #ff0066;
    transform: scale(1.3);
    animation: bounce 1s infinite;
}

.indicator-dot:hover {
    background: #cc0044;
    transform: scale(1.2);
}

/* Seni Seviyorum Çünkü Listesi */
.love-reasons {
    margin-bottom: 4rem;
    animation: fadeInUp 2s ease-out 2.5s both;
}

.love-reasons h2 {
    font-family: 'Comic Sans MS', cursive;
    font-size: 3rem;
    color: #ff0066;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 4px 4px 0px #ffffff;
    background: #ffeeaa;
    border: 5px double #ff0066;
    padding: 1rem 2rem;
    display: inline-block;
    box-shadow: 8px 8px 0px #ff99cc;
    animation: retro-shake 2s ease-in-out infinite;
}

@keyframes retro-shake {
    0%, 100% { transform: translateX(0px); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

.reasons-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.reason-item {
    background: #ffccee;
    padding: 1.5rem;
    border-radius: 0px;
    color: #ff0066;
    font-size: 1.1rem;
    text-align: center;
    border: 3px solid #ff6699;
    opacity: 0;
    animation: reasonAppear 0.8s ease-out forwards;
    font-weight: bold;
    box-shadow: 4px 4px 0px #ff99cc;
    position: relative;
}

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

/* Romantik Mesajlar */
.love-messages {
    margin-bottom: 4rem;
    animation: fadeInUp 2s ease-out 3s both;
}

.message-card {
    background: #ff99dd;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 0px;
    text-align: center;
    border: 4px solid #ff0066;
    transition: transform 0.2s ease;
    box-shadow: 6px 6px 0px #ff6699;
    position: relative;
    animation: retro-glow 4s ease-in-out infinite;
}

.message-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px #ff6699;
}

.message-card:before {
    content: "💌";
    position: absolute;
    top: -15px;
    left: -15px;
    background: #ffeeaa;
    border: 2px solid #ff0066;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.message-card p {
    font-size: 1.5rem;
    color: #ffffff;
    font-style: normal;
    font-weight: bold;
    text-shadow: 3px 3px 0px #ff0066;
}

@keyframes retro-glow {
    0%, 100% { border-color: #ff0066; }
    50% { border-color: #ff3388; }
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    animation: fadeInUp 2s ease-out 3.5s both;
}

.footer p {
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-date {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

/* Responsive Tasarım */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        padding-top: 120px; /* Mobilde navbar daha yüksek */
    }
    
    .navbar-content {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .site-title {
        font-size: 1rem;
    }
    
    .mini-music-player {
        gap: 0.5rem;
        padding: 0.4rem 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .mini-song-info {
        min-width: 100px;
        text-align: center;
    }
    
    .mini-song-title {
        max-width: 100px;
        font-size: 0.7rem;
    }
    
    .mini-volume-control {
        gap: 0.3rem;
    }
    
    .mini-volume-slider {
        width: 50px;
    }
    
    .love-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .music-player {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .music-controls {
        gap: 1rem;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .song-title {
        font-size: 1rem;
    }
    
    .volume-control {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .volume-slider {
        width: 200px;
    }
    
    .counters {
        grid-template-columns: 1fr;
    }
    
    .slideshow-wrapper {
        height: 300px;
    }
    
    .photo-gallery {
        padding: 20px;
        margin: 30px auto;
    }
    
    .gallery-title {
        font-size: 24px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .slide-btn {
        padding: 12px 15px;
        font-size: 20px;
    }
    
    .slide-counter {
        padding: 8px 15px;
        font-size: 16px;
    }
    
    .slide-indicators {
        gap: 8px;
    }
    
    .indicator-dot {
        width: 10px;
        height: 10px;
    }
    
    .love-reasons h2 {
        font-size: 2.5rem;
    }
    
    .reasons-list {
        grid-template-columns: 1fr;
    }
    
    .message-card p {
        font-size: 1.3rem;
    }
    
    .time-message p {
        font-size: 1.5rem;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .love-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .heart-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .heart-play-btn .heart {
        font-size: 1.5rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .slideshow-wrapper {
        height: 250px;
    }
    
    .photo-gallery {
        padding: 15px;
        margin: 20px auto;
    }
    
    .gallery-title {
        font-size: 20px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .slide-btn {
        padding: 10px 12px;
        font-size: 18px;
    }
    
    .slide-counter {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .indicator-dot {
        width: 8px;
        height: 8px;
    }
    
    .love-reasons h2 {
        font-size: 2rem;
    }
} 