@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top, #0b1220 0%, #05080f 70%);
    color: #e5e7eb;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    overflow: hidden;
}

.grid-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: scan 8s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    0% { transform: translateY(-40px); }
    100% { transform: translateY(40px); }
}

.container {
    max-width: 650px;
    padding: 50px;
    position: relative;
    z-index: 2;
}

.logo-wrapper {
    animation: float 4s ease-in-out infinite;
}

.logo {
    width: 240px;
    margin-bottom: 35px;
    filter: drop-shadow(0 0 25px rgba(37,99,235,0.35));
}

.company-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
}

.status {
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

p {
    opacity: 0.75;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 14px 34px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37,99,235,0.35);
}

.language-switch {
    margin-top: 25px;
}

.language-switch button {
    background: transparent;
    border: 1px solid #3b82f6;
    color: #3b82f6;
    padding: 6px 12px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
}

.language-switch button:hover {
    background: #3b82f6;
    color: white;
}

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