* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #0f0f23 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(220, 51, 69, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(220, 51, 69, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(30, 30, 60, 0.5) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.maintenance-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    gap: 30px;
}

/* Logo Section */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease-out;
}

.logo {
    width: 90px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(220, 51, 69, 0.4));
    transition: all 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 0 30px rgba(220, 51, 69, 0.6));
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: lowercase;
}

/* Main Content Card */
.content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 100px rgba(220, 51, 69, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 650px;
    width: 90%;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(220, 51, 69, 0.1),
        rgba(220, 51, 69, 0.2),
        rgba(220, 51, 69, 0.1),
        transparent
    );
    animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Icon Section */
.icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.icon-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3345 0%, #ff6b7a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 40px rgba(220, 51, 69, 0.4),
        inset 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.icon-circle i {
    font-size: 2rem;
    color: #ffffff;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.progress-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 3;
}

.progress-bar {
    fill: none;
    stroke: #dc3345;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 70;
    animation: progressAnimation 3s ease-in-out infinite;
}

@keyframes progressAnimation {
    0% { stroke-dashoffset: 283; }
    50% { stroke-dashoffset: 70; }
    100% { stroke-dashoffset: 283; }
}

/* Typography */
h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.2rem;
    color: #dc3345;
    font-weight: 500;
    margin-bottom: 10px;
}

.description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 1.5rem;
    color: #dc3345;
    padding: 15px;
    background: rgba(220, 51, 69, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(220, 51, 69, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover i {
    background: rgba(220, 51, 69, 0.2);
    box-shadow: 0 5px 20px rgba(220, 51, 69, 0.3);
}

.feature-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Contact Button */
.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #dc3345 0%, #ff4757 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(220, 51, 69, 0.3),
        0 0 0 0 rgba(220, 51, 69, 0.4);
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.contact-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(220, 51, 69, 0.4),
        0 0 0 4px rgba(220, 51, 69, 0.2);
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.contact-button:hover i {
    transform: translateX(5px) rotate(-20deg);
}

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 30px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.footer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Animation for Content */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.content {
    animation: fadeInUp 1s ease-out 0.3s both, float 6s ease-in-out 1.3s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .maintenance-container {
        padding: 30px 15px;
    }

    .content {
        padding: 35px 25px;
        border-radius: 25px;
    }

    .logo {
        width: 70px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .features {
        gap: 25px;
    }

    .feature-item i {
        font-size: 1.2rem;
        padding: 12px;
    }

    .contact-button {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .icon-wrapper {
        width: 100px;
        height: 100px;
    }

    .icon-circle {
        width: 65px;
        height: 65px;
    }

    .icon-circle i {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .features {
        gap: 20px;
    }

    .feature-item span {
        font-size: 0.8rem;
    }

    h1 {
        font-size: 1.3rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: #dc3345;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff4757;
}