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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 25%, #E07A5F 50%, #D2691E 75%, #FF6B35 100%);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

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

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

.content {
    background: linear-gradient(145deg, #ffffff 0%, #f8f8f8 100%);
    border-radius: 0;
    padding: 5rem 4rem;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.18),
        0 12px 30px rgba(0, 0, 0, 0.12),
        0 5px 15px rgba(0, 0, 0, 0.08),
        inset 0 1px 2px rgba(255, 255, 255, 0.9),
        inset 0 -1px 3px rgba(0, 0, 0, 0.06);
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    transform: translateZ(0);
}

.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.9) 50%,
        transparent 100%);
    border-radius: 0;
}

.content::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 3%;
    right: 3%;
    height: 2px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 0;
    filter: blur(2px);
}

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

.logo {
    margin-bottom: 4rem;
}

.logo-text {
    font-size: 3.5rem;
    font-weight: 300;
    /* color: #1a1a1a; */
    color: #FF6B35;
    margin-bottom: 0.8rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: #888;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.main-message {
    margin-bottom: 5rem;
}

.coming-soon {
    font-size: 1.8rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.updating {
    font-size: 0.9rem;
    color: #888;
    font-weight: 300;
    margin-top: 1rem;
    letter-spacing: 1px;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.contact-info {
    margin-bottom: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e8e8e8;
}

.contact-text {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-link {
    font-size: 1rem;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.contact-link:hover {
    color: #666;
}

.footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
}

.footer p {
    font-size: 0.75rem;
    color: #999;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .content {
        padding: 3rem 2rem;
    }

    .logo-text {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .logo-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .coming-soon {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .updating {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .content {
        padding: 2rem 1.5rem;
    }

    .logo-text {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .logo-subtitle {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .coming-soon {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }
}

