.status-page {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 1rem;
    }

    .status-header {
        text-align: center;
        margin-bottom: 1.5rem;
    }

        .status-header h1 {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            margin: 0;
            color: #e2e8f0;
        }

            .status-header h1 span {
                color: #00ffff;
            }

        .status-header p {
            color: #64748b;
            font-size: 0.9rem;
            margin-top: 0.5rem;
            letter-spacing: 0.05em;
        }

    .status-card {
        background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
        border: 1px solid rgba(0, 255, 255, 0.15);
        border-radius: 16px;
        padding: 1.75rem;
        width: 100%;
        position: relative;
        max-width: 440px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }

        .status-card .alert-error {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #fca5a5;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            font-size: 0.85rem;
        }

        .status-card .alert-ratelimit {
            background: rgba(251, 191, 36, 0.1);
            border: 1px solid rgba(251, 191, 36, 0.3);
            color: #fcd34d;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

            .status-card .alert-ratelimit svg {
                width: 20px;
                height: 20px;
                flex-shrink: 0;
            }

    .input-group {
        margin-bottom: 1.25rem;
    }

        .input-group label {
            display: block;
            color: #94a3b8;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
        }

        .input-group input {
            width: 100%;
            padding: 0.875rem 1rem;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(100, 116, 139, 0.3);
            border-radius: 8px;
            color: #e2e8f0;
            font-size: 0.9rem;
            font-family: 'JetBrains Mono', 'Fira Code', monospace;
            letter-spacing: 0.02em;
            transition: all 0.2s;
        }

            .input-group input:focus {
                outline: none;
                border-color: rgba(0, 255, 255, 0.5);
                box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.1);
            }

            .input-group input::placeholder {
                color: #475569;
                text-transform: none;
                letter-spacing: normal;
            }

        .input-group small {
            display: block;
            color: #64748b;
            font-size: 0.75rem;
            margin-top: 0.5rem;
        }

    .captcha-row {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .captcha-question {
        color: #94a3b8;
        font-size: 0.95rem;
        font-family: 'JetBrains Mono', monospace;
        white-space: nowrap;
    }

    .captcha-input {
        width: 55px;
        padding: 0.5rem 0.75rem;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(100, 116, 139, 0.3);
        border-radius: 6px;
        color: #e2e8f0;
        font-size: 1rem;
        font-family: 'JetBrains Mono', monospace;
        text-align: center;
    }

        .captcha-input:focus {
            outline: none;
            border-color: rgba(0, 255, 255, 0.5);
            box-shadow: 0 0 0 2px rgba(0, 255, 255, 0.1);
        }

        .captcha-input:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

    .captcha-input-text {
        width: 80px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }


    .captcha-expired-notice {
        font-size: 0.75rem;
        color: #f59e0b;
        margin-top: 0.5rem;
        opacity: 0;
        max-height: 0;
        animation: showExpired 0.3s 180s forwards;
    }

    @keyframes showExpired {
        to {
            opacity: 1;
            max-height: 2rem;
        }
    }

    .btn-check {
        flex: 1;
        padding: 0.625rem 1rem;
        background: linear-gradient(135deg, #00ffff 0%, #00d4aa 100%);
        border: none;
        border-radius: 6px;
        color: #0f172a;
        font-size: 0.85rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
    }

        .btn-check:hover {
            box-shadow: 0 4px 15px -4px rgba(0, 212, 170, 0.4);
        }

        .btn-check:active {
            transform: scale(0.98);
        }

        .btn-check:disabled {
            background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
            cursor: not-allowed;
            opacity: 0.6;
        }

            .btn-check:disabled:hover {
                box-shadow: none;
            }

        .btn-check svg {
            width: 16px;
            height: 16px;
        }

    .input-group input:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .help-section {
        margin-top: 1.5rem;
        padding-top: 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .help-title {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #94a3b8;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 0.75rem;
    }

        .help-title svg {
            width: 16px;
            height: 16px;
            color: #00ffff;
        }

    .help-items {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .help-item {
        display: flex;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .help-icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
        background: rgba(0, 255, 255, 0.1);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #00ffff;
        font-size: 0.7rem;
        font-weight: 600;
    }

    .help-text {
        color: #94a3b8;
        font-size: 0.8rem;
        line-height: 1.4;
    }

        .help-text strong {
            color: #e2e8f0;
        }

        .help-text code {
            background: rgba(0, 255, 255, 0.1);
            color: #00ffff;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.75rem;
        }

    .warning-note {
        margin-top: 1rem;
        padding: 0.75rem;
        background: rgba(251, 191, 36, 0.05);
        border: 1px solid rgba(251, 191, 36, 0.2);
        border-radius: 8px;
        display: flex;
        gap: 0.5rem;
        align-items: flex-start;
    }

        .warning-note svg {
            width: 16px;
            height: 16px;
            min-width: 16px;
            color: #fbbf24;
            margin-top: 1px;
        }

        .warning-note p {
            color: #94a3b8;
            font-size: 0.75rem;
            line-height: 1.5;
            margin: 0;
        }

    .status-loader-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.80);
        border-radius: 12px;
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        opacity: 0;
        pointer-events: none;
    }

    .status-loader-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #888;
        animation: dotPulse 1s ease-in-out infinite;
    }

    .status-loader-dot:nth-child(2) { animation-delay: 0.15s; }
    .status-loader-dot:nth-child(3) { animation-delay: 0.3s; }

    @keyframes dotPulse {
        0%, 100% { opacity: 0.25; transform: scale(0.8); }
        50% { opacity: 1; transform: scale(1.3); }
    }

    .btn-check:focus ~ .status-loader-overlay {
        animation: showStatusOverlay 15s 80ms both;
    }

    @keyframes showStatusOverlay {
        0%, 95% { opacity: 1; }
        100% { opacity: 0; }
    }

    @media (max-width: 480px) {
        .status-card {
            padding: 1.25rem;
        }

        .status-header h1 {
            font-size: 1.5rem;
        }
    }
