
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
body {
    margin: 0;
    padding: 50px 30px;

    background-image: url('fondofarenet.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #041b4d;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    min-height: 100vh;
    min-height: 100dvh;

    box-sizing: border-box;
    overflow-x: hidden;
}

.wrapper {
    width: 100%;
    max-width: 420px;
}

/* HEADER */
.header {
    text-align: center;
    margin-top: 20px;
}

.logo {
    font-size: 44px;
    font-weight: 800;
    color: #FFD500;
    letter-spacing: 2px;
}

.tagline {
    font-size: 14px;
    font-style: italic;
    opacity: 0.9;
    margin-top: 5px;
    color:#ffffff
}

.username {
    font-size: 26px;
    margin: 20px 0 10px;
    font-weight: 600;
}

.divider {
    width: 60px;
    height: 3px;
    background: #FFD500;
    margin: 10px auto 15px;
    border-radius: 2px;
}

.text {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
    color:#ffffff
}

.text b {
    color: #FFD500;
}

/* LINKS */
.links {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.card {
    background: #ffffff;
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #111;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: all .25s ease;
}

.card:hover {
    transform: translateY(-3px);
}

.left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon img {
    width: 22px;
}

.title {
    font-weight: 700;
    font-size: 15px;
}

.subtitle {
    font-size: 12px;
    color: #555;
}

.arrow {
    font-size: 18px;
    color: #999;
}

/* WHATSAPP */
.whatsapp {
    margin-top: 18px;
    border: 2px solid #1ebe5d;
    border-radius: 14px;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: all .25s ease;
}

.whatsapp:hover {
    transform: translateY(-3px);
}
.whatsapp-left {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* STATS */

.stats div {
    width: 48%;
}

/* FOOTER */
.footer {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    opacity: 0.8;
    color:#ffffff
}

.footer span {
    color: #FFD500;
}
.logo img {
    width: 300px;  
    max-width: 100%;
    height: auto;
}
/* CONTENEDOR */
.stats-box {
    margin-top: 20px;
    padding: 16px;
    border-radius: 16px;

    border: 1px solid rgba(0, 140, 255, 0.4);

    background: rgba(10, 40, 90, 0.6);
    backdrop-filter: blur(6px);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    width: 100%;
    overflow: hidden;

    /* mejora responsive */
    flex-wrap: nowrap;

    /* glow suave */
    box-shadow:
        0 0 12px rgba(0, 140, 255, 0.15),
        inset 0 0 10px rgba(255,255,255,0.03);
}

/* ITEM */
.stats-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 48%;
}

/* ICONO */
.stats-icon {
    width: 40px;
    height: 40px;

    min-width: 40px;
    min-height: 40px;

    border-radius: 50%;
    border: 2px solid #FFD500;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: rgba(255, 213, 0, 0.08);

    box-shadow:
        0 0 10px rgba(255, 213, 0, 0.25),
        inset 0 0 6px rgba(255,255,255,0.08);
}

.stats-icon img {
    width: 24px;
}

/* TEXTO */
.stats-title {
    font-weight: 700;
    font-size: 12px;
    color: #ffffff;
}

.stats-yellow {
    color: #FFD500;
}

.stats-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

/* DIVISOR */
.stats-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.2);
}