/* Reset everything - no body styling, no background, no extra colors */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Absolutely no background, no colors, no gradients, nothing */
    background: none;
    background-color: transparent;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    /* No overflow hidden from body - the modal will handle its own */
}

/* Overlay - pure dark backdrop with blur, but body itself has no color */
.blocker-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: fadeIn 0.35s ease-out;
}

/* Modern card - clean, glass, no body background interference */
.modal-card {
    max-width: 520px;
    width: 100%;
    background: rgba(18, 18, 24, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    padding: 2rem 2rem 2.2rem;
    text-align: center;
    transition: transform 0.2s ease;
    animation: slideUp 0.45s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* Icon with warning style */
.icon-wrapper {
    background: linear-gradient(135deg, #e11d48, #be123c);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.4rem;
    box-shadow: 0 10px 24px rgba(225, 29, 72, 0.35);
    animation: softPulse 2s infinite;
}

.icon-wrapper svg {
    width: 44px;
    height: 44px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

h1 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
    margin-bottom: 0.5rem;
}

.badge {
    display: inline-block;
    background: rgba(225, 29, 72, 0.2);
    padding: 0.25rem 1rem;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fda4af;
    border: 1px solid rgba(225, 29, 72, 0.5);
    margin-bottom: 1.2rem;
    letter-spacing: 0.3px;
}

.description {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 1.4rem;
    font-weight: 450;
}

.description strong {
    color: #fbbf24;
    font-weight: 600;
}

.info-box {
    background: rgba(0, 0, 0, 0.45);
    border-radius: 1.2rem;
    padding: 0.85rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: #a1a1aa;
    border-left: 3px solid #e11d48;
    text-align: left;
}

.btn-primary {
    background: linear-gradient(105deg, #3b82f6, #2563eb);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 1.8rem;
    border-radius: 3rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
    font-family: inherit;
    letter-spacing: 0.2px;
}

.btn-primary:hover {
    transform: scale(1.01);
    background: linear-gradient(105deg, #2563eb, #1d4ed8);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.4);
}

.btn-primary:active {
    transform: scale(0.98);
}

.timer-section {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #71717a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.timer-pill {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 40px;
    padding: 0.2rem 0.75rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-weight: bold;
    color: #60a5fa;
    font-size: 0.85rem;
}

.footnote {
    margin-top: 12px;
    font-size: 0.65rem;
    opacity: 0.5;
    color: #a1a1aa;
}

@keyframes fadeIn {
    from { opacity: 0; backdrop-filter: blur(0px); }
    to { opacity: 1; backdrop-filter: blur(12px); }
}

@keyframes slideUp {
    from {
    opacity: 0;
    transform: translateY(30px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

@keyframes softPulse {
    0% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.5); }
    70% { box-shadow: 0 0 0 14px rgba(225, 29, 72, 0); }
    100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

/* No extra body styling, absolutely nothing */
body {
    background: transparent;
}