/* === Plateor Maintenance Page Styles === */

:root {
    --background: hsl(225, 25%, 3%);
    --foreground: hsl(210, 20%, 92%);
    --card: hsl(225, 25%, 9%);
    --card-foreground: hsl(210, 20%, 92%);
    --primary: hsl(210, 100%, 55%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(225, 20%, 14%);
    --secondary-foreground: hsl(210, 15%, 70%);
    --muted: hsl(225, 18%, 18%);
    --muted-foreground: hsl(210, 12%, 50%);
    --accent: hsl(160, 70%, 45%);
    --accent-foreground: hsl(0, 0%, 100%);
    --border: hsl(225, 15%, 18%);
    --radius: 1.5rem;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--background);
    color: var(--foreground);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    overflow-x: hidden;
}

/* === Container === */
.protection-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* === Background Glow Effect === */
.background-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(ellipse at center, rgba(29, 78, 216, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* === Main Card === */
.protection-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    padding: 3rem 2.5rem;
    background: rgba(16, 24, 40, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    text-align: center;
}

/* === Logo === */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.logo-image {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: -0.02em;
}

/* === Icon Container === */
.icon-container {
    margin-bottom: 1.5rem;
}

.shield-icon {
    color: var(--primary);
    filter: drop-shadow(0 0 20px rgba(29, 78, 216, 0.5));
    animation: shield-pulse 3s ease-in-out infinite;
}

@keyframes shield-pulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* === Title === */
.title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

/* === Description === */
.description {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* === Status Badge === */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.3);
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    50% { 
        opacity: 0.5;
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
}

.status-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-foreground);
}

/* === Loading Dots === */
.loading-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: bounce 1.4s ease-in-out infinite;
}

.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
    0%, 80%, 100% { 
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% { 
        transform: scale(1);
        opacity: 1;
    }
}

/* === Contact Info === */
.contact-info {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.contact-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.contact-link {
    font-size: 0.95rem;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--foreground);
    text-decoration: underline;
}

/* === Footer === */
.protection-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    text-align: center;
    z-index: 1;
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* === Responsive === */
@media (max-width: 640px) {
    .protection-container {
        padding: 1rem;
    }

    .protection-card {
        padding: 2rem 1.5rem;
    }

    .title {
        font-size: 1.5rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .logo-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .shield-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .protection-card {
        padding: 1.5rem 1.25rem;
    }

    .title {
        font-size: 1.25rem;
    }

    .description {
        font-size: 0.875rem;
    }
}
