/* ===========================
   Estilos personalizados mejorados
   =========================== */
   
/* Hacer que todo el .nk-feature-1 sea clickeable */
.feature-link {
    display: block;
    text-decoration: none;
    color: inherit;
}



/* Contenedor de los bloques (Discord, WhatsApp, Descargas, Eventos) */
.feature-box {
    margin-top: 200px;
    text-align: center;
    margin-bottom: -100px;
}

/* Caja general estilo "card" */
.nk-feature-1 {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 15px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.nk-feature-1:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
}

/* Iconos sin fondo */
.icon-box {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 40px;
    text-align: center;
    margin: 0 auto 10px;
    border-radius: 50%;
    color: var(--color1);
    transition: all 0.3s ease-in-out;
}

.nk-feature-1:hover .icon-box {
    color: #fff;
}

/* Títulos */
.feature-title {
    text-decoration: none !important;
    color: var(--color1);
    font-size: 20px;
    font-family: H67, Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease-in-out;
}

.nk-feature-1:hover .feature-title {
    color: #fff;
}

/* Subtítulos / descripciones */
.feature-subtitle {
    text-decoration: none !important;
    color: #bbb;
    font-size: 12px;
    font-family: H67, Arial, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

/* Hover sutil */
.feature-subtitle:hover {
    color: var(--color1);
}
