:root {
    --bg-dark: #0a0b0d;
    --bg-depth: #050505;
    --accent: #00f2ff;
    --accent-dark: #008891;
    --text-muted: #a0a0a0;
}

body {
    background-color: var(--bg-dark);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Navbar con efecto cristal */
.custom-navbar {
    background: rgba(10, 11, 13, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
}

.text-accent { color: var(--accent); }
.bg-accent { background-color: var(--accent); color: #000; }
.btn-accent { 
    background-color: var(--accent); 
    color: #000; 
    font-weight: bold;
    border: none;
}
.btn-accent:hover { background-color: white; }

/* Hero Section con gradiente tecnológico */
.hero-tech {
    height: 100vh;
    background: radial-gradient(circle at center, rgba(0, 242, 255, 0.1) 0%, var(--bg-dark) 70%);
    position: relative;
}

.section-title {
    font-weight: 800;
    letter-spacing: 2px;
    border-left: 5px solid var(--accent);
    padding-left: 15px;
    margin-bottom: 30px;
}

/* Tarjetas de Proyectos */
.project-card {
    background: #14161a;
    border: 1px solid #2d2f36;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.15);
}

.active-project {
    background: linear-gradient(145deg, #14161a 0%, #001a1d 100%);
    border: 1px dashed var(--accent);
}

/* Miembros del Equipo */
.member-card {
    background: transparent;
    border: 1px solid transparent;
}

.member-img-placeholder {
    width: 120px;
    height: 120px;
    background: #202228;
    border-radius: 50%;
    margin: 0 auto;
    border: 2px solid var(--accent-dark);
}

/* Animaciones de Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Títulos de las categorías de equipo */
.category-name {
    font-size: 1.2rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #2d2f36;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.category-name i {
    color: var(--accent);
}

/* Ajuste de las tarjetas de miembros para que sean más compactas */
.member-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.member-card:hover {
    background: rgba(0, 242, 255, 0.05);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.member-img-placeholder {
    width: 100px;
    height: 100px;
    background: #1a1c20;
    border-radius: 50%;
    margin: 0 auto;
    border: 2px solid #2d2f36;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Efecto visual para cuando no hay foto aún */
.member-img-placeholder::after {
    content: "USER";
    font-size: 0.7rem;
    color: #444;
}