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

img {
    display: none;
}

html,
body {
    background: url('bg.webp') no-repeat center center fixed;
    background-size: cover;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Arial', sans-serif;
    position: relative;
}

/* Arkaplan üzerine hafif pattern/overlay */
html::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.draw {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
}

.bottom-info {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 20px;
    margin: 0 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.coming-soon {
    color: #d4af37;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.contact-info {
    color: #ffffff;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin-bottom: 10px;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.contact-info a:hover {
    color: #d4af37;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0 0 8px rgba(212, 175, 55, 0.4);
}

.social-media {
    color: #ffffff;
    font-size: 13px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.social-media a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    padding: 2px 4px;
}

.social-media a:hover {
    color: #d4af37;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0 0 8px rgba(212, 175, 55, 0.4);
}

.separator {
    margin: 0 15px;
    color: #666;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .bottom-info {
        bottom: 20px;
        margin: 0 15px;
        padding: 12px 15px;
    }
    
    .coming-soon {
        font-size: 16px;
    }
    
    .contact-info {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .social-media {
        font-size: 11px;
    }
    
    .contact-info a,
    .social-media a {
        display: block;
        margin: 5px 0;
    }
    
    .separator {
        display: none;
    }
}

/* Hafif animasyon */
.bottom-info {
    animation: fadeInUp 2s ease-out;
}

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