@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-solid: #667eea;
    --secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --bg: #f8f9fd;
    --text: #2d3748;
    --text-light: #718096;
    --border: #e2e8f0;
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius: 16px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ============================================
   NAVBAR - Modern ve Şık
============================================ */
.navbar {
    background: var(--white);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 10px;
}

.nav-link:hover {
    color: var(--primary-solid);
    background: rgba(102, 126, 234, 0.1);
}

.credit-badge {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    color: #2d3436;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(253, 203, 110, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.3s;
}

.credit-badge:hover {
    transform: translateY(-2px);
}

.btn-login, .btn-register {
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-login {
    color: var(--primary-solid);
    border-color: var(--primary-solid);
}

.btn-login:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-register {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

/* ============================================
   HERO SECTION - BÜYÜLEYICI
============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 60px 20px;
}

/* Animasyonlu Canvas Arka Plan */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#particles-canvas {
    width: 100%;
    height: 100%;
}

/* Işık Efektleri */
.hero-lights {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.light {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: lightPulse 4s ease-in-out infinite;
}

.light-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ffeaa7, transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.light-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00cec9, transparent);
    bottom: 10%;
    right: 10%;
    animation-delay: 1.5s;
}

.light-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #fd79a8, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 3s;
}

@keyframes lightPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Ana İçerik */
.hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    padding: 12px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.animate-float {
    animation: floatBadge 3s ease-in-out infinite;
}

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

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gradient-text {
    background: linear-gradient(90deg, #ffeaa7, #fdcb6e, #fab1a0, #ffeaa7);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.animate-gradient {
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-subtitle .highlight {
    font-weight: 700;
    color: #ffeaa7;
    text-shadow: 0 2px 10px rgba(255, 234, 167, 0.5);
}

.typing-text {
    display: inline-block;
    border-right: 3px solid white;
    animation: typing 4s steps(40) infinite, blink 0.75s step-end infinite;
    overflow: hidden;
    white-space: nowrap;
}

@keyframes typing {
    0%, 100% { width: 0; }
    50% { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before,
.btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero-primary:hover::before,
.btn-hero-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border: 3px solid white;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-5px) scale(1.05);
}

.btn-hero-primary span,
.btn-hero-secondary span {
    position: relative;
    z-index: 1;
}

.btn-hero-primary i,
.btn-hero-secondary i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.btn-hero-primary:hover i {
    transform: translateX(5px);
}

.btn-hero-secondary:hover i {
    transform: translateX(5px);
}

/* İstatistikler */
.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 5px;
    animation: countUp 2s ease-out;
}

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

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* 3D Hediye Kutuları */
.hero-gifts {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.gift-box {
    position: absolute;
    font-size: 4rem;
    animation: float3D 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.gift-inner {
    animation: rotate3D 8s linear infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.gift-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.gift-2 {
    top: 15%;
    right: 8%;
    animation-delay: 1s;
}

.gift-3 {
    top: 60%;
    left: 10%;
    animation-delay: 2s;
}

.gift-4 {
    top: 70%;
    right: 15%;
    animation-delay: 1.5s;
}

.gift-5 {
    top: 40%;
    left: 15%;
    animation-delay: 2.5s;
    font-size: 3rem;
}

.gift-6 {
    top: 50%;
    right: 10%;
    animation-delay: 3s;
    font-size: 3rem;
}

@keyframes float3D {
    0%, 100% {
        transform: translateY(0) translateZ(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-40px) translateZ(20px) rotateY(180deg);
    }
}

@keyframes rotate3D {
    0% {
        transform: rotateY(0deg) rotateZ(0deg);
    }
    100% {
        transform: rotateY(360deg) rotateZ(15deg);
    }
}

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

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .gift-box {
        font-size: 2.5rem;
    }
    
    .light {
        width: 250px !important;
        height: 250px !important;
    }
}

/* ============================================
   AUTH SCREENS - Modern Giriş/Kayıt
============================================ */
.auth-container {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.modern-auth {
    background: white;
    border-radius: 24px;
    padding: 50px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.5s ease-out;
}

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

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.auth-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text);
}

.auth-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    position: relative;
}

.input-group > i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.1rem;
}

.input-group input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-solid);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.toggle-password {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.toggle-password:hover {
    color: var(--primary-solid);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-light);
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.forgot-link {
    color: var(--primary-solid);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.forgot-link:hover {
    opacity: 0.8;
}

.btn-submit {
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.auth-footer {
    margin-top: 30px;
    text-align: center;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--primary-solid);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.auth-footer a:hover {
    opacity: 0.8;
}

/* ============================================
   MAIN CONTAINER
============================================ */
.app-container {
    min-height: calc(100vh - 80px);
    padding: 0;
}


/* ============================================
   WIZARD - Hediye Bulma Sihirbazı
============================================ */
.wizard-box {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    overflow: visible; /* Sticky için gerekli */
    position: relative;
}

.progress-container {
    height: 8px;
    background: var(--border);
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
    transition: width 0.4s ease;
    width: 0%;
}

.step-card {
    width: 100%;
    max-width: 100%;
}

.step-card h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text);
}

.step-card h3 {
    color: #667eea;
    font-size: 1.1rem;
    margin-bottom: 15px;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-card h3 i {
    font-size: 1.2rem;
}

.category-section {
    margin-bottom: 25px;
    width: 100%;
}

.options-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
    align-items: stretch; /* Tüm kartlar aynı yükseklikte */
}

.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.option-card {
    border: 2px solid var(--border);
    padding: 30px 20px;
    text-align: center;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    position: relative;
}

.option-card:hover {
    border-color: var(--primary-solid);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.option-card.selected {
    border-color: var(--primary-solid);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.option-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.option-card span {
    font-weight: 600;
    color: var(--text);
    font-size: 1.1rem;
}

.primary-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    width: auto;
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.back-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1rem;
    margin-top: 20px;
    text-decoration: underline;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   PANEL
============================================ */
.panel-v2 {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.panel-header h2 {
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logout-btn {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s;
}

.logout-btn:hover {
    background: rgba(231, 76, 60, 0.1);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: var(--radius);
    color: white;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 2.5rem;
    opacity: 0.9;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.feedback-section {
    background: var(--bg);
    padding: 30px;
    border-radius: var(--radius);
}

.feedback-section h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.star-rating {
    display: flex;
    gap: 10px;
    font-size: 2rem;
    margin-bottom: 20px;
    justify-content: center;
}

.star-rating i {
    color: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.star-rating i.active {
    color: #f59e0b;
    transform: scale(1.1);
}

.star-rating i:hover {
    transform: scale(1.2);
}

.input-field {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: 15px;
    transition: all 0.3s;
    resize: vertical;
    min-height: 120px;
}

.input-field:focus {
    outline: none;
    border-color: var(--primary-solid);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

/* ============================================
   MODERN CHAT WIDGET
============================================ */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chat-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    position: relative;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 3px solid white;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 520px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: chatSlideIn 0.3s ease-out;
}

.chat-window.visible {
    display: flex;
}

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

.chat-header {
    background: var(--primary);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.agent-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.status-online {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
}

.chat-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fd;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-date {
    text-align: center;
    color: var(--text-light);
    font-size: 0.8rem;
    margin: 10px 0;
}

.msg {
    display: flex;
    gap: 10px;
    max-width: 80%;
    animation: messageSlideIn 0.3s ease-out;
}

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

.msg.received {
    align-self: flex-start;
}

.msg.sent {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.msg-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.msg-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.msg-text {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.msg.received .msg-text {
    background: white;
    color: var(--text);
    border-bottom-left-radius: 4px;
}

.msg.sent .msg-text {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 4px;
}

.msg-time {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0 8px;
}

.chat-footer {
    padding: 20px;
    background: white;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 25px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-solid);
}

.send-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.send-btn:hover {
    transform: scale(1.1);
}

/* ============================================
   TOAST NOTIFICATIONS - Daha Büyük ve Görünür
============================================ */
#toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 450px;
}

.toast {
    background: white;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-left: 6px solid #333;
    animation: toastSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    min-width: 350px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.toast:hover {
    transform: translateX(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.toast.success {
    border-left-color: #10b981;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.toast.error {
    border-left-color: #ef4444;
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
}

.toast strong {
    display: block;
    margin-bottom: 5px;
    font-weight: 800;
    font-size: 1.1rem;
    color: #1f2937;
}

.toast i {
    font-size: 2rem;
}

/* Mobil için */
@media (max-width: 768px) {
    #toast-container {
        right: 15px;
        left: 15px;
        max-width: none;
    }
    
    .toast {
        min-width: 0;
        width: 100%;
    }
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .modern-auth {
        padding: 30px 20px;
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr); /* Mobilde 2 kolon */
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .wizard-box {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .step-card h2 {
        font-size: 1.5rem;
    }
    
    .option-card {
        padding: 20px 15px;
        min-height: 120px; /* Mobilde biraz daha kısa */
    }
    
    .option-card i {
        font-size: 2rem; /* Mobilde biraz daha küçük */
    }
    
    .option-card span {
        font-size: 0.95rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .chat-window {
        width: calc(100vw - 40px);
        right: -10px;
    }
    
    .navbar {
        padding: 1rem 3%;
    }
    
    .nav-menu {
        gap: 10px;
    }
    
    .nav-link {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    /* Grid düzeni - Küçük ekranlarda 1 kolon */
    .grid-4, .grid-3, .grid-2 {
        grid-template-columns: 1fr !important;
    }
    
    .wizard-box {
        padding: 20px 15px;
        margin: 10px;
    }
    
    .option-card {
        padding: 25px 15px;
        min-height: 110px; /* Tek kolonluk grid'de daha kısa */
    }
    
    .option-card i {
        font-size: 1.8rem;
    }
    
    .option-card span {
        font-size: 0.9rem;
    }
    
}

/* ============================================
   FEATURES SECTION - Premium Özellikler
============================================ */
.features-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
}

.feature-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
}

.feature-list i {
    color: #10b981;
    font-size: 1.1rem;
}

/* CTA Section */
.features-cta {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 30px;
    margin-top: 40px;
}

.btn-cta-large {
    background: var(--primary);
    color: white;
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.cta-note {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .features-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .btn-cta-large {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
}
/* ============================================
   RESPONSIVE İYİLEŞTİRMELERİ - Orijinal kodlara ekleme
   Hiçbir mevcut stil değiştirilmedi
============================================ */

/* ============================================
   GELİŞMİŞ RESPONSIVE - TÜM CİHAZLAR
============================================ */

/* Tablet Landscape (1024px - 1200px) */
@media (min-width: 1024px) and (max-width: 1200px) {
    .wizard-box {
        max-width: 900px;
        padding: 35px;
    }
    
    .options-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .split-counter-inner {
        min-width: 160px;
        padding: 22px;
    }
}

/* Tablet Portrait (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .wizard-container {
        padding: 30px 20px;
    }
    
    .wizard-box {
        max-width: 700px;
        padding: 30px;
    }
    
    .step-header h2 {
        font-size: 2rem;
    }
    
    .options-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
    }
    
    .option-card {
        padding: 25px 15px;
    }
    
    .option-card i {
        font-size: 2.5rem;
    }
    
    .option-card span {
        font-size: 0.95rem;
    }
    
    /* Counter'lar */
    .sticky-counter-inner {
        padding: 28px 30px;
    }
    
    .counter-badge {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .counter-number {
        font-size: 3.5rem;
    }
    
    /* Split Counters */
    #left-counter, #right-counter {
        top: 110px;
    }
    
    #left-counter {
        left: 15px;
    }
    
    #right-counter {
        right: 15px;
    }
    
    .split-counter-inner {
        min-width: 140px;
        padding: 18px 22px;
    }
    
    .split-counter-number {
        font-size: 2.5rem;
    }
}

/* Büyük Mobil / Küçük Tablet (600px - 767px) */
@media (min-width: 600px) and (max-width: 767px) {
    .navbar {
        padding: 1rem 3%;
    }
    
    .wizard-container {
        padding: 25px 15px;
    }
    
    .wizard-box {
        max-width: 100%;
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .step-header h2 {
        font-size: 1.8rem;
    }
    
    .step-header p {
        font-size: 0.95rem;
    }
    
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .option-card {
        padding: 22px 12px;
    }
    
    .option-card i {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .option-card span {
        font-size: 0.9rem;
    }
    
    /* Counter'lar */
    .sticky-counter-inner {
        padding: 25px 22px;
    }
    
    .counter-badge {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .counter-number {
        font-size: 3rem;
    }
    
    .counter-message {
        font-size: 0.95rem;
    }
    
    /* Split Counters */
    #left-counter, #right-counter {
        top: 100px;
    }
    
    #left-counter {
        left: 10px;
    }
    
    #right-counter {
        right: 10px;
    }
    
    .split-counter-inner {
        min-width: 130px;
        padding: 15px 18px;
    }
    
    .split-counter-badge {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .split-counter-number {
        font-size: 2.3rem;
    }
    
    .split-counter-total {
        font-size: 1.5rem;
    }
    
    .split-counter-label {
        font-size: 0.8rem;
    }
    
    .split-counter-message {
        font-size: 0.85rem;
        padding: 8px 10px;
    }
    
    .primary-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* Normal Mobil (480px - 599px) */
@media (min-width: 480px) and (max-width: 599px) {
    .navbar {
        padding: 0.9rem 2.5%;
        flex-wrap: wrap;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .nav-menu {
        gap: 8px;
    }
    
    .credit-badge {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .wizard-container {
        padding: 20px 12px;
    }
    
    .wizard-box {
        padding: 20px 15px;
        border-radius: 18px;
    }
    
    .step-header {
        margin-bottom: 20px;
    }
    
    .step-number {
        font-size: 0.85rem;
        padding: 5px 12px;
    }
    
    .step-header h2 {
        font-size: 1.6rem;
        margin: 12px 0 8px;
    }
    
    .step-header p {
        font-size: 0.9rem;
    }
    
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .option-card {
        padding: 18px 10px;
        border-radius: 12px;
    }
    
    .option-card i {
        font-size: 2rem;
        margin-bottom: 6px;
    }
    
    .option-card span {
        font-size: 0.85rem;
    }
    
    /* Counter'lar */
    .sticky-counter {
        margin-bottom: 30px;
    }
    
    .sticky-counter-inner {
        padding: 20px 18px;
        border-radius: 20px;
    }
    
    .counter-badge {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .counter-number {
        font-size: 2.5rem;
        margin: 10px 0;
    }
    
    .counter-total {
        font-size: 1.8rem;
    }
    
    .counter-message {
        font-size: 0.9rem;
        padding: 8px 12px;
        margin: 10px 0;
    }
    
    .progress-container {
        margin-top: 12px;
    }
    
    .progress-track {
        height: 8px;
    }
    
    /* Split Counters */
    #left-counter, #right-counter {
        top: 90px;
    }
    
    #left-counter {
        left: 8px;
    }
    
    #right-counter {
        right: 8px;
    }
    
    .split-counter-inner {
        min-width: 115px;
        padding: 12px 15px;
        border-radius: 15px;
    }
    
    .split-counter-badge {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .split-counter-number {
        font-size: 2rem;
        margin-bottom: 6px;
    }
    
    .split-counter-total {
        font-size: 1.3rem;
    }
    
    .split-counter-label {
        font-size: 0.75rem;
    }
    
    .split-counter-message {
        font-size: 0.8rem;
        padding: 6px 8px;
        min-height: 35px;
    }
    
    .split-progress-track {
        height: 6px;
    }
    
    .split-counter-icons {
        gap: 8px;
        font-size: 1rem;
        margin-top: 10px;
    }
    
    /* Butonlar */
    .primary-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .back-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Kategori başlıkları */
    .category-section h3 {
        font-size: 1rem !important;
    }
}

/* Küçük Mobil (320px - 479px) */
@media (max-width: 479px) {
    .navbar {
        padding: 0.8rem 2%;
        flex-direction: column;
        gap: 10px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .credit-badge {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .wizard-container {
        padding: 15px 10px;
    }
    
    .wizard-box {
        padding: 18px 12px;
        border-radius: 15px;
    }
    
    .step-header {
        margin-bottom: 18px;
    }
    
    .step-number {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
    
    .step-header h2 {
        font-size: 1.4rem;
        margin: 10px 0 6px;
    }
    
    .step-header p {
        font-size: 0.85rem;
    }
    
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .option-card {
        padding: 15px 8px;
        border-radius: 10px;
    }
    
    .option-card i {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
    
    .option-card span {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    /* Counter'lar */
    .sticky-counter {
        margin-bottom: 25px;
    }
    
    .sticky-counter-inner {
        padding: 18px 15px;
        border-radius: 18px;
    }
    
    .counter-badge {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .counter-number {
        font-size: 2.2rem;
        margin: 8px 0;
    }
    
    .counter-total {
        font-size: 1.5rem;
    }
    
    .counter-message {
        font-size: 0.85rem;
        padding: 6px 10px;
        margin: 8px 0;
    }
    
    .progress-container {
        margin-top: 10px;
    }
    
    .progress-track {
        height: 6px;
    }
    
    /* Split Counters */
    #left-counter, #right-counter {
        top: 85px;
    }
    
    #left-counter {
        left: 5px;
    }
    
    #right-counter {
        right: 5px;
    }
    
    .split-counter-inner {
        min-width: 100px;
        padding: 10px 12px;
        border-radius: 12px;
    }
    
    .split-counter-badge {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        margin-bottom: 8px;
        border: 2px solid white;
    }
    
    .split-counter-number {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
    
    .split-counter-total {
        font-size: 1.1rem;
    }
    
    .split-counter-label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
    
    .split-counter-message {
        font-size: 0.75rem;
        padding: 5px 6px;
        min-height: 30px;
        line-height: 1.3;
    }
    
    .split-progress-track {
        height: 5px;
    }
    
    .split-counter-icons {
        gap: 6px;
        font-size: 0.9rem;
        margin-top: 8px;
    }
    
    /* Butonlar */
    .primary-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .back-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    /* Kategori başlıkları */
    .category-section {
        margin-bottom: 20px;
    }
    
    .category-section h3 {
        font-size: 0.95rem !important;
        margin-bottom: 12px !important;
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Çok Küçük Ekranlar (< 320px) */
@media (max-width: 319px) {
    .wizard-box {
        padding: 15px 10px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .split-counter-inner {
        min-width: 90px;
        padding: 8px 10px;
    }
    
    .split-counter-number {
        font-size: 1.5rem;
    }
    
    #left-counter {
        left: 3px;
    }
    
    #right-counter {
        right: 3px;
    }
}

/* Landscape Mobil */
@media (max-height: 500px) and (orientation: landscape) {
    .navbar {
        padding: 0.7rem 2%;
    }
    
    .wizard-container {
        padding: 15px 10px;
    }
    
    .wizard-box {
        padding: 15px;
    }
    
    .step-header h2 {
        font-size: 1.4rem;
        margin: 8px 0;
    }
    
    .option-card {
        padding: 12px 8px;
    }
    
    .option-card i {
        font-size: 1.6rem;
    }
    
    .sticky-counter {
        margin-bottom: 20px;
    }
    
    .sticky-counter-inner {
        padding: 15px 20px;
    }
    
    .counter-number {
        font-size: 2rem;
        margin: 6px 0;
    }
    
    #left-counter, #right-counter {
        top: 70px;
    }
    
    .split-counter-inner {
        padding: 8px 12px;
    }
    
    .split-counter-number {
        font-size: 1.6rem;
    }
}

/* Touch Device Optimizasyonları */
@media (hover: none) and (pointer: coarse) {
    .option-card:hover {
        transform: none;
        box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    }
    
    .option-card:active {
        transform: scale(0.98);
    }
    
    /* Scroll performance - Modern CSS */
    * {
        overscroll-behavior: contain;
    }
}

/* Yüksek DPI Ekranlar */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .option-card i,
    .counter-badge i,
    .split-counter-badge i {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* ============================================
   CUSTOM DATE INPUT - Site Temasıyla Uyumlu
============================================ */

/* Tarih Input - Genel Stil */
input[type="date"],
input[type="text"][name="baslik"] {
    width: 100%;
    padding: 14px 18px;
    border: 3px solid rgba(102, 126, 234, 0.6) !important;
    border-radius: 12px;
    background: rgba(102, 126, 234, 0.15) !important;
    backdrop-filter: blur(10px);
    color: white !important;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Placeholder Rengi */
input[type="date"]::placeholder,
input[type="text"][name="baslik"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

/* Focus Durumu */
input[type="date"]:focus,
input[type="text"][name="baslik"]:focus {
    outline: none;
    border-color: #667eea !important;
    background: rgba(102, 126, 234, 0.25) !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2),
                0 8px 20px rgba(102, 126, 234, 0.4) !important;
    transform: translateY(-1px);
}

/* Hover Durumu */
input[type="date"]:hover,
input[type="text"][name="baslik"]:hover {
    border-color: rgba(102, 126, 234, 0.8) !important;
    background: rgba(102, 126, 234, 0.2) !important;
}

/* Tarih Seçici İçin Özel Stiller */
input[type="date"] {
    position: relative;
    padding-right: 40px;
}

/* Takvim İkonu Renklendirme */
input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(1) brightness(1.5);
    opacity: 0.7;
    transition: all 0.3s ease;
    width: 20px;
    height: 20px;
}

input[type="date"]:hover::-webkit-calendar-picker-indicator {
    opacity: 1;
    filter: invert(1) brightness(2);
    transform: scale(1.1);
}

/* Firefox için Tarih Placeholder */
input[type="date"]::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Chrome/Safari için Tarih Input İç Yapısı */
input[type="date"]::-webkit-datetime-edit {
    color: white;
    padding: 0;
}

input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}

input[type="date"]::-webkit-datetime-edit-text {
    color: rgba(255, 255, 255, 0.6);
    padding: 0 0.3em;
}

input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
    color: white !important;
    background: rgba(102, 126, 234, 0.4) !important;
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 2px;
    font-weight: 600;
}

input[type="date"]::-webkit-datetime-edit-month-field:focus,
input[type="date"]::-webkit-datetime-edit-day-field:focus,
input[type="date"]::-webkit-datetime-edit-year-field:focus {
    background: rgba(102, 126, 234, 0.4);
    outline: none;
}

/* Boş Tarih Input Placeholder Efekti */
input[type="date"]:not(:focus):invalid {
    color: rgba(255, 255, 255, 0.5);
}

/* Takvim Açılır Menüsü (Chromium) */
input[type="date"]::-webkit-calendar-picker-indicator:hover {
    background: rgba(102, 126, 234, 0.2);
    border-radius: 6px;
}

/* Özel Gün Form Container */
.special-date-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 25px;
}

/* Form Input Wrapper (ikon eklemek için) */
.date-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.date-input-wrapper i {
    position: absolute;
    left: 15px;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.date-input-wrapper input {
    padding-left: 45px !important;
}

.date-input-wrapper:focus-within i {
    color: #c4b5fd !important;
    transform: scale(1.15);
}

/* Submit Button için Panel Stili */
.special-date-form button[type="submit"] {
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.special-date-form button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.7) !important;
}

.special-date-form button[type="submit"]:active {
    transform: translateY(0);
}

/* Disabled Durumu */
input[type="date"]:disabled,
input[type="text"][name="baslik"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.05);
}

/* Dark Theme için Ek Kontrastlar */
@media (prefers-color-scheme: dark) {
    input[type="date"],
    input[type="text"][name="baslik"] {
        border-color: rgba(102, 126, 234, 0.4);
        background: rgba(255, 255, 255, 0.08);
    }
}

/* Mobil Responsive */
@media (max-width: 768px) {
    input[type="date"],
    input[type="text"][name="baslik"] {
        padding: 12px 16px;
        font-size: 16px; /* iOS zoom önleme */
    }
    
    .date-input-wrapper input {
        padding-left: 40px;
    }
}

/* Animasyonlu Label (Optional) */
.input-group-label {
    position: relative;
}

.input-group-label label {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.input-group-label label i {
    color: #a78bfa !important;
    font-size: 1rem;
}

/* Glow Efekti */
@keyframes input-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.6),
                    0 0 30px rgba(102, 126, 234, 0.3);
    }
}

input[type="date"]:focus,
input[type="text"][name="baslik"]:focus {
    animation: input-glow 2s infinite;
}

/* ============================================
   ÖZEL GÜNLER LİSTESİ
============================================ */

.special-dates-list {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Özel Gün Kartı */
.special-date-card {
    background: rgba(102, 126, 234, 0.2) !important;
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 5px solid #667eea !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.special-date-card:hover {
    background: rgba(102, 126, 234, 0.3) !important;
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4) !important;
}

.special-date-info {
    flex: 1;
}

.special-date-title {
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.special-date-details {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.days-left-badge {
    color: #ffc107;
    font-weight: 600;
    background: rgba(255, 193, 7, 0.2);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
}

.today-badge {
    color: #4cd964;
    font-weight: 600;
    background: rgba(76, 217, 100, 0.2);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    animation: pulse-badge 2s infinite;
}

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

.delete-date-btn {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.delete-date-btn:hover {
    background: rgba(239, 68, 68, 0.4);
    transform: scale(1.1);
}

/* Boş Durum */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.5);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.3;
    display: block;
}

/* ============================================
   KAYDEDİLEN HEDİYELER LİSTESİ
============================================ */

.saved-gifts-list {
    max-height: 550px;
    overflow-y: auto;
    padding-right: 5px;
}

.saved-gift-card {
    background: rgba(16, 185, 129, 0.15) !important;
    backdrop-filter: blur(10px);
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 15px;
    border-left: 5px solid #10b981 !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.saved-gift-card:hover {
    background: rgba(16, 185, 129, 0.25) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4) !important;
}

.gift-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

.gift-title {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.gift-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 8px 0;
    line-height: 1.5;
}

.gift-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.gift-price {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.gift-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}