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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ffb6d0 0%, #ffa0c0 50%, #ff8fb8 100%);
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

/* Çiçekler - çok sayıda */
body::before {
    content: '🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸';
    position: fixed;
    top: -50px;
    left: 0;
    width: 120%;
    height: 100%;
    font-size: 4rem;
    opacity: 0.4;
    line-height: 1.5;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺 🌸 🌺';
    position: fixed;
    top: 200px;
    left: 0;
    width: 120%;
    height: 100%;
    font-size: 3.5rem;
    opacity: 0.3;
    line-height: 1.5;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.countdown-box {
    background: #ffe6f0;
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.countdown-title {
    font-size: 1.2rem;
    color: #ff69b4;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.countdown-container {
    padding: 10px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.countdown-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 60px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    min-width: 50px;
    display: inline-block;
}

.countdown-label {
    font-size: 1rem;
    color: white;
    opacity: 0.9;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.days-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.day-card {
    background: #ffe6f0;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.day-card.selected {
    border-color: #ff69b4;
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
    color: white;
}

.day-header {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.day-date {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 8px;
}

.day-status {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
    background: #ffb6d0;
}

.day-card.selected .day-status {
    background: rgba(255, 255, 255, 0.3);
}

.message {
    background: #ffe6f0;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.5s ease;
}

.message.hidden {
    display: none;
}

.message-text {
    font-size: 1.8rem;
    color: #667eea;
    font-weight: bold;
    margin-bottom: 15px;
}

.selected-day {
    font-size: 1.2rem;
    color: #764ba2;
    margin-top: 10px;
}

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

/* Mobil uyumluluk */
/* Sonuç sayfası stil */
.result-container {
    background: #ffe6f0;
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInScale 0.5s ease;
    border: 3px solid #ffb6d0;
}

.celebration-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: bounce 1s ease infinite;
}

.congrats-message {
    font-size: 1.8rem;
    color: #ff69b4;
    font-weight: bold;
    margin-bottom: 25px;
}

.photo-container {
    margin-bottom: 25px;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ffb6d0;
    box-shadow: 0 4px 15px rgba(255, 182, 208, 0.4);
}

.main-message {
    font-size: 2rem;
    color: #667eea;
    font-weight: bold;
    margin-bottom: 20px;
}

.selected-info {
    font-size: 1.3rem;
    color: #764ba2;
    margin-bottom: 30px;
}

.whatsapp-button {
    display: inline-block;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.back-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

.back-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.4);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@media (max-width: 600px) {
    header h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .day-card {
        padding: 15px;
    }

    .day-header {
        font-size: 1.1rem;
    }

    .message-text {
        font-size: 1.4rem;
    }

    .selected-day {
        font-size: 1rem;
    }

    .result-container {
        padding: 30px 20px;
    }

    .celebration-icon {
        font-size: 4rem;
    }

    .main-message {
        font-size: 1.5rem;
    }

    .selected-info {
        font-size: 1.1rem;
    }

    .back-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .countdown-box {
        padding: 20px;
    }

    .countdown-title {
        font-size: 1rem;
    }

    .countdown-container {
        gap: 10px;
    }

    .countdown-number {
        font-size: 1.8rem;
        min-width: 40px;
    }

    .countdown-label {
        font-size: 0.75rem;
    }

    .countdown-item {
        min-width: 50px;
    }

    .congrats-message {
        font-size: 1.4rem;
    }

    .profile-photo {
        width: 120px;
        height: 120px;
    }

    .main-message {
        font-size: 1.5rem;
    }

    .whatsapp-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

