body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif; /* Fontu güncelledik */
    background: linear-gradient(135deg, #FF7E00, #FFAE42);
    color: #000000;
    overflow-x: hidden;
    min-height: 200vh; /* Kaydırma alanı oluşturmak için */
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.circle, .triangle {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: 20%;
    left: 10%;
}

.circle.small {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 70%;
    animation-duration: 8s;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 150px solid rgba(255, 255, 255, 0.2);
    top: 40%;
    left: 85%;
    animation-duration: 10s;
}

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

.coming-soon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    position: relative;
    margin-bottom: 50vh; /* Kaydırma alanı sağlamak için ek boşluk */
}

.header {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
}

.logo, .contact {
    font-weight: bold;
    font-size: 18px;
}

.content h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.content h2 {
    font-size: 60px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.countdown {
    display: flex;
    gap: 20px;
    font-size: 24px;
    background: rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    justify-content: center;
}

.countdown .time {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    font-size: 16px;
    animation: bounce 2s infinite;
}

.contact-form {
    width: 100%;
    max-width: 400px; /* Genişliği azalt */
    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    text-align: center;
    color: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1000; /* Öne getirmek için */
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 16px;
}

.contact-form button {
    padding: 10px 20px;
    background: #FF7E00;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
}

.contact-form button:hover {
    background: #FFAE42;
}

.contact-form.show {
    opacity: 1;
    visibility: visible;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .content h2 {
        font-size: 48px;
    }
    .countdown {
        flex-direction: column;
    }
}
