﻿

.suscripcion {
    width: 100%;
}

input[type='text'], [type='email'], [type='password'], [type='date'], select, textarea {
    background: none;
    border: none;
    border-bottom: solid 2px #474544;
    /*color: white;*/
    font-size: 1.000em;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0em 0 1.875em 0;
    padding: 0 0 0.875em 0;
    /*text-transform: uppercase;*/
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

    input[type='text']:focus, [type='email']:focus, [type='password']:focus, textarea:focus {
        outline: none;
        padding: 0 0 0.875em 0;
    }

select {
    background: url('https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-arrow-down-32.png') no-repeat right;
    outline: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

    select::-ms-expand {
        display: none;
    }

button, input, select, textarea {
    color: #5A5A5A;
    font: inherit;
    margin: 0;
}

button, select {
    text-transform: none;
}

/**********************************************************************************************************************************************/
/*************** Pagina de ERROR ******************/
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-dark));
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.error-container {
    max-width: 900px;
    width: 95%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    padding: 40px;
    text-align: center;
    animation: fadeIn 0.6s ease;
}

.error-icon {
    font-size: 80px;
    color: var(--accent-light);
    margin-bottom: 15px;
}

h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #222;
}

p {
    color: #555;
    margin-bottom: 20px;
}

.links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

    .links a {
        padding: 12px 24px;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--accent-light), var(--accent-dark));
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

        .links a:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.info-card {
    background: linear-gradient(0deg, #f5f5f5, #d7f1ea);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .info-card:hover {
        transform: translateY(-5px);
    }

    .info-card h3 {
        margin-bottom: 10px;
        color: var(--accent-dark);
    }
/* Juego */
#gameBox {
    margin-top: 30px;
    padding: 20px;
    border: 2px dashed var(--accent-light);
    border-radius: 15px;
    background: #fafafa;
    position: relative;
    height: 200px;
    overflow: hidden;
}

.coin {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f7931a; /* Naranja Bitcoin */
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 26px;
    color: white;
    font-family: Arial, sans-serif;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

#score {
    margin-top: 15px;
    font-weight: bold;
    color: #333;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tamaño y adaptación */
.b1t-error-icon {
    width: 108px;
    height: 108px;
    margin: 0 auto 8px;
}

.b1t-error-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Animaciones suaves (no alarmantes) */
@keyframes b1tFloat {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-1.5px)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes b1tPulse {
    0% {
        opacity: 0.95
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0.95
    }
}
/* Movimiento sutil de velas (simula mercado) usando scaleY desde la base */
@keyframes b1tCandle {
    0% {
        transform: translateY(0) scaleY(1)
    }

    50% {
        transform: translateY(-1px) scaleY(1.05)
    }

    100% {
        transform: translateY(0) scaleY(1)
    }
}

.b1t-error-icon svg > circle {
    animation: b1tPulse 3.6s ease-in-out infinite;
}

.b1t-candles {
    animation: b1tFloat 4.8s ease-in-out infinite;
    transform-origin: 32px 32px;
}

.b1t-candle {
    transform-origin: center bottom;
    animation: b1tCandle 2.8s ease-in-out infinite;
}

.b1t-c1 {
    animation-duration: 2.6s;
    animation-delay: 0.1s;
}

.b1t-c2 {
    animation-duration: 3.0s;
    animation-delay: 0.3s;
}

.b1t-c3 {
    animation-duration: 2.4s;
    animation-delay: 0.2s;
}

/* Hover: pausa (detalle pro) */
.b1t-error-icon:hover .b1t-candle,
.b1t-error-icon:hover .b1t-candles,
.b1t-error-icon:hover svg > circle {
    animation-play-state: paused;
    cursor: default;
}

/* Accesibilidad: respeta usuarios con reducción de movimiento */
@media (prefers-reduced-motion: reduce) {
    .b1t-error-icon * {
        animation: none !important;
    }
}

/**********************************************************************************************************************************************/
