* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow: hidden;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 800px;
    width: 100%;
}

.logo-section {
    margin-bottom: 3rem;
}

.company-name {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    color: #ff4444;
    text-shadow: 
        0 0 10px #ff4444,
        0 0 20px #ff4444,
        0 0 30px #ff4444;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.accent-stripe {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, 
        #ff4444 0%, 
        #ffffff  25%, 
        #000000 50%, 
        #ffffff 75%, 
        #ff4444 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.coming-soon-section {
    margin-bottom: 3rem;
}

.coming-soon {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.tagline {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 300;
    letter-spacing: 1px;
}

.features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature {
    text-align: center;
    min-width: 150px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.feature h3 {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 1px;
}

.contact-info {
    font-size: 1rem;
    color: #aaaaaa;
    font-weight: 300;
}

/* Background Animation */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.accent-line {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #ff4444, transparent);
    animation: float 3s linear infinite;
}

.accent-line:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.accent-line:nth-child(2) {
    left: 50%;
    animation-delay: 1s;
}

.accent-line:nth-child(3) {
    left: 80%;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        top: -100px;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        top: 100vh;
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-name {
        font-size: 2.5rem;
    }
    
    .coming-soon {
        font-size: 2rem;
    }
    
    .features {
        gap: 2rem;
    }
    
    .feature {
        min-width: 120px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 2rem;
    }
    
    .coming-soon {
        font-size: 1.5rem;
    }
    
    .features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
}