/* =========================================
   VARIABLES
   ========================================= */
:root {
    --bg-color: #0b0f1a;
    --card-bg: #161e2d;
    --text-color: #f1f5f9;
    --text-secondary: #94a3b8;
    --primary: #8b5cf6;
    --primary-glow: rgba(139, 92, 246, 0.3);
    --accent: #ec4899;
    --header-bg: rgba(22, 30, 45, 0.9);
    --shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
}

/* =========================================
   RESET
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a { text-decoration: none; }
ul { list-style: none; }

header {
    background-color: var(--header-bg);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

.nav-links { display: flex; gap: 20px; }
.nav-links a { color: var(--text-color); font-weight: 500; }
.nav-links a:hover { color: var(--primary); }

/* =========================================
   LAYOUT CENTRADO
   ========================================= */
.layout-container {
    max-width: 600px;
    width: 100%;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
    flex: 1;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* WIDGETS */
.widget {
    background-color: var(--card-bg);
    padding: 1.8rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: var(--shadow);
}

.widget h4 {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 8px;
}

/* PERFIL */
.profile-widget { text-align: center; }
.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 3px solid var(--primary);
    overflow: hidden;
}
.profile-pic img { width: 100%; height: 100%; object-fit: cover; }
.mini-socials { display: flex; justify-content: center; gap: 20px; margin-top: 15px; }
.mini-socials a { font-size: 1.5rem; color: var(--text-color); }
.mini-socials a:hover { color: var(--accent); transform: scale(1.2); }

/* --- SECCIÓN EQUIPO (CORRECCIÓN LOGO) --- */
.team-mini-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.03);
    padding: 10px;
    border-radius: 12px;
}

.team-mini-header img {
    width: 60px;  /* Tamaño fijo para que no se vea grande */
    height: 60px;
    object-fit: contain; /* Para que el logo no se corte */
    background: --header-bg; /* Opcional: fondo blanco si el logo es oscuro */
    padding: 5px;
    border-radius: 10px;
}

.team-info {
    display: flex;
    flex-direction: column;
}

.team-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

.team-tag {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* LISTAS Y BOTONES */
.schedule-list li, .setup-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

.setup-list li { justify-content: flex-start; gap: 12px; border: none; padding: 6px 0; }
.setup-list i { color: var(--accent); width: 20px; }
.time { color: var(--primary); font-weight: 700; }

.btn-sidebar {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), #6d28d9);
    padding: 12px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    margin-top: 10px;
}

.tiktok-btn { background: #000; border: 1px solid #00f2ea; color: #00f2ea; }

footer { text-align: center; padding: 2rem; color: var(--text-secondary); font-size: 0.8rem; }

@media (max-width: 480px) {
    .nav-links { display: none; }
    header { justify-content: center; }
}

/* --- CREATOR FOOTER STYLES (WEBZTER) --- */
.creator-credit {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Línea sutil */
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.dev-link {
    color: var(--primary); /* Usa tu color morado (#8b5cf6) */
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 5px;
}

.dev-link:hover {
    color: var(--accent); /* Cambia a rosa al pasar el mouse (#ec4899) */
    text-shadow: 0 0 15px var(--primary-glow); /* Efecto neón */
    text-decoration: none;
}