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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #001034 0%, #0a1f4a 25%, #1a3a6b 50%, #0a1f4a 75%, #001034 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Arka plan animasyonlu çizgiler */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 16, 52, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 58, 107, 0.3) 0%, transparent 50%);
    animation: backgroundShift 15s ease-in-out infinite;
    z-index: 1;
}



.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.coming-soon {
    text-align: center;
    z-index: 10;
}

.logo {
    margin-bottom: 2rem;
}

.site-name {
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    margin: 0;
    font-family: 'Courier New', monospace;
}

.title {
    font-size: 4rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    letter-spacing: 0.5rem;
}

.letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

.letter:nth-child(1) { animation-delay: 0.1s; }
.letter:nth-child(2) { animation-delay: 0.2s; }
.letter:nth-child(3) { animation-delay: 0.3s; }
.letter:nth-child(4) { animation-delay: 0.4s; }
.letter:nth-child(5) { animation-delay: 0.5s; }
.letter:nth-child(6) { animation-delay: 0.6s; }
.letter:nth-child(7) { animation-delay: 0.7s; }

.subtitle {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

.dot {
    display: inline-block;
    opacity: 0;
    animation: pulse 1.5s ease-in-out infinite;
}

.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.5s; }
.dot:nth-child(3) { animation-delay: 1s; }

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.element {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
    animation: particleFloat 8s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    width: 3px;
    height: 3px;
    background: #ff00ff;
    box-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 15%;
    width: 2px;
    height: 2px;
    background: #ffff00;
    box-shadow: 0 0 10px #ffff00, 0 0 20px #ffff00, 0 0 30px #ffff00;
    animation-delay: -2s;
}

.element-3 {
    bottom: 30%;
    left: 20%;
    width: 1px;
    height: 1px;
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00;
    animation-delay: -4s;
}

.element-4 {
    top: 40%;
    left: 80%;
    width: 2px;
    height: 2px;
    background: #ff8800;
    box-shadow: 0 0 10px #ff8800, 0 0 20px #ff8800, 0 0 30px #ff8800;
    animation-delay: -6s;
}

.element-5 {
    bottom: 60%;
    right: 30%;
    width: 3px;
    height: 3px;
    background: #8800ff;
    box-shadow: 0 0 10px #8800ff, 0 0 20px #8800ff, 0 0 30px #8800ff;
    animation-delay: -8s;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 0.3;
    }
    25% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.4;
    }
    75% {
        opacity: 0.6;
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-50px) translateX(30px) scale(1.5);
        opacity: 1;
    }
    50% {
        transform: translateY(-100px) translateX(-20px) scale(0.8);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-30px) translateX(40px) scale(1.2);
        opacity: 0.9;
    }
}



/* Matrix benzeri kod yağmuru efekti */
.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.matrix-column {
    position: absolute;
    top: -100px;
    color: rgba(0, 255, 255, 0.3);
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1;
    animation: matrixFall linear infinite;
}

@keyframes matrixFall {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .site-name {
        font-size: 2rem;
        letter-spacing: 0.2rem;
    }
    
    .title {
        font-size: 2.5rem;
        letter-spacing: 0.3rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .site-name {
        font-size: 1.5rem;
        letter-spacing: 0.1rem;
    }
    
    .title {
        font-size: 2rem;
        letter-spacing: 0.2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
} 