﻿/* ============================ */
/* CARD RECARGA */
/* ============================ */
/* ============================ */
/* CONTENEDOR GENERAL */
/* ============================ */

.drops-container {
    width: 100%;
    min-height: 100vh;
    padding-top: 40px;
}

/* ============================ */
/* HEADER ESTILO DOTA */
/* ============================ */

.dota-header {
    text-align: center;
    margin-bottom: 40px;
}

.header-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-container {
    background: linear-gradient(to bottom, #2b2416, #15110a);
    padding: 10px 28px;
    border: 1px solid #b89859;
    border-radius: 6px;
    box-shadow: 0 0 25px rgba(184, 152, 89, 0.35);
}

.title-text {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #f3e6c6;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

/* LINEA DORADA */
.title-line {
    display: flex;
    align-items: center;
    margin-top: 12px;
    width: 420px;
}

.line-center {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #b89859, transparent);
}

.line-decorator {
    width: 16px;
    height: 16px;
    border: 2px solid #b89859;
    transform: rotate(45deg);
}

    .line-decorator.left {
        margin-right: 8px;
    }

    .line-decorator.right {
        margin-left: 8px;
    }
.recharge-card {
    max-width: 420px;
    margin: 3rem auto;
    padding: 2.5rem;
    background: rgba(10, 8, 3, 0.92);
    border: 1px solid #b89859;
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(184, 152, 89, 0.2);
    text-align: center;
}

/* MONTO */
.amount-label {
    display: block;
    font-size: 1rem;
    color: #d8cfae;
    margin-bottom: 0.8rem;
}

.amount-control {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

.amount-input {
    width: 120px;
    height: 48px;
    text-align: center;
    font-size: 1.6rem;
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    font-weight: bold;
}

/* BOTONES + - */
.amount-btn {
    width: 44px;
    height: 44px;
    background: linear-gradient(to bottom, #4a4231, #2e281b);
    border: 1px solid #b89859;
    color: #f0e6d2;
    font-size: 1.4rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

    .amount-btn:hover {
        background: linear-gradient(to bottom, #6a5a3a, #3a321f);
        transform: scale(1.05);
    }

/* TICKETS */
.ticket-box {
    margin: 2rem 0;
    padding: 1.2rem;
    background: rgba(184, 152, 89, 0.08);
    border-radius: 12px;
}

.ticket-title {
    display: block;
    font-size: 1rem;
    color: #d8cfae;
}

.ticket-value {
    font-size: 2.5rem;
    color: #ffd700;
    font-weight: bold;
}

/* PAGOS */
.payment-section {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pay-btn {
    padding: 0.7rem 1.6rem;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

    .pay-btn:hover {
        transform: translateY(-2px);
    }

.paypal {
    background: linear-gradient(to bottom, #003087, #001f5e);
    color: white;
}

.yape {
    background: linear-gradient(to bottom, #7c1cff, #4b0096);
    color: white;
}

/* YAPE */
.yape-section {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.yape-qr {
    width: 300px;
    margin-bottom: 1rem;
    border-radius: 12px;
}

.voucher-input {
    width: 100%;
    margin: 1rem 0;
}

.send-btn {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(to bottom, #b89859, #8f6f2d);
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

    .send-btn:hover {
        background: linear-gradient(to bottom, #d1b06c, #a8843d);
    }

/* ANIMACIÓN */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================ */
/* BONUS EFECTO PREMIUM */
/* ============================ */

.bonus-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    padding: 6px 14px;
    border-radius: 14px;
    background: linear-gradient( 120deg, #ffd700, #c9a400, #ffd700 );
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

/* Texto */
.bonus-label {
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #3a2a00;
}

.bonus-value {
    font-size: 0.85rem;
    font-weight: bold;
    color: #3a2a00;
}

/* REFLEJO ANIMADO */
.bonus-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient( 120deg, transparent, rgba(255, 255, 255, 0.8), transparent );
    animation: bonusShine 2.5s infinite;
}

@keyframes bonusShine {
    0% {
        left: -60%;
    }

    100% {
        left: 160%;
    }
}

/* ============================ */
/* ALERTA LOGIN */
/* ============================ */

.login-warning {
    display: none;
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(184, 80, 80, 0.15);
    border: 1px solid #b85c5c;
    color: #ffb3b3;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
}
.paypal-text {
    color: #cfcfcf;
    margin-top: 10px;
    font-size: 14px;
}

.paypal-link {
    display: block;
    margin: 10px 0;
    color: #00b4ff;
    font-weight: bold;
    text-decoration: none;
}

    .paypal-link:hover {
        text-decoration: underline;
    }

.paypal-amount {
    margin: 10px 0 14px;
    font-size: 26px;
    font-weight: bold;
    color: #28a745; /* verde */
    text-align: center;
}
.pay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px; /* espacio natural */
    width: 100%; /* ocupa todo el ancho */
    padding: 14px 0;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
}
.pay-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
}
.pay-btn1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px; /* espacio natural */
    width: 100%; /* ocupa todo el ancho */
    padding: 14px 0;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
}

.pay-icon1 {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* CONTENEDOR DOBLE */
.ticket-box.dual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: nowrap; /* ⬅️ CLAVE */
}

/* COLUMNA */
.ticket-column {
    flex: 1;
    text-align: center;
    min-width: 0; /* ⬅️ evita empujes */
}

    /* KNIGHT CASH color */
    .ticket-column.knight .ticket-title {
        color: #01fa02;
    }

/* SEPARADOR */
.ticket-separator {
    flex: 0 0 20px; /* ancho fijo */
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .ticket-separator::before {
        content: "";
        width: 1px;
        height: 100%;
        background: linear-gradient( to bottom, transparent, #888, transparent );
    }

.separator-circle {
    background: #111;
    color: #f5d76e;
    padding: 4px;
    font-size: 10px;
    border-radius: 50%;
}