/* Variables CSS */
:root {
    --bg-dark: #050505;
    --cyan: #00f3ff;
    --violet: #8a2be2;
    --gold: #ffd700;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Canvas Background */
#lattice-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none; /* Allows clicking through the canvas */
}

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-main);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--cyan);
}

/* Secciones Generales */
section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.content-wrapper {
    max-width: 800px;
    text-align: center;
}

/* Typography y Utilidades */
.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--cyan), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-violet { background: linear-gradient(90deg, var(--violet), #fff); -webkit-background-clip: text;}
.text-gold { background: linear-gradient(90deg, var(--gold), #fff); -webkit-background-clip: text;}

.section-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Hero Section */
#hero {
    flex-direction: column;
    text-align: center;
}

.hero-content {
    max-width: 900px;
}

.subtitle {
    color: var(--cyan);
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.title span {
    color: var(--violet);
}

.hero-message {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-style: italic;
}

/* Botón Call To Action */
.btn-glow {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--bg-dark);
    background-color: var(--cyan);
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.8), 0 0 60px rgba(0, 243, 255, 0.4);
    transform: translateY(-2px);
    background-color: #fff;
}

/* Glassmorphism Podcast Card */
.podcast-card {
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

.podcast-card:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.5); /* Violet accent on hover */
}

.badge {
    display: inline-block;
    background: rgba(138, 43, 226, 0.2);
    color: var(--violet);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.podcast-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.podcast-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
footer {
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(to top, #000 0%, var(--bg-dark) 100%);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.closing-phrase {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.copyright {
    font-size: 0.8rem;
    color: #444;
}

/* Animaciones de Entrada (Fade-in on scroll) */
.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive (Mobile First is implicit, but here we adjust for smaller screens) */
@media (max-width: 768px) {
    .title { font-size: 3rem; }
    .hero-message { font-size: 1.2rem; }
    .section-title { font-size: 2.2rem; }
    .navbar { padding: 15px 20px; flex-direction: column; gap: 15px; }
    .nav-links { gap: 15px; }
}