/* Theme Name: Danilion Bio Styles v8 (Corrección de Especificidad) */

body {
    margin: 0; padding: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #000;
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center;
    color: #fff; overflow-x: hidden;
}

a, a:visited, a:hover, a:active {
    color: #fff; text-decoration: none;
}

.bio-background {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    z-index: -1; transform: scale(1.1); filter: blur(30px) brightness(0.3);
}

.bio-wrapper {
    width: 100%; max-width: 480px; padding: 50px 20px;
    box-sizing: border-box; text-align: center; margin: 0 auto; z-index: 1;
}

.bio-cover img {
    width: 120px; height: 120px; object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 15px auto; display: block;
    border: 2px solid rgba(255,255,255,0.2);
}

.bio-title {
    font-size: 1.6rem; font-weight: 800; margin: 0 0 15px 0;
    text-transform: uppercase; color: #fff; letter-spacing: 1px;
}

.bio-subtitle { 
    font-size: 0.95rem; color: #ccc;
    margin: 20px 0 30px 0; line-height: 1.4;
}

.bio-social-header { display: flex; justify-content: center; gap: 25px; }
.bio-social-header a { color: rgba(255,255,255,0.8); transition: 0.3s; }
.bio-social-header a:hover { color: #fff; transform: scale(1.2); }
.bio-social-header svg { width: 24px; height: 24px; fill: currentColor; }

.bio-links { display: flex; flex-direction: column; gap: 12px; width: 100%; margin-bottom: 40px; }

.bio-btn {
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px; border-radius: 12px;
    transition: 0.2s;
}
.bio-btn:hover { background: rgba(255,255,255,0.15); transform: scale(1.02); }

.bio-btn-left { display: flex; align-items: center; gap: 12px; }
.bio-icon svg { width: 24px; height: 24px; display: block; }
.bio-name { font-weight: 600; font-size: 1rem; color: #fff; }

.bio-action {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    background: rgba(255,255,255,0.15); padding: 6px 12px;
    border-radius: 6px; color: #fff; white-space: nowrap;
}
.bio-btn:hover .bio-action { background: #fff; color: #000; }

.grid-container { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; }

.grid-card {
    position: relative; border-radius: 12px; overflow: hidden;
    background: #000; border: 1px solid rgba(255,255,255,0.1); transition: transform 0.3s;
    color: #fff;
}
.grid-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.4); }

.grid-bg { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: 0.3s; }
.grid-card:hover .grid-bg { opacity: 0.5; transform: scale(1.05); }

.featured-card { grid-column: span 2; aspect-ratio: 16/9; margin-bottom: 5px; }
.featured-title {
    position: absolute; bottom: 15px; left: 15px; font-size: 1.1rem;
    font-weight: bold; text-shadow: 0 2px 5px #000; z-index: 2; text-align: left;
    color: #fff;
}
.featured-play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 50px; height: 50px; background: rgba(0,0,0,0.6); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; border: 2px solid #fff; z-index: 2;
}

.small-card { aspect-ratio: 16/10; }
.grid-title {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 8px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    font-size: 0.8rem; font-weight: bold; z-index: 2; color: #fff;
}