* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000000;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.company-name {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-bottom: 1.5rem;
    animation: fadeIn 2s ease-in-out;
}

.coming-soon {
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    letter-spacing: 0.3em;
    color: #ffffff;
    opacity: 0.8;
    animation: fadeIn 2.5s ease-in-out;
}

.footer {
    background: #ffffff;
    padding: 1rem 2rem;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-content p {
    margin: 0.3rem 0;
    font-size: 0.85rem;
    color: #333333;
}

@media (max-width: 768px) {
    .company-name {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .coming-soon {
        font-size: 1.5rem;
        letter-spacing: 0.2em;
    }

    .footer {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 1.5rem;
    }

    .coming-soon {
        font-size: 1.2rem;
    }

    .footer {
        padding: 0.8rem;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}