/* IEP Content Warning Gate */

#iep-warning-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: iep-fade-in 0.3s ease;
}

@keyframes iep-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#iep-warning-box {
    background: #0a0a0a;
    border: 1px solid #cc0000;
    max-width: 560px;
    width: 100%;
    padding: 48px 44px;
    text-align: center;
    position: relative;
    font-family: Georgia, 'Times New Roman', serif;
}

#iep-warning-box::before {
    content: '';
    position: absolute;
    top: 6px; left: 6px; right: 6px; bottom: 6px;
    border: 1px solid rgba(204, 0, 0, 0.25);
    pointer-events: none;
}

#iep-warning-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
    color: #cc0000;
    font-style: normal;
}

#iep-warning-box h2 {
    color: #ffffff;
    font-size: 22px;
    font-weight: normal;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 6px;
}

#iep-warning-rule {
    width: 48px;
    height: 2px;
    background: #cc0000;
    margin: 14px auto 22px;
}

#iep-warning-box p {
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.75;
    margin: 0 0 14px;
    font-family: Georgia, serif;
}

#iep-warning-box p strong {
    color: #dddddd;
}

#iep-warning-disclaimer {
    font-size: 12px !important;
    color: #666666 !important;
    border-top: 1px solid #222;
    padding-top: 16px;
    margin-top: 8px !important;
}

#iep-warning-buttons {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    justify-content: center;
}

#iep-warning-accept {
    background: #cc0000;
    color: #ffffff;
    border: none;
    padding: 13px 32px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: Georgia, serif;
    transition: background 0.2s;
    flex: 1;
    max-width: 220px;
}

#iep-warning-accept:hover {
    background: #aa0000;
}

#iep-warning-decline {
    background: transparent;
    color: #666666;
    border: 1px solid #333333;
    padding: 13px 32px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: Georgia, serif;
    transition: all 0.2s;
    flex: 1;
    max-width: 220px;
}

#iep-warning-decline:hover {
    border-color: #555555;
    color: #888888;
}

/* Prevent body scroll while gate is open */
body.iep-warning-active {
    overflow: hidden;
}
