:root {
    --primary-color: #d45d79;
    /* Koyu Pembe */
    --secondary-color: #ea9ab2;
    /* Açık Pembe */
    --accent-color: #e27d60;
    /* Şeftali Tonu */
    --bg-gradient-start: #fdfbfb;
    --bg-gradient-end: #ebedee;
    --text-dark: #4a4a4a;
    --text-light: #7a7a7a;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #fff0f5 0%, #ffe6ea 100%);
    color: var(--text-dark);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Background Animation Elements can be added here if css-only */

.content-wrapper {
    z-index: 10;
    padding: 20px;
    width: 100%;
    max-width: 600px;
    position: relative;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative Top Bar */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

/* Typography & Layout */
header {
    margin-bottom: 2rem;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.logo .icon {
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.logo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -1px;
    line-height: 1;
}

.hero h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.subtitle {
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 93, 121, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.pulse {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}



/* Footer */
footer {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: #999;
}

.developer-credit {
    margin-top: 1rem;
    font-weight: 500;
}

.dev-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.dev-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 93, 121, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(212, 93, 121, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 93, 121, 0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Falling Sakura Petals */
.sakura-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.petal {
    position: absolute;
    background: #ffd1dc;
    border-radius: 150% 0 150% 0;
    opacity: 0.8;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        opacity: 0;
        top: -10%;
        transform: translateX(0) rotate(0deg);
    }

    10% {
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        top: 100%;
        transform: translateX(100px) rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .glass-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .logo h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }


}