/* Health Warning Overrides */

body {
    background-color: #000;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    overflow-x: hidden;
}

.warning-pulse-border {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 999;
    box-shadow: inset 0 0 20px rgba(255, 49, 49, 0.2);
    animation: danger-pulse 4s ease-in-out infinite alternate;
}

@keyframes danger-pulse {
    0% { box-shadow: inset 0 0 10px rgba(255, 49, 49, 0.1), inset 0 0 2px rgba(255, 49, 49, 0.3); }
    100% { box-shadow: inset 0 0 40px rgba(255, 49, 49, 0.4), inset 0 0 10px rgba(255, 49, 49, 0.6); }
}

.warning-container {
    max-width: 800px;
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.warning-header {
    text-align: center;
}

.critical-header {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #FF3131 !important;
    background: linear-gradient(135deg, #FF8080 0%, #FF3131 50%, #FF0000 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    filter: drop-shadow(0 0 10px rgba(255, 49, 49, 0.5)) !important;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.warning-card {
    background: rgba(20, 5, 5, 0.8) !important;
    border: 1px solid rgba(255, 49, 49, 0.3) !important;
    padding: 3rem !important;
}

.warning-card:hover {
    box-shadow: 0 10px 40px rgba(255, 49, 49, 0.2) !important;
    border-color: rgba(255, 49, 49, 0.6) !important;
}

.warning-sub-header {
    color: #FF3131;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px rgba(255, 49, 49, 0.3);
}

.warning-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 0;
    opacity: 0.9;
}

.warning-card strong {
    color: #FF8080;
}

.warning-action {
    text-align: center;
    margin-top: 2rem;
}

.safe-use-list {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 0.5rem;
    opacity: 0.9;
    padding-left: 1.5rem;
}

.safe-use-list li {
    margin-bottom: 0.5rem;
}

.accept-btn {
    display: inline-block;
    padding: 1rem 4rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff !important;
    background: #00FFFF !important; /* Safe/Confirm Neon Cyan */
    box-shadow: 0 0 20px #00FFFF !important;
    border: none;
    letter-spacing: 2px;
}

.accept-btn:hover {
    box-shadow: 0 0 40px #00FFFF, inset 0 0 15px rgba(255, 255, 255, 0.6) !important;
    background: #4DFFFF !important;
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    .warning-card {
        padding: 1.5rem !important;
    }
    .warning-sub-header {
        font-size: 1.1rem;
    }
    .warning-card p {
        font-size: 0.95rem;
    }
}
