/* ==========================================================================
   Website Temporary Suspension Page
   Compact Red & Black Theme (Vanilla CSS3)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Design Tokens
   -------------------------------------------------------------------------- */
:root {
    /* Red & Black Color Palette */
    --color-bg-dark: #000000;
    --color-bg-crimson-dark: #0d0404;
    
    --color-accent: #EF4444; /* Alert Crimson Red */
    --color-accent-hover: #DC2626;
    --color-accent-light: #F87171;
    --color-accent-glow: rgba(239, 68, 68, 0.25);
    --color-accent-subtle: rgba(239, 68, 68, 0.08);
    
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #9CA3AF;
    --color-text-muted: #6B7280;
    
    --color-card-bg: rgba(15, 6, 6, 0.75);
    --color-card-border: rgba(239, 68, 68, 0.22);
    --color-card-border-highlight: rgba(255, 255, 255, 0.15);
    
    /* Notice Box Tokens */
    --color-notice-bg: rgba(239, 68, 68, 0.05);
    --color-notice-border: rgba(239, 68, 68, 0.3);
    
    /* Layout & Geometry */
    --card-max-width: 580px;
    --card-border-radius: 24px;
    
    /* Fonts */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* --------------------------------------------------------------------------
   2. Global Reset & Body Setup
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1rem;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   3. Animated Dynamic Background & Ambient Red Orbs
   -------------------------------------------------------------------------- */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    background: radial-gradient(circle at 50% 30%, #170505 0%, #0a0202 60%, #000000 100%);
    background-size: 160% 160%;
    animation: bgGradientMove 18s ease infinite alternate;
}

@keyframes bgGradientMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

/* Subtle Geometric Grid Overlay */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: 
        linear-gradient(rgba(239, 68, 68, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 68, 68, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    mask-image: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 85%);
    -webkit-mask-image: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 85%);
}

/* Floating Ambient Red Glowing Orbs */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
}

.bg-glow-1 {
    width: 450px;
    height: 450px;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(239, 68, 68, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    animation: orbPulse1 10s ease-in-out infinite alternate;
}

.bg-glow-2 {
    width: 450px;
    height: 450px;
    bottom: -140px;
    right: -100px;
    background: radial-gradient(circle, rgba(185, 28, 28, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    animation: orbPulse2 14s ease-in-out infinite alternate;
}

@keyframes orbPulse1 {
    0% { transform: translateX(-50%) translateY(0) scale(1); opacity: 0.4; }
    100% { transform: translateX(-50%) translateY(25px) scale(1.1); opacity: 0.6; }
}

@keyframes orbPulse2 {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-30px) scale(1.12); }
}

/* --------------------------------------------------------------------------
   4. Main Container & Layout Alignment
   -------------------------------------------------------------------------- */
.page-container {
    width: 100%;
    max-width: var(--card-max-width);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   5. Compact Glassmorphism Card (Fits Viewport Without Scrolling)
   -------------------------------------------------------------------------- */
.suspension-card {
    width: 100%;
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-top: 1px solid var(--color-card-border-highlight);
    border-radius: var(--card-border-radius);
    padding: 2.25rem 2.25rem 1.5rem 2.25rem;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.95),
        0 0 35px -5px rgba(239, 68, 68, 0.12),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    animation: cardEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.suspension-card:hover {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 
        0 30px 60px -12px rgba(0, 0, 0, 0.98),
        0 0 45px -5px rgba(239, 68, 68, 0.18),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.18);
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.97);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* --------------------------------------------------------------------------
   6. Warning Icon & Badge Container
   -------------------------------------------------------------------------- */
.icon-container {
    position: relative;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconFloat 5s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.icon-pulse {
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-accent-glow) 0%, rgba(239, 68, 68, 0) 70%);
    animation: pulseRing 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulseRing {
    0% { transform: scale(0.85); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.75; }
    100% { transform: scale(0.85); opacity: 0.3; }
}

.icon-badge {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.03) 100%);
    border: 1px solid rgba(239, 68, 68, 0.35);
    box-shadow: 
        0 8px 20px -4px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.15),
        0 0 15px rgba(239, 68, 68, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.warning-icon {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 0 6px rgba(239, 68, 68, 0.6));
}

/* --------------------------------------------------------------------------
   7. Status Pill Tag
   -------------------------------------------------------------------------- */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.3);
    margin-bottom: 1rem;
}

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

@keyframes statusDotBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.status-text {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-accent-light);
}

/* --------------------------------------------------------------------------
   8. Headings & Compact Text Hierarchy
   -------------------------------------------------------------------------- */
.main-heading {
    font-size: clamp(1.6rem, 3.8vw, 2.05rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: clamp(0.92rem, 2vw, 1.02rem);
    font-weight: 500;
    color: var(--color-accent-light);
    margin-bottom: 1.35rem;
    max-width: 480px;
    line-height: 1.4;
}

/* Explanation Paragraphs */
.explanation-section {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.35rem;
    text-align: left;
}

.explanation-section p {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.55;
}

/* --------------------------------------------------------------------------
   9. Compact Notice Box
   -------------------------------------------------------------------------- */
.notice-box {
    width: 100%;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.02) 100%);
    border: 1px solid var(--color-notice-border);
    border-left: 3px solid var(--color-accent);
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    margin-bottom: 1.25rem;
    text-align: left;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px -2px rgba(0, 0, 0, 0.4);
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 0.4rem;
}

.notice-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--color-accent-light);
}

.notice-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-accent-light);
}

.notice-text {
    font-size: 0.88rem;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.45;
}

.notice-text strong {
    font-weight: 600;
    color: #FFFFFF;
}

.notice-subtext {
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

/* --------------------------------------------------------------------------
   10. Compact Footer
   -------------------------------------------------------------------------- */
.card-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    width: 100%;
}

.footer-text {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.brand-name {
    font-weight: 600;
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
}

.suspension-card:hover .brand-name {
    color: var(--color-accent-light);
}

/* --------------------------------------------------------------------------
   11. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
    body {
        padding: 1rem 0.75rem;
    }

    .suspension-card {
        padding: 1.75rem 1.25rem 1.25rem 1.25rem;
        border-radius: 20px;
    }

    .icon-badge {
        width: 52px;
        height: 52px;
        border-radius: 15px;
    }

    .warning-icon {
        width: 26px;
        height: 26px;
    }

    .main-heading {
        font-size: 1.45rem;
    }

    .subtitle {
        font-size: 0.88rem;
        margin-bottom: 1.1rem;
    }

    .explanation-section p {
        font-size: 0.84rem;
    }

    .notice-box {
        padding: 0.75rem 0.9rem;
    }
}
