/* Simple and Clean Maintenance Page */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maintenance-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Axione Title */
.axione-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

/* Maintenance Message */
.maintenance-message {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    opacity: 0.8;
}

@keyframes glow {
    0% {
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    100% {
        text-shadow: 0 4px 20px rgba(255, 255, 255, 0.5);
    }
}

/* Features Section */
.features-section {
    margin-top: 40px;
}

.features-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-item i {
    font-size: 24px;
    color: #ffffff;
    opacity: 0.9;
}

.feature-item span {
    font-size: 1rem;
    color: #ffffff;
    text-align: center;
    font-weight: 500;
    opacity: 0.95;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .maintenance-card {
        padding: 40px 25px;
        margin: 10px;
    }

    .axione-title {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

    .maintenance-message {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .features-title {
        font-size: 1.3rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .feature-item {
        padding: 20px 15px;
    }

    .feature-item i {
        font-size: 20px;
    }

    .feature-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .axione-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .maintenance-message {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .maintenance-card {
        padding: 30px 20px;
    }
}