
:root{
    --bg: #100F0E;
    --bg-content: #181817;
    --blue: #232357;
    --red: #A21D21;
    --yellow: #FCB415;
    --green: #327239;
}

html {
    scroll-behavior: smooth;
}

a{
    -webkit-transition: all 0.2s ease !important;  
    -moz-transition: all 0.2s ease !important;
    -ms-transition: all 0.2s ease !important;  
    -o-transition: all 0.2s ease !important;
    transition: all 0.2s ease !important;
}

body {
    color: white;
    background-color: var(--bg);
}

html {
    /* font-size: 20px; */
}

.container{
    background-color: var(--bg-content);
    padding: 0;
    position: relative;
}

/* HEADER */

header {
    position: relative;
    overflow: hidden;
}

header .shine {
    width: 200%;
    height: 300%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

header::after {
    content: "";
    position: absolute;
    bottom: -130px;
    left: 0;
    width: 100%;
    height: 200px; /* Ajusta la altura según lo necesario */
    background-color: var(--bg-content); /* Color gris oscuro con opacidad */
    transform: skewY(-5deg); /* Da el efecto cruzado */
    z-index: 1;
}

@media screen and (max-width: 900px) {
    header::after {
        bottom: -175px;
    }
}

header img {
    position: relative;
    z-index: 0;
}

@media screen and (max-width: 900px) {
    header img {
        height: 55vh !important;
        width: 100% !important;
    }
}

/* Estilo personalizado de los tabs */
.nav{
    position: absolute;
    /* bottom: 0; */
    z-index: 2;
    left: 60px;
    margin-top: -100px;
}

.nav-pills .nav-link {
    color: white;
    background-color: var(--bg);
    border-radius: 0; 
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 25px 20px;
    border-top: 6px #DDDDDD solid;
    position: relative;
}

.nav-pills .nav-link:after{
    content: "";
    display: block;
    width: 2px;
    height: calc(100% - 20px);
    position: absolute;
    right: 0;
    top: 10px;
    background-color: #282827;
}

.nav-pills li:nth-child(1) .nav-link{
    border-top: 6px var(--blue) solid;
}
.nav-pills li:nth-child(2) .nav-link{
    border-top: 6px var(--red) solid;
}

.nav-pills li:last-child .nav-link:after{
    display: none;
}

@media screen and (max-width: 900px) {
    .nav{
        margin-top: -50px;
        left: 20px;
    }
    .nav-pills .nav-link {
        font-size: 0.8rem;
    }
}

.nav-pills .nav-link.active {
    background-color: var(--bg); /* Fondo rojo oscuro para la pestaña activa */
    color: #ffd700; /* Texto dorado */
    cursor: not-allowed;
}

.nav-pills .nav-link:not(.active):hover {
    background-color: #333; /* Color al pasar el mouse */
}

.nav-divider {
    border-left: 1px solid #444; /* Separador entre pestañas */
    height: 100%;
}


/* FOOTER */

.social-links a{
    display: inline-block;
}
.social-links a img{
    width: 60px;
    margin: 0 13px;
}
.social-links a:hover{
    transform: scale(1.2);
}

.copy-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    margin-left: 5px;
    width: auto;
    padding: 0;
    display: inline-block;
    vertical-align: text-bottom;
}

button#copy-button img {
    margin: 0;
}

.copied-message {
    display: none; /* Escondido por defecto */
    font-size: 14px;
    margin-top: 10px;
    animation: fadeOut 3s forwards;
    position: absolute;
    background-color: #000;
    color: #fff;
    padding: 8px;
    z-index: 9999;
    border-radius: 4px;
}

.logo {
    position: relative;
    max-width: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    margin: 0;
}

.shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: rotate(45deg);
    pointer-events: none;
    animation: shine 3s infinite;
}

section p{
    font-size: 1rem;
    text-transform: uppercase;
}

/*** Pagina 1  ***/
@media screen and (max-width: 900px) {
    .title img{
        width: 50%;
    }
    .title{
        white-space: nowrap;
        font-size: 1rem;
    }
}

.info-container {
    /* background-color: #000; */ /* Fondo negro */
    color: white; /* Texto blanco */
    font-family: Arial, sans-serif; /* Fuente estándar */
}

.info-row {
    display: flex;
    border-bottom: 2px solid #444; /* Línea divisora */
    background-color: var(--bg);
}

.info-item {
    flex: 1;
    padding: 10px 20px; /* Espaciado interno */
    text-align: center;
    font-weight: bold;
    border-right: 1px solid #444; /* Divisores verticales */
}

.info-item:last-child {
    border-right: none; /* Quitar el borde del último item */
}

.divider {
    border-bottom: 2px solid #ffd700; /* Línea amarilla */
}

.transfer-container{
    margin-top: -40px
}

.divider-rewards {
    border-bottom: 2px solid #0f5132; /* Línea verde oscuro */
}

.description span {
    font-weight: bold; /* Texto en negrita */
    text-transform: uppercase;
}

.transfer-fee {
    display: flex;
    align-items: center;
}

.transfer-box {
    background-color: #444; /* Fondo gris oscuro */
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-right: 15px;
    min-width: 150px;
}

.transfer-box .percentage {
    font-size: 24px;
    font-weight: bold;
    color: #ffd700; /* Dorado */
}

.fee-details {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
}

.fee-item {
    background-color: var(--bg); /* Fondo gris oscuro */
    padding: 10px 15px;
    border-radius: 5px;
    border-bottom: 4px solid #232357;
    font-size: 1rem;
}
.fee-item:nth-child(2n){
    border-bottom: 4px solid #004A68
}

.fee-item strong {
    display: inline-block;
    border-right: solid 1px #444;
    margin-right: 10px;
    width: 35px;    
}

.description {
    font-size: 14px;
    line-height: 1.6;
    padding-top: 30px;
    padding-bottom: 10px;
}

.description span {
    font-weight: bold;
    text-transform: uppercase;
    color: white;
}


.modal-content{
    background-color: var(--bg);
}

.modal-content .btn-close{
    filter: brightness(0) invert(1);
    opacity: 1;
    margin-left: auto;
    float: right;
}

/*******************************************/
/**** animaciones ****/
.levitate {
    animation: levitate 5s ease-in-out infinite;
}

.levitate-invert {
    animation: levitate-invert 5s ease-in-out infinite;
}

@keyframes levitate {
    0%, 100% {
        transform: translateY(0); /* Posición inicial y final */
    }
    50% {
        transform: translateY(-15px); /* Subir 20px hacia arriba */
    }
}

@keyframes levitate-invert {
    0%, 100% {
        transform: translateY(0); /* Posición inicial y final */
    }
    50% {
        transform: translateY(-5px); /* Subir 20px hacia arriba */
    }
}

.pulse {
    animation: pulse 6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.03);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes shine {
    0% {
        transform: translate(-150%, -150%) rotate(45deg);
    }
    100% {
        transform: translate(150%, 150%) rotate(45deg);
    }
}