/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    overflow: hidden;
    height: 100vh;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 20%);
}

/* Arka Plan Animasyonu */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a, #121212, #0a0a0a);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    z-index: -1;
    overflow: hidden;
}

.background-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(80, 80, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 80, 255, 0.1) 0%, transparent 40%);
    animation: float 15s infinite ease-in-out;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Ana Konteyner */
.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Logo Stili */
.logo {
    font-size: 2rem;
    letter-spacing: 4px;
    font-weight: 300;
    opacity: 0.9;
    position: relative;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.logo:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* İçerik Alanı */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding: 2rem 0;
    position: relative;
}

.content::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(100, 100, 255, 0.1) 0%, transparent 70%);
    animation: pulseGlow 4s infinite ease-in-out;
    z-index: -1;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

/* Yakında Hizmetinizde Metni */
.coming-soon-text {
    margin-bottom: 2rem;
    position: relative;
}

.coming-soon-text h2 {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: 10px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ffffff, #aaa, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
    animation: textGlow 3s infinite alternate;
}

.coming-soon-text h3 {
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    opacity: 0.9;
    position: relative;
    display: inline-block;
}

.coming-soon-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    }
    100% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.3), 0 0 60px rgba(255, 255, 255, 0.1);
    }
}

/* Açıklama Metni */
.description {
    max-width: 600px;
    margin-bottom: 3rem;
    position: relative;
}

.description p {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.8;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
}

/* Sosyal Medya Bağlantıları */
.social-links {
    margin-top: 2rem;
}

.social-icon {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.social-icon:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-icon:hover::before {
    left: 100%;
}

/* Footer */
footer {
    padding: 1.5rem 0;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.6;
    letter-spacing: 1px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .coming-soon-text h2 {
        font-size: 2.8rem;
        letter-spacing: 5px;
    }
    
    .coming-soon-text h3 {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
    
    .description p {
        font-size: 1.1rem;
    }
    
    .logo {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .social-icon {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
}