* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    background: #0a0a0a;
    color: #fff;
    min-height: 100vh;
    position: relative;
}

/* Animasyonlu Yıldızlı Arka Plan */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    z-index: -1;
}

.stars, .stars2, .stars3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.stars {
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 60px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 50px 50px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 130px 80px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 90px 10px, #fff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: zoom 20s alternate infinite;
    opacity: 0.5;
}

.stars2 {
    background-image: 
        radial-gradient(1px 1px at 100px 150px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 150px 80px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 70px 120px, #fff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 250px 250px;
    animation: zoom 30s alternate infinite;
    opacity: 0.4;
}

.stars3 {
    background-image: 
        radial-gradient(1px 1px at 180px 50px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 40px 90px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 220px 170px, #fff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 300px 300px;
    animation: zoom 40s alternate infinite;
    opacity: 0.3;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.3);
    }
}

/* Parçacık Efekti */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Ana Container */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 10;
    padding: 20px;
}

.content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo-container {
    margin-bottom: 30px;
}

.logo {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 15px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shine 3s linear infinite, float 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.logo-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    margin: 20px auto;
    border-radius: 2px;
    animation: expand 2s ease-in-out infinite;
}

@keyframes expand {
    0%, 100% {
        width: 100px;
        opacity: 1;
    }
    50% {
        width: 300px;
        opacity: 0.5;
    }
}

/* Alt Başlık */
.subtitle {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 300;
    letter-spacing: 5px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #667eea;
    }
    to {
        text-shadow: 0 0 20px #fff, 0 0 30px #764ba2, 0 0 40px #764ba2;
    }
}

/* Durum Metni */
.status-text {
    margin: 40px 0;
}

.status-text p {
    font-size: 1.3rem;
    color: #ccc;
    font-weight: 300;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Yükleme Çubuğu */
.loader {
    width: 100%;
    max-width: 500px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 40px auto;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.loader-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #4facfe);
    background-size: 200% auto;
    border-radius: 10px;
    animation: loading 2s ease-in-out infinite, shine 3s linear infinite;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.8);
}

@keyframes loading {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

/* Bilgi Kutusu */
.info {
    margin: 50px 0;
}

.coming-soon {
    font-size: 1.2rem;
    color: #fff;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(118, 75, 162, 0.6);
    }
}

/* Sosyal Medya İkonları */
.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    border-color: #667eea;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
        letter-spacing: 10px;
    }
    
    .subtitle {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }
    
    .status-text p {
        font-size: 1rem;
    }
    
    .coming-soon {
        font-size: 1rem;
        padding: 15px;
    }
    
    .social-links {
        gap: 20px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }
    
    .subtitle {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .status-text p {
        font-size: 0.9rem;
    }
}


