/* =========================================================
   OCTIGAMES - TÉRMINOS Y CONDICIONES
   /styles/terms.css
========================================================= */

.terms-main{
    width:100%;
    flex:1;
    padding:34px 20px 70px;
}

#terms-conditions-section{
    width:min(980px,100%);
    margin:0 auto;
    color:#edf3fb;
}

#terms-conditions-section,
#terms-conditions-section *{
    box-sizing:border-box;
}

.terms-page-header{
    position:relative;
    overflow:hidden;
    margin-bottom:24px;
    padding:30px 28px;
    text-align:center;

    border:1px solid rgba(255,179,71,.18);
    border-radius:26px;

    background:
        radial-gradient(circle at top,rgba(255,179,71,.11),transparent 58%),
        linear-gradient(145deg,rgba(28,38,48,.97),rgba(10,14,19,.98));

    box-shadow:
        0 20px 55px rgba(0,0,0,.38),
        0 0 32px rgba(255,179,71,.06);
}

.terms-page-header::after{
    content:"";
    position:absolute;
    width:210px;
    height:210px;
    right:-80px;
    bottom:-120px;
    border-radius:50%;
    background:rgba(31,227,253,.05);
    pointer-events:none;
}

.terms-page-kicker{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-bottom:12px;
    padding:7px 12px;

    border:1px solid rgba(255,179,71,.20);
    border-radius:999px;

    background:rgba(255,179,71,.07);
    color:#ffd39a;

    font-size:12px;
    font-weight:950;
    letter-spacing:.06em;
    text-transform:uppercase;
}

#terms-conditions-title{
    margin:0;

    color:#1fe3fd;
    font-size:clamp(30px,5vw,44px);
    line-height:1.08;
    font-weight:1000;
    text-align:center;
    text-decoration:none;

    text-shadow:
        0 0 14px rgba(31,227,253,.35);
}

.terms-page-intro{
    max-width:820px;
    margin:16px auto 0;

    color:rgba(237,243,251,.76);
    font-size:15px;
    line-height:1.75;
}

.terms-page-updated{
    margin:16px auto 0;

    color:rgba(237,243,251,.53);
    font-size:12px;
    line-height:1.5;
}

.terms-page-updated strong{
    color:rgba(237,243,251,.76);
}

.terms-page-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.terms-conditions{
    position:relative;
    overflow:hidden;

    padding:22px 24px;

    border:1px solid rgba(255,255,255,.09);
    border-radius:20px;

    background:
        linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.025));

    box-shadow:
        0 10px 28px rgba(0,0,0,.18);

    transition:
        transform .18s ease,
        border-color .18s ease,
        background .18s ease;
}

.terms-conditions:hover{
    transform:translateY(-2px);
    border-color:rgba(255,179,71,.22);
    background:
        linear-gradient(145deg,rgba(255,255,255,.072),rgba(255,255,255,.03));
}

.terms-conditions-point{
    margin:0 0 12px;

    display:flex;
    align-items:flex-start;
    gap:9px;

    color:#fff;
    font-size:18px;
    line-height:1.4;
    font-weight:950;
    text-align:left;
}

.terms-section-number{
    flex:0 0 auto;

    color:#ffb347;
    font-weight:1000;

    text-shadow:
        0 0 12px rgba(255,179,71,.22);
}

.terms-conditions-text{
    margin:0;

    color:rgba(237,243,251,.73);
    font-size:14px;
    line-height:1.78;
    text-align:left;
}

/* RTL */
#terms-conditions-section.terms-is-rtl{
    direction:rtl;
}

#terms-conditions-section.terms-is-rtl
.terms-conditions-point,
#terms-conditions-section.terms-is-rtl
.terms-conditions-text{
    text-align:right;
}

/* Responsive */
@media(max-width:700px){

    .terms-main{
        padding:22px 12px 55px;
    }

    .terms-page-header{
        padding:24px 17px;
        border-radius:22px;
    }

    #terms-conditions-title{
        font-size:30px;
    }

    .terms-page-intro{
        font-size:14px;
        line-height:1.7;
    }

    .terms-conditions{
        padding:18px 16px;
        border-radius:18px;
    }

    .terms-conditions-point{
        font-size:16px;
        gap:7px;
    }

    .terms-conditions-text{
        font-size:13px;
        line-height:1.7;
    }
}

@media(max-width:380px){

    .terms-main{
        padding-left:9px;
        padding-right:9px;
    }

    .terms-page-header,
    .terms-conditions{
        padding-left:13px;
        padding-right:13px;
    }
}

@media(hover:none){

    .terms-conditions:hover{
        transform:none;
    }
}