/* Sevgili Sitesi - Ana CSS */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&display=swap');

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

:root {
    --primary-color: #ff6b9d;
    --secondary-color: #c44569;
    --accent-color: #f8b500;
    --text-color: #333;
    --bg-color: #fff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.2);
    --gradient-start: #ff6b9d;
    --gradient-end: #c44569;
}

/* Tema Tanımları */
/* Tema: Romantik Pembe (Varsayılan) */
[data-theme="romantic-pink"] {
    --primary-color: #ff6b9d;
    --secondary-color: #c44569;
    --accent-color: #f8b500;
    --gradient-start: #ff6b9d;
    --gradient-end: #c44569;
}

/* Tema: Klasik Kırmızı */
[data-theme="classic-red"] {
    --primary-color: #e74c3c;
    --secondary-color: #c0392b;
    --accent-color: #f39c12;
    --gradient-start: #e74c3c;
    --gradient-end: #c0392b;
}

/* Tema: Pastel Aşk */
[data-theme="pastel-love"] {
    --primary-color: #ffb3d1;
    --secondary-color: #ff91c7;
    --accent-color: #ffd700;
    --gradient-start: #ffb3d1;
    --gradient-end: #ff91c7;
}

/* Tema: Gece Aşkı */
[data-theme="night-love"] {
    --primary-color: #6c5ce7;
    --secondary-color: #5f3dc4;
    --accent-color: #a29bfe;
    --gradient-start: #6c5ce7;
    --gradient-end: #5f3dc4;
}

/* Tema: Altın Aşk */
[data-theme="golden-love"] {
    --primary-color: #f39c12;
    --secondary-color: #e67e22;
    --accent-color: #f1c40f;
    --gradient-start: #f39c12;
    --gradient-end: #e67e22;
}

/* Tema: Yumuşak Mor */
[data-theme="soft-purple"] {
    --primary-color: #a29bfe;
    --secondary-color: #6c5ce7;
    --accent-color: #fd79a8;
    --gradient-start: #a29bfe;
    --gradient-end: #6c5ce7;
}

/* Tema: Pembe Rüya */
[data-theme="pink-dream"] {
    --primary-color: #fd79a8;
    --secondary-color: #e84393;
    --accent-color: #fdcb6e;
    --gradient-start: #fd79a8;
    --gradient-end: #e84393;
}

/* Tema: Klasik Gül */
[data-theme="classic-rose"] {
    --primary-color: #e91e63;
    --secondary-color: #c2185b;
    --accent-color: #ff9800;
    --gradient-start: #e91e63;
    --gradient-end: #c2185b;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: var(--light-bg);
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

/* Ana Sayfa */
.home-page {
    min-height: 100vh;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.feature {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature h3 {
    margin-bottom: 10px;
}

/* Çift Şifre Sayfası */
.couple-password-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    padding: 20px;
}

.password-container {
    width: 100%;
    max-width: 400px;
}

.password-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.heart-animation {
    margin-bottom: 20px;
}

.heart {
    font-size: 4rem;
    animation: heartbeat 1.5s infinite;
}

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

.password-form {
    margin-top: 30px;
}

.password-hint {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 15px 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
    animation: fadeIn 0.5s ease-in;
}

.password-hint .hint-label {
    color: #856404;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 8px;
}

.password-hint .hint-text {
    color: #856404;
    font-size: 15px;
    font-weight: 500;
    flex: 1;
    text-align: left;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Özelleştirilebilir Popup Stilleri */
.custom-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-in;
    backdrop-filter: blur(5px);
}

.custom-popup-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.4s ease-out;
    position: relative;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-title {
    color: #333;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.popup-message {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
    white-space: pre-wrap;
}

.popup-button {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Özel Günler Stilleri */
.special-days-section {
    margin-bottom: 40px;
}

.special-day-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.special-day-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.special-day-item.today {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border-color: #ffc107;
    animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 6px 16px rgba(255, 193, 7, 0.4);
    }
}

.special-day-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.special-day-content {
    flex: 1;
}

.special-day-content h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.1rem;
}

.special-day-date {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.today-special-days {
    margin-bottom: 20px;
}

/* Modal Stilleri */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-in;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 2px solid #e0e0e0;
}

.modal-header h2 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

.modal-body {
    padding: 30px;
}

.special-day-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
}

.special-day-list-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.special-day-list-icon {
    font-size: 2rem;
}

.special-day-list-actions {
    display: flex;
    gap: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

/* Yıldönümü Popup */
.anniversary-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    animation: fadeIn 0.5s ease-in;
    backdrop-filter: blur(10px);
}

.anniversary-popup-box {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 30px;
    padding: 60px 50px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: anniversarySlideIn 0.6s ease-out;
    color: white;
}

@keyframes anniversarySlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.anniversary-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.anniversary-popup-box h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.anniversary-message {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: white;
}

.anniversary-message strong {
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.anniversary-names {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.anniversary-btn {
    background: white;
    color: #ff6b9d;
    font-size: 1.2rem;
    padding: 15px 40px;
    font-weight: 600;
}

.anniversary-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .anniversary-popup-box {
        padding: 40px 30px;
        max-width: 95%;
    }
    
    .anniversary-popup-box h2 {
        font-size: 1.5rem;
    }
    
    .anniversary-message {
        font-size: 1.1rem;
    }
    
    .anniversary-names {
        font-size: 1.2rem;
    }
    
    .anniversary-icon {
        font-size: 4rem;
    }
}

    .special-day-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .special-day-list-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .custom-popup-box {
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .popup-title {
        font-size: 24px;
    }
    
    .popup-message {
        font-size: 15px;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.error-message {
    color: #dc3545;
    margin-top: 10px;
    font-size: 14px;
}

/* Çift Sayfası - Premium Kart Tasarımı */
:root {
    --container-max: 1100px;
    --gradient-bg: linear-gradient(135deg, #ffeef5 0%, #fff0f8 50%, #ffeef5 100%);
    --gradient-romantic: linear-gradient(135deg, #f8d7da 0%, #ffeef5 50%, #f8d7da 100%);
    --card-bg: white;
    --card-radius: 24px;
    --card-shadow: 0 10px 40px rgba(0,0,0,0.08);
    --card-shadow-lg: 0 15px 50px rgba(0,0,0,0.12);
    --section-spacing: 80px;
}

.couple-page {
    min-height: 100vh;
    background: var(--gradient-romantic);
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

/* Açılış Animasyonu */
.opening-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.hearts-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.hearts-container .heart {
    position: absolute;
    font-size: 3rem;
    animation: float 3s infinite;
}

.heart-1 { top: 0; left: 50%; animation-delay: 0s; }
.heart-2 { top: 20%; right: 0; animation-delay: 0.5s; }
.heart-3 { bottom: 20%; left: 0; animation-delay: 1s; }
.heart-4 { bottom: 0; right: 20%; animation-delay: 1.5s; }
.heart-5 { top: 50%; left: 20%; animation-delay: 2s; }

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

.couple-names {
    color: white;
    font-size: 3rem;
    margin-top: 30px;
    text-align: center;
    animation: fadeIn 2s;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Ana İçerik - Container */
.couple-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 80px 20px;
    opacity: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Section Yapısı */
.section {
    margin-bottom: var(--section-spacing);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Kart Yapısı */
.card {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    padding: 60px 50px;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end), var(--gradient-start));
}

/* Section Başlıkları */
.section-title {
    font-size: 2.8rem;
    font-weight: 300;
    color: #2d2d2d;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Hero Section - Premium */
.hero-section {
    margin-bottom: var(--section-spacing);
}

.hero-card {
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    color: #2d2d2d;
    margin-bottom: 30px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-divider {
    margin: 40px 0;
    position: relative;
    height: 1px;
}

.hero-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.hero-divider .divider-heart {
    position: relative;
    display: inline-block;
    background: var(--card-bg);
    padding: 0 20px;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

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

/* Sayaç Kartı - Tek Satır 6 Kutu (Minimal) */
.counter-card {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 20px;
    padding: 30px 20px;
    color: white;
    box-shadow: 0 15px 50px rgba(255,107,157,0.3);
    margin-top: 40px;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.counter-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
}

.counter-box:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.25);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.counter-value {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: white;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
}

.counter-label {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Fotoğraf Slider Kartı */
.photo-slider-section {
    margin-bottom: var(--section-spacing);
}

.slider-card {
    padding: 30px;
}

.slider-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    width: 100%;
    padding-bottom: 80px;
    margin-bottom: 0;
}

.slider-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    opacity: 1;
    display: block;
}

.slide-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.8s;
}

.slider-slide.active .slide-image:hover {
    transform: scale(1.05);
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    width: auto;
    min-width: 200px;
    max-width: 90%;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: 300;
}

.slider-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
    max-width: 300px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.3) transparent;
    padding: 0 5px;
}

.slider-dots::-webkit-scrollbar {
    height: 4px;
}

.slider-dots::-webkit-scrollbar-track {
    background: transparent;
}

.slider-dots::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.3);
    border-radius: 2px;
}

/* Mobil responsive slider kontrolleri */
@media (max-width: 768px) {
    .slider-container {
        padding-bottom: 80px;
        margin-bottom: 0;
    }
    
    .slider-controls {
        position: relative;
        bottom: auto;
        margin-top: 20px;
        transform: none;
        left: auto;
        padding: 10px 16px;
        gap: 15px;
        min-width: 180px;
        width: auto;
        margin-left: auto;
        margin-right: auto;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .slider-dots {
        max-width: 200px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        padding-bottom: 75px;
    }
    
    .slider-controls {
        margin-top: 15px;
        padding: 8px 12px;
        gap: 10px;
        min-width: 150px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .slider-dots {
        max-width: 150px;
        gap: 6px;
    }
    
    .dot {
        width: 7px;
        height: 7px;
    }
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 107, 157, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--gradient-start);
    transform: scale(1.4);
    width: 12px;
    height: 12px;
}


/* Anılar / Hatıra Fotoğrafları Kartı */
.memories-section {
    margin-bottom: var(--section-spacing);
}

.memories-card {
    padding: 30px;
}

.memories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.memory-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.4s;
    background: var(--card-bg);
    aspect-ratio: 1;
    position: relative;
}

.memory-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.memory-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    display: block;
}

.memory-item:hover .memory-photo {
    transform: scale(1.1);
}

/* Yatay Scroll Galeri Kartı */
.scroll-gallery-section {
    margin-bottom: var(--section-spacing);
}

.scroll-gallery-card {
    padding: 30px;
}

.photo-scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ffb3d1 transparent;
}

.photo-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.photo-scroll-container::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.photo-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 157, 0.5);
    border-radius: 10px;
}

.photo-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.scroll-photo-item {
    flex: 0 0 300px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.4s;
    background: var(--card-bg);
}

.scroll-photo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.scroll-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.scroll-photo-item:hover img {
    transform: scale(1.1);
}

/* Video Bölümü Kartı */
.video-section {
    margin-bottom: var(--section-spacing);
}

.video-card {
    padding: 30px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.video-item {
    background: #fafafa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s;
    position: relative;
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
    border-radius: 20px;
}

/* Notlar Kartı - El Yazısı Font */

.notes-section {
    margin-bottom: var(--section-spacing);
}

.notes-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #fff5f8 0%, #ffeef5 100%);
    border: 2px solid #ffebf0;
}

.notes-title {
    font-size: 2.8rem;
    font-weight: 300;
    color: #2d2d2d;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.notes-text {
    font-size: 1.5rem;
    font-family: 'Dancing Script', cursive;
    line-height: 2.2;
    color: #555;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    padding: 0 20px;
}

/* Video Galeri - Premium */
.videos-section {
    margin-bottom: 80px;
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.video-item {
    background: #fafafa;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s;
    position: relative;
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* İlk Tanıştığımız Yer Kartı */
.meeting-location-section {
    margin-bottom: var(--section-spacing);
}

.location-card {
    padding: 30px;
}

.map-container {
    margin-top: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 16px;
}

/* Müzik Player Kartı */
.music-section {
    margin-bottom: var(--section-spacing);
}

.music-card {
    padding: 40px;
    text-align: center;
}

.music-player-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.audio-player-custom {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #ffeef5 0%, #fff5f8 100%);
    border-radius: 20px;
    border: 2px solid #ffebf0;
}

.audio-player-custom audio {
    width: 100%;
    outline: none;
}

.audio-player-custom audio::-webkit-media-controls-panel {
    background-color: rgba(255,255,255,0.9);
    border-radius: 10px;
}

#backgroundMusic {
    display: block;
    width: 100%;
    margin-top: 20px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    cursor: pointer;
    animation: fadeIn 0.3s;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: all 0.3s;
}

.close-lightbox:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    cursor: pointer;
    animation: fadeIn 0.3s;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: all 0.3s;
}

.close-lightbox:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive - Premium */
@media (max-width: 768px) {
    .couple-content {
        padding: 40px 15px;
    }
    
    .card {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .counter-card {
        padding: 25px 15px;
    }
    
    .counter-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .counter-value {
        font-size: 2rem;
    }
    
    .counter-label {
        font-size: 0.7rem;
    }
    
    .counter-box {
        padding: 12px 8px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .slider-wrapper {
        height: 400px;
    }
    
    .scroll-photo-item {
        flex: 0 0 250px;
        height: 350px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .notes-text {
        font-size: 1.3rem;
        padding: 0 15px;
    }
    
    .audio-player-custom {
        padding: 15px;
    }
    
    .memories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .couple-content {
        padding: 30px 15px;
    }
    
    .card {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .counter-card {
        padding: 20px 10px;
    }
    
    .counter-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .counter-value {
        font-size: 1.8rem;
    }
    
    .counter-label {
        font-size: 0.65rem;
    }
    
    .counter-box {
        padding: 10px 6px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .slider-wrapper {
        height: 300px;
    }
    
    .scroll-photo-item {
        flex: 0 0 200px;
        height: 280px;
    }
    
    .notes-text {
        font-size: 1.2rem;
    }
    
    .memories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.opening-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.hearts-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.hearts-container .heart {
    position: absolute;
    font-size: 3rem;
    animation: float 3s infinite;
}

.heart-1 { top: 0; left: 50%; animation-delay: 0s; }
.heart-2 { top: 20%; right: 0; animation-delay: 0.5s; }
.heart-3 { bottom: 20%; left: 0; animation-delay: 1s; }
.heart-4 { bottom: 0; right: 20%; animation-delay: 1.5s; }
.heart-5 { top: 50%; left: 20%; animation-delay: 2s; }

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

.couple-names {
    color: white;
    font-size: 3rem;
    margin-top: 30px;
    text-align: center;
    animation: fadeIn 2s;
}

.couple-content {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.couple-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.couple-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.days-counter {
    display: inline-block;
    padding: 30px 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 20px;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.counter-main {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.5;
}

.counter-main span {
    display: inline-block;
    min-width: 40px;
    text-align: center;
    background: rgba(255,255,255,0.2);
    padding: 5px 10px;
    border-radius: 8px;
    margin: 0 5px;
}

.counter-time {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.counter-time span {
    display: inline-block;
    min-width: 50px;
    text-align: center;
    background: rgba(255,255,255,0.2);
    padding: 8px 12px;
    border-radius: 8px;
}

.counter-label {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 10px;
}

/* Galeri */
.photo-gallery, .video-gallery {
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.photo-gallery h2, .video-gallery h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.video-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.video-item video {
    width: 100%;
    height: auto;
    display: block;
}

/* Notlar */
.notes-section {
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.notes-section h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 2rem;
}

.notes-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Müzik */
.music-section {
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.music-section audio {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    cursor: pointer;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10001;
}

/* Admin Panel */
.admin-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.login-box h1 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.admin-header {
    background: white;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.admin-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--primary-color);
}

.admin-menu {
    display: flex;
    gap: 20px;
}

.admin-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.admin-menu a:hover {
    color: var(--primary-color);
}

.admin-dashboard, .admin-couples, .admin-form-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    font-size: 3rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.data-table {
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.data-table thead {
    background: var(--primary-color);
    color: white;
}

.data-table th,
.data-table td {
    padding: 15px;
    text-align: left;
}

.data-table tbody tr:hover {
    background: var(--light-bg);
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: #d4edda;
    color: #155724;
}

.badge-danger {
    background: #f8d7da;
    color: #721c24;
}

.admin-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.form-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.media-upload {
    margin-bottom: 20px;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.media-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
}

.media-item img,
.media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-delete {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-actions {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}

.alert {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .couple-header h1 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .admin-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .admin-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Konfeti Efekti */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    animation: confettiFall linear forwards;
}

.confetti:nth-child(2n) {
    background: var(--secondary-color);
    width: 8px;
    height: 8px;
}

.confetti:nth-child(3n) {
    background: var(--accent-color);
    width: 12px;
    height: 12px;
}

.confetti:nth-child(4n) {
    background: #ff6b9d;
}

.confetti:nth-child(5n) {
    background: #c44569;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Yıldız Yağmuru */
.star-rain-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.star {
    position: absolute;
    color: #fff;
    font-size: 20px;
    animation: starFall linear infinite;
    opacity: 0.8;
}

.star:nth-child(2n) {
    font-size: 15px;
    animation-duration: 3s;
}

.star:nth-child(3n) {
    font-size: 25px;
    animation-duration: 4s;
}

.star:nth-child(4n) {
    color: var(--accent-color);
    animation-duration: 2.5s;
}

.star:nth-child(5n) {
    color: var(--primary-color);
    animation-duration: 3.5s;
}

@keyframes starFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Kalp Animasyonları Kontrolü */
.couple-page.no-heart-animation .hearts-container,
.couple-page.no-heart-animation .heart-animation {
    display: none;
}

/* Seçilen Fotoğraflar Önizleme */
.selected-photos-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.selected-photo-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.selected-photo-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.selected-photo-preview {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 aspect ratio */
    background: #f5f5f5;
    overflow: hidden;
}

.selected-photo-preview img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-photo-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 28px;
    height: 28px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.remove-photo-btn:hover {
    background: rgba(220, 53, 69, 1);
    transform: scale(1.1);
}

.selected-photo-info {
    padding: 8px;
    font-size: 0.85rem;
}

.photo-name {
    display: block;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.photo-size {
    display: block;
    color: #666;
    font-size: 0.75rem;
}

/* Mobil responsive */
@media (max-width: 768px) {
    .selected-photos-container {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }
}

/* Tema Seçici Stilleri */
.theme-option {
    transition: all 0.3s ease;
}

.theme-option:hover {
    border-color: #333 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.theme-option input[type="radio"]:checked + div {
    color: #333;
}

.theme-option:has(input[type="radio"]:checked) {
    border-color: #333 !important;
    background: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .theme-selector {
        grid-template-columns: 1fr !important;
    }
}


