/* Imperial NYC Age Gate – BLAZ Digital */

#iag-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-family: 'Georgia', serif;
    opacity: 0;
    animation: iagFadeIn 0.4s ease forwards;
}

@keyframes iagFadeIn {
    to { opacity: 1; }
}

#iag-modal {
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    padding: 48px 40px;
    max-width: 440px;
    width: 92%;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0,0,0,0.7);
    transform: translateY(16px);
    animation: iagSlideUp 0.4s ease forwards;
}

@keyframes iagSlideUp {
    to { transform: translateY(0); }
}

#iag-modal .iag-logo {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 28px;
}

#iag-modal h2 {
    font-size: 22px;
    font-weight: 400;
    color: #f0ece4;
    margin: 0 0 10px;
    line-height: 1.35;
    letter-spacing: 0.02em;
}

#iag-modal p {
    font-size: 13px;
    color: #888;
    margin: 0 0 28px;
    line-height: 1.6;
    font-family: sans-serif;
}

#iag-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#iag-form input[type="email"] {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 3px;
    padding: 13px 16px;
    font-size: 14px;
    color: #f0ece4;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
    font-family: sans-serif;
}

#iag-form input[type="email"]:focus {
    border-color: #c9a84c;
}

#iag-form input[type="email"]::placeholder {
    color: #555;
}

.iag-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
}

.iag-checkbox-row input[type="checkbox"] {
    margin-top: 2px;
    accent-color: #c9a84c;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.iag-checkbox-row label {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    font-family: sans-serif;
    cursor: pointer;
}

#iag-submit {
    background: #c9a84c;
    color: #0a0a0a;
    border: none;
    border-radius: 3px;
    padding: 14px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s, transform 0.1s;
    font-family: sans-serif;
    margin-top: 4px;
}

#iag-submit:hover {
    background: #dbb95a;
}

#iag-submit:active {
    transform: scale(0.98);
}

#iag-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#iag-error {
    color: #e05252;
    font-size: 12px;
    font-family: sans-serif;
    min-height: 18px;
    text-align: center;
    display: none;
}

#iag-modal .iag-fine-print {
    font-size: 11px;
    color: #444;
    margin: 16px 0 0;
    line-height: 1.5;
    font-family: sans-serif;
}

#iag-modal .iag-fine-print a {
    color: #666;
    text-decoration: underline;
}

/* Price gate placeholder */
.iag-price-hidden {
    font-size: 13px;
    color: #aaa;
    font-style: italic;
    cursor: pointer;
    border-bottom: 1px dashed #aaa;
    display: inline-block;
    transition: color 0.2s;
}

.iag-price-hidden:hover {
    color: #c9a84c;
    border-bottom-color: #c9a84c;
}

/* Responsive */
@media (max-width: 480px) {
    #iag-modal {
        padding: 36px 24px;
    }
}
