/* =========================================================
   COINGT PAGE
   assets/css/pages/coingt.css
   ========================================================= */

.coingt-hero-section {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(rgba(0, 18, 40, 0.68), rgba(0, 18, 40, 0.68)),
        url('../../img/coingt.png') no-repeat center center;
    background-size: cover;
    position: relative;
}

.play-div {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
}

.play-trigger img {
    max-width: 90px;
    transition: transform 0.25s ease;
    cursor: pointer;
}

.play-trigger:hover img {
    transform: scale(1.08);
}

.token-section {
    background: #081a31;
    color: #fff;
}

.token-section h2,
.token-section h4,
.token-section h5 {
    color: #fff;
}

.token-section .text-warning {
    color: #f3c623 !important;
}

.normal-box {
    background: #0c2746;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 28px;
    color: rgba(255,255,255,0.92);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.normal-box h4,
.normal-box h5 {
    color: #fff;
}

.normal-box p,
.normal-box li {
    color: rgba(255,255,255,0.9);
    line-height: 1.75;
}

.normal-box ul {
    padding-left: 1.2rem;
}

.normal-box hr {
    border-color: rgba(255,255,255,0.18);
    opacity: 1;
}

.circlebg {
    background:
        linear-gradient(rgba(0, 20, 45, 0.78), rgba(0, 20, 45, 0.78)),
        url('../../img/containerbg.png') no-repeat center center;
    background-size: cover;
    padding: 90px 0;
    text-align: center;
}

.circlebg .invertir h5 {
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.circlebg .text-warning {
    color: #f3c623 !important;
}

.invest-cta-link {
    text-decoration: none;
}

.y-bg {
    display: inline-block;
    background: #f3c623;
    color: #0b1930;
    font-weight: 800;
    padding: 16px 34px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.invest-cta-link:hover .y-bg {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.2);
}

.coin-vid video {
    border-radius: 12px;
}

.modal-content {
    border-radius: 16px;
    overflow: hidden;
}

/* Ajuste de iconografía en la sección de beneficios */
.normal-box img {
    max-width: 58px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .coingt-hero-section {
        min-height: 320px;
    }

    .play-div {
        min-height: 220px;
    }

    .token-section h2 {
        font-size: 2rem;
    }

    .circlebg {
        padding: 70px 0;
    }

    .circlebg .invertir h5 {
        font-size: 1.15rem;
    }
}

@media (max-width: 575.98px) {
    .play-trigger img {
        max-width: 72px;
    }

    .normal-box {
        padding: 22px;
    }

    .y-bg {
        width: 100%;
        max-width: 280px;
    }

    .circlebg .invertir h5 {
        font-size: 1rem;
        line-height: 1.6;
    }
}