:root {
    --btn-size: 45px;
    --btn-size-hover: 55px;
 }

       /* -----------------------------------Body------------------------------ */
    body {
        margin: 0;
        background: #696969; 
        font-family: Arial, sans-serif;
    }
    /* -----------------------------------Header------------------------------ */

    header {
        display: flex;
        align-items: center;
        padding: 10px 20px;
        height: 120px; 
        background: #5e5e5e; 
        user-select: none;
    }

    header img {
        height: 90px; 
        width: auto;
        margin-right: 15px;
        pointer-events: none;

    }

    header h2 {
        color: #dcdcdc; 
        font-size: 40px;
        margin: 0;
        font-weight: 400;
        margin-top: 40px;
    }

.buttoms-accounts {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* -----------------------------------Accounts Buttoms------------------------------ */
.btn {
    position: relative;
    width: var(--btn-size);
    height: var(--btn-size);
    cursor: pointer;
    transition: width 0.2s ease, height 0.2s ease;
}

/* Aumenta tamaño al pasar el mouse */
.btn:hover {
    width: var(--btn-size-hover);
    height: var(--btn-size-hover);
}

/* Imagen base */
.btn img.base {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0;
    left: 0;
    opacity: 1;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

/* Imagen overlay (blanca) */
.btn img.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

/* Al hacer hover, aparece overlay y se apaga base */
.btn:hover img.overlay {
    opacity: 1;
}

.btn:hover img.base {
    opacity: 0;
}

.no-fade:hover img.base {
    opacity: 1 !important;
}

/* -----------------------------------Content Wrapper------------------------------ */

.content-wrapper {
    width: 100%;
    display: flex;
    justify-content: left;
    padding: 40px 0;
}

/* Contenido centrado */
.content {
    width: 80%;
    max-width: 900px;
    margin-left: 20px;
    margin-top: 60px;
}

/* Texto principal */
.content p {
    color: #dcdcdc;
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

.content h2 {
    color: #eee9e9;
    font-size: 32px;
    margin: 0;
    font-weight: 400;
}

/* -----------------------------------Apps Section------------------------------ */

/* -----------------------------------Apps Section------------------------------ */

.apps-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 40px 0;
}


.app-link {
    width: 80%;
    max-width: 900px;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}


.app-card {
    width: 100%; /* Toma el 100% de su contenedor (.app-link) */
    background: #444444;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: background 0.2s ease;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}


.app-link:hover .app-card {
    background: #3a3a3a;
}

/* Icono */
.app-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

/* Contenedor de info */
.app-info {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Nombre */
.app-name strong {
    color: #dcdcdc;
    font-size: 23px;
    font-weight: 600;
}

/* Separador horizontal */
.app-separator {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin: 6px 0 10px 0;
}

/* Descripción */
.app-desc {
    color: #dcdcdc;
    font-size: 17px;
    font-weight: 300;
    opacity: 0.85;
}
/* --------------------------------- End Apps Section ------------------------------ */

/* -----------------------------------Footer------------------------------ */
footer {
    background: #383838;
    color: #dcdcdc;
    text-align: center;
    padding: 20px 0;
}
footer h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 400;
}
footer a {
    color: #a7b7ff;
    text-decoration: none;
    font-size: 18px;
    text-decoration: normal;
    transition: color 0.2s ease;
}
footer a:hover {
    color: #495bff;
    text-decoration: underline;
}

.ogp {
    color: #f1f1f1;
    text-decoration: none;
    font-size: 18px;
    text-decoration: normal;
    transition: color 0.2s ease;
}
.ogp:hover {
    color: #ff9900;
    text-decoration: underline;
}

footer img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 5px;
    margin-bottom: 5px;
}


/* --------------------------------- End Footer ------------------------------ */



