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

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

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3a8a 0%, #172554 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Logo styles */
.logo-container {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    margin: 0 auto 3rem;
    max-width: 200px;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.15);
    animation: logoFloat 6s ease-in-out infinite;
}

.logo-container img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

/* Content styles */
.content {
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #e2e8f0, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.code-icon {
    font-size: 1.5rem;
    color: #93c5fd;
}

.status-text {
    font-size: 1.5rem;
    color: #e2e8f0;
}

.description {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Button styles */
.buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.button {
    min-width: 180px;
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.primary {
    background-color: #2563eb;
    color: white;
}

.primary:hover {
    background-color: #1d4ed8;
}

.secondary {
    background-color: transparent;
    border: 1px solid #60a5fa;
    color: white;
}

.secondary:hover {
    border-color: #93c5fd;
}

.arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.primary:hover .arrow {
    transform: translateX(4px);
}

/* Footer */
footer {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Code background */
.code-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.code-snippet {
    position: absolute;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    animation: float linear infinite;
    text-shadow: 0 0 3px rgba(59, 130, 246, 0.3);
}

/* Animations */
@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-150px) translateX(0) rotate(0);
        opacity: 0;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .status-text {
        font-size: 1.25rem;
    }
    
    .logo-container {
        padding: 1.5rem;
    }
    
    .button {
        width: 100%;
    }
}

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