body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(to bottom right, #1a1a1a, #2b2b2b);
    color: #e0e0e0;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 680px;
    width: 100%;
    text-align: center;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #333;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 2.5em;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bio-title {
    font-size: 1.2em;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.bio-subtitle {
    font-size: 1em;
    color: #a0a0a0;
    margin: 0 0 30px 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #2b2b2b;
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.5em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.social-links a:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
    color: #fff;
}

.social-links a[aria-label="Instagram"]:hover {
    background: radial-gradient(circle at 30% 110%, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 6px 18px rgba(220, 39, 67, 0.5);
}

.social-links a[aria-label="Facebook"]:hover {
    background-color: #1877f2;
    box-shadow: 0 6px 18px rgba(24, 119, 242, 0.5);
}

.social-links a[aria-label="TikTok"]:hover {
    background-color: #010101;
    box-shadow: 0 6px 18px rgba(105, 201, 208, 0.5);
    color: #69c9d0;
}

.social-links a[aria-label="Contact"]:hover {
    background-color: #d44638;
    box-shadow: 0 6px 18px rgba(212, 70, 56, 0.5);
}

.podcast-link {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.podcast-link a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #2b2b2b;
    color: #e0e0e0;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.podcast-link a:hover {
    transform: translateY(-3px);
    background-color: #222222;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    color: #fff;
}

.podcast-link--balado a {
    background-color: #8c001e;
    box-shadow: 0 4px 15px rgba(140, 0, 30, 0.5);
}

.podcast-link--balado a:hover {
    background-color: #6a0016;
    box-shadow: 0 6px 20px rgba(140, 0, 30, 0.7);
}

#about {
    margin-top: 40px;
    background-color: #2b2b2b;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
}

#about h2 {
    font-size: 1.4em;
    margin: 0 0 12px 0;
    color: #e0e0e0;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

#about p {
    font-size: 1em;
    line-height: 1.8;
    color: #b0b0b0;
    margin: 0;
}

.accordion {
    margin-top: 20px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #3a3a3a;
}

.accordion summary {
    cursor: pointer;
    padding: 14px 18px;
    font-size: 1.05em;
    font-weight: bold;
    color: #e0e0e0;
    background-color: #3a3a3a;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background 0.2s ease;
}

.accordion summary::-webkit-details-marker { display: none; }

.accordion summary::after {
    content: '﹢';
    font-size: 1.3em;
    color: #aaa;
    transition: transform 0.2s ease;
}

.accordion[open] summary::after {
    content: '﹣';
}

.accordion summary:hover {
    background-color: #444;
}

.accordion ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #2b2b2b;
}

.accordion ul li {
    font-size: 1em;
    line-height: 1.8;
    color: #b0b0b0;
    padding: 10px 18px;
    border-bottom: 1px solid #3a3a3a;
}

.accordion ul li:last-child {
    border-bottom: none;
}

.accordion ul li strong {
    color: #e0e0e0;
}

.accordion ul li a {
    color: #b0b0b0;
    text-decoration: underline;
    font-weight: normal;
}

.accordion ul li a:hover {
    color: #fff;
}

#latest-podcast {
    margin-top: 40px;
    background-color: #8c001e;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(140, 0, 30, 0.5);
}

#latest-podcast h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
    color: #e0e0e0;
}

#podcast-player h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #fff;
}

#podcast-player p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #ffd0d8;
}

#podcast-player audio {
    border-radius: 5px;
}

footer {
    text-align: center;
    margin-top: 0;
    padding: 4px;
    font-size: 0.8em;
    color: #555;
}

footer a {
    color: #666;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}
