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

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
    background-color: #0a0a0a;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter></defs><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.15"/></svg>'),
        radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 70%, #050505 100%);
    background-size: 200px 200px, cover;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Logo */
.logo {
    width: clamp(150px, 30vw, 300px);
    height: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8));
    animation: logoFloat 3s ease-in-out infinite;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

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

/* Title */
.title {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 400;
    letter-spacing: 0.3em;
    color: #7a8a8a;
    text-shadow: 
        0 0 10px rgba(100, 120, 120, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 30px;
}

/* Coming Soon Section */
.coming-soon-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    padding: 40px 20px;
}

.coming-soon {
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 0.2em;
    margin: 30px 0;
    background: linear-gradient(
        90deg,
        #3a9a9a 0%,
        #5fcfcf 25%,
        #8be9e9 50%,
        #5fcfcf 75%,
        #3a9a9a 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: comingSoonGlow 3s ease-in-out infinite, gradientShift 4s linear infinite;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(58, 154, 154, 0.5));
    z-index: 2;
}

.coming-soon::before {
    content: 'ÇOK YAKINDA SİZLERLE';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background: linear-gradient(
        90deg,
        #3a9a9a 0%,
        #5fcfcf 50%,
        #3a9a9a 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
}

/* Ribbon Strips */
.ribbon {
    width: 100vw;
    height: 3px;
    position: relative;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #3a9a9a 20%,
        #5fcfcf 50%,
        #3a9a9a 80%,
        transparent 100%
    );
    box-shadow: 
        0 0 10px rgba(58, 154, 154, 0.5),
        0 0 20px rgba(58, 154, 154, 0.3),
        0 0 30px rgba(58, 154, 154, 0.2);
    animation: ribbonGlow 2s ease-in-out infinite;
}

.ribbon::before,
.ribbon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(95, 207, 207, 0.6) 50%,
        transparent 100%
    );
}

.ribbon::before {
    top: -2px;
}

.ribbon::after {
    bottom: -2px;
}

.ribbon-top {
    margin-bottom: 20px;
    animation-delay: 0s;
}

.ribbon-bottom {
    margin-top: 20px;
    animation-delay: 1s;
}

@keyframes ribbonGlow {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 
            0 0 10px rgba(58, 154, 154, 0.5),
            0 0 20px rgba(58, 154, 154, 0.3),
            0 0 30px rgba(58, 154, 154, 0.2);
    }
    50% {
        opacity: 1;
        box-shadow: 
            0 0 15px rgba(95, 207, 207, 0.8),
            0 0 30px rgba(95, 207, 207, 0.5),
            0 0 45px rgba(95, 207, 207, 0.3);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes comingSoonGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(58, 154, 154, 0.5));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(95, 207, 207, 0.8));
        transform: scale(1.05);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes textPulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* Contact Email */
.contact-email {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #3a9a9a;
    text-decoration: none;
    margin-top: 50px;
    padding: 12px 25px;
    border: 2px solid #3a9a9a;
    border-radius: 8px;
    background: rgba(58, 154, 154, 0.1);
    text-shadow: 0 0 10px rgba(58, 154, 154, 0.4);
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: #5fcfcf;
    border-color: #5fcfcf;
    background: rgba(58, 154, 154, 0.2);
    text-shadow: 0 0 15px rgba(95, 207, 207, 0.6);
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content {
        gap: 15px;
    }
    
    .title {
        letter-spacing: 0.2em;
        margin-bottom: 20px;
    }
    
    .coming-soon-wrapper {
        padding: 30px 15px;
    }
    
    .coming-soon {
        letter-spacing: 0.15em;
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    .logo {
        margin-bottom: 5px;
    }
    
    .title {
        letter-spacing: 0.15em;
        margin-bottom: 15px;
    }
    
    .coming-soon-wrapper {
        padding: 20px 10px;
        margin-top: 10px;
    }
    
    .coming-soon {
        letter-spacing: 0.1em;
        margin: 15px 0;
    }
}

/* Extra visual effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    pointer-events: none;
}
