:root {
    --primary-color: #8e7355;
    /* Yeni Marka Rengi */
    --secondary-color: #fce4ec;
    /* Açık Pembe */
    --text-color: #333;
    --bg-gradient-start: #fdfbfb;
    --bg-gradient-end: #ebedee;
    --glass-bg: rgba(255, 255, 255, 0.2);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: auto;
    color: var(--text-color);
    padding: 2rem;
    /* Kenarlardan boşluk bırak */
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(circle at center, rgba(142, 115, 85, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
}

.container {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--glass-shadow);
    max-width: 550px;
    /* Kart genişliği biraz düşürüldü */
    width: 90%;
    position: relative;
    z-index: 1;
    animation: fadeIn 1.5s ease-out;
    margin: auto;
    /* Dikeyde ve yatayda ortalama garantisi */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

p.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.6;
}

.description {
    max-width: 600px;
    margin: 1rem auto;
    display: inline-block;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.5;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.5);
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    margin-top: 2rem;
}

.social-icons a {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: transform 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-5px);
    color: #b8962e;
    /* Daha koyu altın */
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    p.subtitle {
        font-size: 1rem;
    }

    .countdown {
        gap: 0.5rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .container {
        padding: 1rem 0;
        margin: 2rem 0;
        width: 100%;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        box-shadow: none;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #705842;
    /* Slightly darker shade of primary color */
}