:root {
    --bg-base: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-glow: rgba(138, 43, 226, 0.4); /* Neon Purple Glow */
    --accent-glow-secondary: rgba(0, 212, 255, 0.3); /* Neon Blue Glow */
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-hover-border: rgba(255, 255, 255, 0.2);
    --whatsapp-color: #25D366;
    --youtube-color: #FF0000;
    --instagram-color: #E1306C;
    --linkedin-color: #0077B5;
    --spotify-color: #1DB954;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('/assets/bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -2;
    filter: blur(10px) brightness(0.5);
}

/* Gradient orb effect behind the main content */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    z-index: -1;
    filter: blur(100px);
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--accent-glow-secondary) 0%, transparent 60%);
    z-index: -1;
    filter: blur(100px);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 7rem 2rem 4rem; /* Increased top padding to clear fixed header */
}

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Typography */
.hero {
    text-align: center;
    margin-bottom: 4rem;
}

.profile-glow {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #8A2BE2, #00D4FF);
    padding: 3px;
    position: relative;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
}

.profile-glow::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--bg-base);
    background-image: url('assets/bg.png'); /* Could be replaced with a real headshot later */
    background-size: cover;
    background-position: center;
}

.title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.handle {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    background: linear-gradient(90deg, #8A2BE2, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0.2rem;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.bio {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}

/* Buttons */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s ease;
}

.primary-btn {
    background: var(--text-primary);
    color: var(--bg-base);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.whatsapp-btn {
    background: var(--whatsapp-color);
    color: white;
}

.whatsapp-btn:hover {
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.bento-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2rem;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.bento-card i {
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.bento-card span {
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

.bento-card:hover i {
    transform: scale(1.1);
}

.bento-card.youtube:hover i { color: var(--youtube-color); }
.bento-card.instagram:hover i { color: var(--instagram-color); }
.bento-card.linkedin:hover i { color: var(--linkedin-color); }
.bento-card.google:hover i { color: #4285F4; } /* generic google color */

/* Sections */
.featured-section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: border-color 0.3s ease;
}

.glass-card:hover {
    border-color: var(--card-hover-border);
}

/* Spotify */
.spotify-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.spotify-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--spotify-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spotify-link:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(29, 185, 84, 0.3);
}

/* Articles */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.article-card {
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.article-card:hover {
    transform: translateY(-3px);
}

.article-icon {
    font-size: 2rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 12px;
}

.article-content h4 {
    margin-bottom: 0.2rem;
}

.article-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--card-border);
    margin-top: 4rem;
}

footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.seo-text {
    font-size: 0.75rem;
    opacity: 0.5;
    margin-top: 0.5rem;
}

/* ===================== HERO PROFILE IMAGE ===================== */
.hero-profile-img {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #8A2BE2, #EC4899, #00D4FF);
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.5), 0 0 80px rgba(0, 212, 255, 0.2);
    animation: pulse-glow 3s ease-in-out infinite;
}

.hero-profile-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 40px rgba(138, 43, 226, 0.5), 0 0 80px rgba(0, 212, 255, 0.2); }
    50% { box-shadow: 0 0 60px rgba(138, 43, 226, 0.7), 0 0 120px rgba(0, 212, 255, 0.4); }
}

/* ===================== HERO STATS ===================== */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #8A2BE2, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===================== NAVIGATION ===================== */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.nav-scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
}

.nav-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    text-decoration: none;
    background: linear-gradient(90deg, #8A2BE2, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: var(--whatsapp-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

/* ===================== LANG SWITCHER ===================== */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switcher {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 0.3rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.lang-switcher:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.lang-btn i {
    font-size: 1.1rem;
    color: #00D4FF;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

/* ===================== FLOATING WHATSAPP ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsapp-bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsapp-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ===================== HERO BADGE ===================== */
.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

/* ===================== ABOUT SECTION ===================== */
.about-section {
    margin-bottom: 4rem;
}

.about-content {
    padding: 2.5rem;
}

.about-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-content strong {
    color: var(--text-primary);
}

/* ===================== SECTION SUBTITLE ===================== */
.section-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* ===================== DISCOGRAPHY ===================== */
.discography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.disc-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.disc-card:hover {
    transform: translateX(5px);
    border-color: var(--card-hover-border);
}

.disc-art {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    flex-shrink: 0;
}

.disc-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.disc-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.disc-play {
    margin-left: auto;
    font-size: 2rem;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.disc-card:hover .disc-play {
    color: var(--spotify-color);
}

/* ===================== SPOTIFY BUTTON HERO ===================== */
.spotify-btn-hero {
    background: var(--spotify-color);
    color: white;
}

.spotify-btn-hero:hover {
    box-shadow: 0 10px 20px rgba(29, 185, 84, 0.3);
}

/* ===================== BENTO CARD EXTRAS ===================== */
.bento-card small {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.bento-card.whatsapp:hover i { color: var(--whatsapp-color); }
.bento-card.shop:hover i { color: #F59E0B; }

/* ===================== ARTICLE FULL ===================== */
.article-full {
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.article-full h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.article-full p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.article-full p a {
    color: #8A2BE2;
    text-decoration: underline;
}

.article-full strong {
    color: var(--text-primary);
}

.article-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.article-tag {
    padding: 0.3rem 0.8rem;
    background: rgba(138, 43, 226, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-header time {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.article-full blockquote {
    border-left: 3px solid #8A2BE2;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-secondary);
    background: rgba(138, 43, 226, 0.05);
    border-radius: 0 12px 12px 0;
}

.article-cta {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* ===================== ARTICLE IMAGES ===================== */
.article-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
    border-radius: 16px;
    overflow: hidden;
}

.article-image-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.article-image-grid img:hover {
    transform: scale(1.03);
}

.article-image-single {
    margin: 1.5rem 0;
    border-radius: 16px;
    overflow: hidden;
}

.article-image-single img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.article-image-single img:hover {
    transform: scale(1.02);
}

/* ===================== ARTICLE CARD CONTENT ===================== */
.article-card-content h4 {
    margin-bottom: 0.2rem;
}

.article-card-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===================== PREVIEW GRID (EXPLORE MORE) ===================== */
.preview-grid-section {
    margin-bottom: 4rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.preview-card {
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-5px);
    border-color: var(--card-hover-border);
}

.preview-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.preview-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.preview-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===================== FOOTER ===================== */
.footer-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.seo-text {
    font-size: 0.65rem;
    opacity: 0.3;
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* ===================== SCROLL ANIMATIONS ===================== */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    .nav-links { display: none; }

    .title { font-size: 2.2rem; }

    .hero-actions { flex-direction: column; }

    .btn { width: 100%; justify-content: center; }

    .hero-stats { gap: 1.5rem; }

    .stat-number { font-size: 1.6rem; }

    .article-image-grid { grid-template-columns: 1fr; }

    .article-image-grid img { height: 220px; }

    .article-full { padding: 1.5rem; }

    .article-full h3 { font-size: 1.3rem; }

    .bento-grid { grid-template-columns: 1fr 1fr; }

    .discography-grid { grid-template-columns: 1fr; }

    .hero-profile-img { width: 140px; height: 140px; }

    .container { padding: 5rem 1.2rem 4rem; }
}

@media (max-width: 400px) {
    .bento-grid { grid-template-columns: 1fr; }
}
