:root {
    --primary-color: #f26522;
    --primary-glow: rgba(242, 101, 34, 0.1);
    --bg-light: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.8);
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --font-family: 'Outfit', sans-serif;
}

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

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: var(--font-family);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Effects */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #fffbf8 0%, #ffffff 100%);
    z-index: -1;
}

.glow-ball {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-glow);
    filter: blur(120px);
    border-radius: 50%;
    z-index: -1;
    animation: moveGlow 15s infinite alternate ease-in-out;
}

@keyframes moveGlow {
    0% { transform: translate(-10%, -10%); }
    100% { transform: translate(10%, 10%); }
}

main {
    width: 100%;
    max-width: 1200px;
    max-height: 100vh;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Logo Styling */
.logo-container {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(242, 101, 34, 0.2));
}

/* Content Layout */
.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 4rem;
}

.text-content {
    flex: 1;
    text-align: left;
    animation: fadeInLeft 1s ease-out 0.2s backwards;
}

.mascot-container {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s ease-out 0.4s backwards;
}

.mascot {
    width: 100%;
    max-width: 500px;
    max-height: 80vh;
    object-fit: contain;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    animation: float 4s infinite ease-in-out;
}

/* Typography */
h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #f26522 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Maintenance Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(242, 101, 34, 0.1);
    border: 1px solid rgba(242, 101, 34, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--primary-color);
    animation: pulse 2s infinite;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    max-width: 400px;
    height: 6px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #ff8c52);
    box-shadow: 0 0 15px var(--primary-glow);
    border-radius: 10px;
    animation: progressFill 3s ease-out forwards;
}

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

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

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

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes progressFill {
    from { width: 0; }
    to { width: 65%; }
}

/* Responsiveness */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .text-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .mascot {
        max-width: 250px;
        max-height: 30vh;
    }
    
    body {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2.2rem;
        word-wrap: break-word;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
    
    p {
        font-size: 1.1rem;
    }
    
    .logo {
        width: 150px;
    }
}
