* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
--primary: #6366f1;
--primary-light: #818cf8;
--primary-dark: #4f46e5;
--accent: #ec4899;
--accent-light: #f472b6;
--dark: #0f172a;
--dark-lighter: #1e293b;
--light: #f1f5f9;
--text-light: #cbd5e1;
}

body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(135deg, var(--dark) 0%, #1a2847 50%, var(--dark-lighter) 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
overflow-x: hidden;
position: relative;
}

/* Animated background elements */
.bg-orb {
position: fixed;
border-radius: 50%;
opacity: 0.05;
animation: float 20s ease-in-out infinite;
z-index: -1;
}

.bg-orb-1 {
width: 400px;
height: 400px;
background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
top: -100px;
right: -100px;
animation-delay: 0s;
}

.bg-orb-2 {
width: 300px;
height: 300px;
background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
bottom: -50px;
left: -50px;
animation-delay: 7s;
}

.bg-orb-3 {
width: 250px;
height: 250px;
background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
top: 50%;
left: 10%;
animation-delay: 14s;
}

@keyframes float {

0%,
100% {
    transform: translateY(0px) translateX(0px);
}

25% {
    transform: translateY(-30px) translateX(20px);
}

50% {
    transform: translateY(-60px) translateX(-20px);
}

75% {
    transform: translateY(-30px) translateX(20px);
}
}

/* Main content container */
.container {
width: 100%;
max-width: 800px;
z-index: 10;
animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
from {
    opacity: 0;
    transform: translateY(40px);
}

to {
    opacity: 1;
    transform: translateY(0);
}
}

/* Glassmorphic card */
.glass-card {
background: rgba(255, 255, 255, 0.08);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 24px;
padding: 60px 40px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
position: relative;
overflow: hidden;
transition: all 0.3s ease;
}

.glass-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.glass-card:hover {
background: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.2);
box-shadow: 0 12px 48px rgba(99, 102, 241, 0.2);
transform: translateY(-5px);
}

/* Icon/Logo area */
.icon-container {
text-align: center;
margin-bottom: 40px;
animation: fadeInScale 0.8s ease-out 0.2s both;
}

@keyframes fadeInScale {
from {
    opacity: 0;
    transform: scale(0.8);
}

to {
    opacity: 1;
    transform: scale(1);
}
}

.maintenance-icon {
width: 100px;
height: 100px;
margin: 0 auto 20px;
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 50px;
box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
animation: rotate 20s linear infinite;
}

@keyframes rotate {
from {
    transform: rotate(0deg);
}

to {
    transform: rotate(360deg);
}
}

/* Heading */
h1 {
font-size: clamp(28px, 6vw, 48px);
font-weight: 700;
background: linear-gradient(135deg, var(--light) 0%, var(--primary-light) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 16px;
text-align: center;
letter-spacing: -1px;
animation: fadeInSlide 0.8s ease-out 0.3s both;
}

@keyframes fadeInSlide {
from {
    opacity: 0;
    transform: translateX(-20px);
}

to {
    opacity: 1;
    transform: translateX(0);
}
}

/* Subheading */
.status-badge {
display: inline-block;
background: rgba(236, 72, 153, 0.2);
border: 1px solid var(--accent);
color: var(--accent-light);
padding: 8px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
text-align: center;
width: 100%;
margin-bottom: 24px;
animation: fadeInSlide 0.8s ease-out 0.4s both;
}

/* Description text */
.description {
color: var(--text-light);
font-size: clamp(14px, 2vw, 16px);
line-height: 1.8;
text-align: center;
margin-bottom: 32px;
animation: fadeInSlide 0.8s ease-out 0.5s both;
}

/* CTA Section */
.cta-section {
margin-bottom: 32px;
animation: fadeInSlide 0.8s ease-out 0.6s both;
}

.redirect-text {
color: var(--text-light);
font-size: 14px;
text-align: center;
margin-bottom: 16px;
}

.cta-button {
display: inline-block;
width: 100%;
padding: 16px 32px;
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
color: white;
text-decoration: none;
border-radius: 14px;
font-weight: 600;
font-size: 16px;
border: none;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
text-align: center;
position: relative;
overflow: hidden;
}

.cta-button::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
background: rgba(255, 255, 255, 0.3);
border-radius: 50%;
transform: translate(-50%, -50%);
transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
width: 300px;
height: 300px;
}

.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}

.cta-button:active {
transform: translateY(-1px);
}

.button-text {
position: relative;
z-index: 1;
}

/* Features/Info grid */
.info-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
margin-top: 40px;
animation: fadeInSlide 0.8s ease-out 0.7s both;
}

@media (max-width: 600px) {
.info-grid {
    grid-template-columns: 1fr;
}
}

.info-item {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
padding: 20px;
text-align: center;
transition: all 0.3s ease;
}

.info-item:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.15);
transform: translateY(-2px);
}

.info-icon {
font-size: 24px;
margin-bottom: 12px;
}

.info-title {
color: var(--primary-light);
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 6px;
}

.info-text {
color: var(--text-light);
font-size: 12px;
line-height: 1.6;
}

/* Footer */
.footer {
text-align: center;
margin-top: 48px;
padding-top: 24px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: var(--text-light);
font-size: 13px;
animation: fadeInSlide 0.8s ease-out 0.8s both;
}

.footer a {
color: var(--primary-light);
text-decoration: none;
transition: color 0.3s ease;
}

.footer a:hover {
color: var(--accent-light);
}

/* Responsive adjustments */
@media (max-width: 768px) {
.glass-card {
    padding: 40px 24px;
    border-radius: 20px;
}

h1 {
    font-size: 32px;
}

.description {
    font-size: 14px;
}

.maintenance-icon {
    width: 80px;
    height: 80px;
    font-size: 40px;
}
}

@media (max-width: 480px) {
.glass-card {
    padding: 32px 20px;
}

h1 {
    font-size: 26px;
}

.status-badge {
    font-size: 11px;
    padding: 6px 12px;
}

.description {
    font-size: 13px;
    margin-bottom: 24px;
}

.info-grid {
    gap: 12px;
    margin-top: 32px;
}

.info-item {
    padding: 16px;
}

.info-title {
    font-size: 12px;
}

.info-text {
    font-size: 11px;
}
}