/* Overlay para Cookies y KYC */
body.modal-open {
    overflow: hidden; /* Bloquear scroll */
}

/* Banner de Cookies (Bloqueante) */
#cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-modal {
    background: #1a1a1a;
    color: #fff;
    padding: 2rem;
    max-width: 600px;
    border: 2px solid #d4af37; /* Oro */
    text-align: center;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.cookie-btn {
    background: #d4af37;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    margin: 10px;
    font-size: 1rem;
}

.cookie-btn:hover {
    background: #fff;
}

/* Modal KYC */
#kyc-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: none; /* Oculto por defecto */
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #d4af37;
    font-family: 'Courier New', monospace;
}

.kyc-counter {
    font-size: 8rem;
    font-weight: bold;
    text-shadow: 0 0 30px #d4af37;
}

.kyc-status {
    font-size: 1.5rem;
    margin-top: 20px;
    color: #fff;
}

.js-hidden {
    display: none !important;
}

/* Estilos de la tabla de inversión */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.tier-card {
    background: #222;
    border: 1px solid #444;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.tier-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.tier-title {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.tier-amount {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.tier-benefits {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
}
