body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #ece9e6, #ffffff);
    color: #333;
    overflow: hidden; /* Overlay varken scroll kapat */
}

.container {
    max-width: 800px;
    margin: 100px auto;
    background: rgba(255, 255, 255, 0.85);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
    font-size: 2.8rem;
    color: #333;
}

header p {
    font-size: 1.2rem;
    color: #666;
}

main section {
    margin: 20px 0;
}

main section h2 {
    color: #444;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

footer {
    text-align: center;
    margin-top: 40px;
    color: #777;
}

/* Overlay - Yapım Aşamasında */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(51,51,51,0.9), rgba(0,0,0,0.7));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 9999;
    flex-direction: column;
    animation: fadeIn 1s ease-in-out;
}

.overlay-content h1 {
    font-size: 3rem;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: blink 1.5s infinite;
}

.overlay-content p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #ddd;
}

/* Animasyonlar */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

a {
    color: #3366cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
