/* 
 * ═══════════════════════════════════════════════════════════════════════════
 * GATEKEEPER PRODUCTION STYLES v2.1.0
 * NOETIC FRICTION AT ZERO.
 * ═══════════════════════════════════════════════════════════════════════════
 */

:root {
    --accent-red: #ff003c;
    --accent-green: #00ffcc;
    --bg-darker: #050505;
    --bg-card: #111;
}

.paywall-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.paywall-modal {
    background: var(--bg-darker);
    border: 1px solid var(--accent-red);
    width: 90%;
    max-width: 800px;
    padding: 40px;
    position: relative;
    box-shadow: 0 0 100px rgba(255, 0, 60, 0.2);
    font-family: 'Roboto Mono', monospace;
    color: #fff;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.warning-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.modal-header h2 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 4px;
    color: var(--accent-red);
    margin: 10px 0;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.tier {
    background: var(--bg-card);
    border: 1px solid #333;
    padding: 25px;
    text-align: center;
    position: relative;
}

.tier.premium {
    border-color: var(--accent-green);
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.1);
}

.recommended-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--accent-green);
    color: #000;
    font-size: 0.7rem;
    padding: 2px 10px;
    font-weight: 900;
}

.tier h3 {
    margin-top: 0;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 15px 0;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.tier ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    font-size: 0.85rem;
    color: #aaa;
}

.tier ul li {
    margin-bottom: 8px;
}

.tier ul li::before {
    content: "⚡";
    margin-right: 8px;
    color: var(--accent-green);
}

.btn-pay {
    width: 100%;
    padding: 12px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-pay:hover {
    background: #fff;
    color: #000;
}

.btn-pay.primary {
    background: var(--accent-green);
    color: #000;
    border: none;
}

.btn-pay.primary:hover {
    background: #fff;
    box-shadow: 0 0 15px var(--accent-green);
}

.btn-pay.secondary {
    background: #0070ba;
    border: none;
}

.btn-pay.crypto {
    background: #f7931a;
    border: none;
}

.terminal-status {
    background: #000;
    border: 1px solid #333;
    padding: 15px;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.8rem;
    border-left: 4px solid var(--accent-green);
    min-height: 50px;
    display: flex;
    align-items: center;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .pricing-tiers {
        grid-template-columns: 1fr;
    }
}