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

:root {
    --bg: #0a0a0a;
    --text: #ffffff;
    --text-secondary: #999999;
    --glow: #a855f7;
    --glow-pink: #ec4899;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Floating Glow Orbs */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    pointer-events: none;
    z-index: 2;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #a855f7, transparent);
    top: 10%;
    left: 5%;
    animation: float 12s ease-in-out infinite, pulse 4s ease-in-out infinite;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #ec4899, transparent);
    bottom: 20%;
    right: 10%;
    animation: float 15s ease-in-out infinite reverse, pulse 5s ease-in-out infinite 1s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #a855f7, transparent);
    top: 50%;
    right: 5%;
    animation: float 18s ease-in-out infinite, pulse 6s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.3;
    }
}

/* Hero */
.hero {
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.4)), url('assets/banner.webp') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(168, 85, 247, 0.05) 0%, transparent 50%, rgba(236, 72, 153, 0.05) 100%);
    animation: gradientShift 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(45deg, rgba(168, 85, 247, 0.05) 0%, transparent 50%, rgba(236, 72, 153, 0.05) 100%);
    }
    50% {
        background: linear-gradient(45deg, rgba(236, 72, 153, 0.05) 0%, transparent 50%, rgba(168, 85, 247, 0.05) 100%);
    }
}

.hero-inner {
    text-align: center;
    z-index: 10;
    position: relative;
    animation: heroFade 1s ease-out;
}

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.name-container {
    margin-bottom: 2rem;
    padding-top: 3rem;
}

.hero-title {
    font-family: 'Caveat', cursive;
    font-size: clamp(3rem, 10vw, 8rem);
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    text-transform: lowercase;
    text-align: center;
    line-height: 1.2;
    color: var(--text);
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
    overflow: visible;
}

.hero-logo {
    max-width: 90vw;
    height: auto;
    margin-bottom: 1rem;
    display: block;
    animation: titleGlow 3s ease-in-out infinite;
}

.accent-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    margin: 0 auto;
    margin-top: 1.5rem;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: lowercase;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(168, 85, 247, 0.2);
    color: var(--text);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.6s ease;
}

.social-icons a:hover {
    background-color: #a855f7;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
}

/* Gallery */
.gallery {
    padding: 3rem 0;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.gallery-scroll {
    width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll 60s linear infinite;
    width: max-content;
    will-change: transform;
    transform: translateZ(0);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 0.75rem));
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    opacity: 0;
    transform: translateY(20px);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border: 1px solid rgba(168, 85, 247, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-placeholder {
    border-color: rgba(168, 85, 247, 0.4);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Spotify Section */
.spotify-section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.spotify-container {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spotify-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(168, 85, 247, 0.2);
}

/* Content Section */
.content {
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.bio-section {
    margin-bottom: 5rem;
    padding-bottom: 0;
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.links-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
}

.link-group h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.link-item {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(168, 85, 247, 0);
    transition: all 0.3s ease;
    position: relative;
}

.link-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    transition: width 0.3s ease;
}

.link-item:hover::before {
    width: 100%;
}

.link-item:hover {
    color: var(--text);
    border-bottom-color: rgba(168, 85, 247, 0.3);
}

/* Creative Effects */
@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.5));
    }
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.bio-text {
    animation: floatIn 0.8s ease forwards;
    margin-bottom: 2.5rem;
}

.bio-section .bio-text:nth-child(1) {
    animation-delay: 0.1s;
}

.bio-section .bio-text:nth-child(2) {
    animation-delay: 0.2s;
}

.bio-section .bio-text:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes linkSlide {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.link-item {
    animation: linkSlide 0.5s ease forwards;
}

.link-group:nth-child(1) .link-item:nth-child(2) {
    animation-delay: 0.1s;
}

.link-group:nth-child(1) .link-item:nth-child(3) {
    animation-delay: 0.2s;
}

.link-group:nth-child(1) .link-item:nth-child(4) {
    animation-delay: 0.3s;
}

.link-group:nth-child(2) .link-item:nth-child(2) {
    animation-delay: 0.35s;
}

.link-group:nth-child(2) .link-item:nth-child(3) {
    animation-delay: 0.45s;
}

/* Glitch effect on hover for title */
.hero-title:hover {
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.6));
}

/* Gallery items with blur reveal */
.gallery-item {
    position: relative;
    overflow: hidden;
}

/* Link group entrance */
.link-group {
    opacity: 0;
    animation: fadeInScale 0.6s ease forwards;
}

.link-group:nth-child(1) {
    animation-delay: 0s;
}

.link-group:nth-child(2) {
    animation-delay: 0.15s;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Footer */
.footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    padding: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 100dvh;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 4rem);
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .content {
        padding: 4rem 1.5rem;
    }

    .links-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bio-section {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100dvh;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .bio-text {
        font-size: 1rem;
    }

    .links-section {
        grid-template-columns: 1fr;
    }
}
