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

body {
    font-family: 'Tomorrow', sans-serif;
    background: #0a1929;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #D9D9D9;
    overflow: hidden;
    position: relative;
}

.container {
    text-align: center;
    z-index: 1;
    position: relative;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
}

.logo-container {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.logo-icon {
    display: inline-block;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.3));
}

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

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

.company-name {
    font-size: 4rem;
    font-weight: 700;
    color: #D9D9D9;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(217, 217, 217, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.company-tagline {
    font-size: 2.5rem;
    font-weight: 600;
    color: #A855F7;
    letter-spacing: 0.15em;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.slogan {
    font-size: 1.3rem;
    font-weight: 400;
    color: #D9D9D9;
    letter-spacing: 0.2em;
    margin-top: 1.5rem;
    font-style: italic;
    opacity: 0.9;
    text-shadow: 0 0 15px rgba(217, 217, 217, 0.2);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.coming-soon {
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.coming-soon-text {
    font-size: 2rem;
    font-weight: 600;
    color: #D9D9D9;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    background-color: #A855F7;
    border-radius: 50%;
    display: inline-block;
    animation: bounce 1.4s ease-in-out infinite both;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.footer {
    margin-top: 4rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.footer p {
    font-size: 1rem;
    color: #D9D9D9;
    opacity: 0.7;
    letter-spacing: 0.1em;
    font-weight: 400;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .company-name {
        font-size: 2.5rem;
    }
    
    .company-tagline {
        font-size: 1.8rem;
    }
    
    .slogan {
        font-size: 1rem;
    }
    
    .coming-soon-text {
        font-size: 1.5rem;
    }
    
    .logo-icon svg {
        width: 120px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 2rem;
    }
    
    .company-tagline {
        font-size: 1.4rem;
    }
    
    .slogan {
        font-size: 0.9rem;
    }
    
    .coming-soon-text {
        font-size: 1.2rem;
    }
    
    .logo-icon svg {
        width: 100px;
        height: auto;
    }
    
    .container {
        padding: 1rem;
    }
}
