:root {
    --primary: #b77260; /* Album Art Accent */
    --bg-dark: #22232a; /* Album Art Dark */
    --text-light: #dabba0; /* Album Art Light */
    --text-muted: #d5cdc5;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: transparent;
    overflow-x: hidden;
    scroll-behavior: smooth;
    text-shadow: 0 0 6px rgba(255, 94, 77, 0.8), 0 0 15px rgba(218, 187, 160, 0.5);
}



@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes reveal-up {
      from { opacity: 0; transform: translateY(40px) scale(0.95); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    
    .music-section > .container,
    .video-section > .container {
      animation: reveal-up linear both;
      animation-timeline: view();
      animation-range: entry 5% cover 30%;
    }
  }
}



/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.nav-logo-container.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.nav-base {
    position: relative;
    z-index: 3;
}

.nav-ghost-1 {
    position: absolute;
    opacity: 0.5;
    filter: blur(2px);
    transform: translate(-1px, 1px);
    z-index: 2;
    transition: all 0.3s ease;
}

.nav-ghost-2 {
    position: absolute;
    opacity: 0.3;
    filter: blur(4px);
    transform: translate(2px, -1px);
    z-index: 1;
    transition: all 0.3s ease;
}

.nav-logo-container:hover .nav-ghost-1 {
    opacity: 0.7;
    filter: blur(3px);
    transform: translate(-3px, 2px);
}

.nav-logo-container:hover .nav-ghost-2 {
    opacity: 0.5;
    filter: blur(6px);
    transform: translate(3px, -2px);
}

nav a {
    color: transparent;
    text-shadow: 0 0 3px rgba(218, 187, 160, 0.9);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: transparent;
    text-shadow: 0 0 4px rgba(255, 94, 77, 1), 0 0 15px rgba(255, 94, 77, 0.8);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(40px) brightness(0.25);
    transform: scale(1.2);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
    animation: fadeUp 1s ease-out;
}

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

.hero-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    width: 100%;
    animation: containerVibrate 0.15s infinite;
}

.hero-logo {
    width: 100%;
    object-fit: contain;
}

.hero-base {
    position: relative;
    z-index: 3;
    opacity: 0.85;
}

.ghost-layer-1 {
    position: absolute;
    z-index: 2;
    animation: ghostVibrate1 0.15s infinite alternate;
}

.ghost-layer-2 {
    position: absolute;
    z-index: 1;
    animation: ghostVibrate2 0.2s infinite alternate;
}

@keyframes containerVibrate {
    0% { transform: translate(0, 0); }
    20% { transform: translate(-2px, 1px); }
    40% { transform: translate(2px, -3px); }
    60% { transform: translate(-1px, -2px); }
    80% { transform: translate(3px, 2px); }
    100% { transform: translate(-2px, -1px); }
}



@keyframes ghostVibrate1 {
    0% { transform: translate(-3px, 3px); filter: blur(3px); opacity: 0.6; }
    50% { transform: translate(4px, -1px); filter: blur(5px); opacity: 0.3; }
    100% { transform: translate(-1px, -4px); filter: blur(4px); opacity: 0.5; }
}

@keyframes ghostVibrate2 {
    0% { transform: translate(3px, -2px); filter: blur(4px); opacity: 0.4; }
    50% { transform: translate(-4px, 4px); filter: blur(2px); opacity: 0.7; }
    100% { transform: translate(2px, 2px); filter: blur(5px); opacity: 0.5; }
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.subtitle {
    font-size: 1.2rem;
    color: transparent;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.6), 0 0 10px rgba(255, 255, 255, 0.3);
    margin-bottom: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: transparent !important;
    text-shadow: 0 0 3px rgba(255, 255, 255, 1), 0 0 12px rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::after {
    transform: translateX(100%);
}

.primary-btn {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 30px rgba(183, 114, 96, 0.3);
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(183, 114, 96, 0.5);
}

.secondary-btn {
    background: #1DB954;
    box-shadow: 0 10px 30px rgba(29, 185, 84, 0.3);
}

.secondary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(29, 185, 84, 0.5);
}

/* Music Section */
.music-section {
    padding: 120px 5%;
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #111111 100%);
}

.container {
    width: 100%;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -1px;
    background: linear-gradient(to right, #dabba0, #ff5e4d, #b77260);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 8px rgba(255, 94, 77, 0.8)) drop-shadow(0 0 25px rgba(255, 94, 77, 0.4));
    will-change: filter;
}

.album-showcase {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 5rem;
    align-items: center;
}

.album-art-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
}

.album-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: blur(3px);
}

.album-art:hover {
    transform: scale(1.05) rotate(-2deg);
    filter: blur(0px);
}

.glow-effect {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.3;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.album-art-container:hover .glow-effect {
    opacity: 0.6;
}

.tracklist-container h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.platform-links-container h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.streaming-text {
    font-size: 1.1rem;
    color: transparent;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.album-btn-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.album-btn {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 1.05rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-btn .icon-svg {
    height: 1.2rem;
    width: 1.2rem;
    margin-right: 12px;
    color: #fff !important;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
}

.youtube-btn {
    background: #FF0000;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.youtube-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.5);
}


/* Video Section */
.video-section {
    padding: 100px 5%;
    position: relative;
    background: #111111;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-section {
    padding: 6rem 5%;
    background: #111111;
    position: relative;
    border-top: 1px solid var(--glass-border);
}

.bio-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.bio-content p {
    margin-bottom: 2rem;
    text-align: justify;
    -webkit-hyphens: auto;
    hyphens: auto;
}

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

.bio-content strong, .bio-content em {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.bio-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    transition: text-decoration-color 0.3s ease;
}

.bio-link:hover {
    text-decoration-color: #fff;
}

@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes fadeUpReveal {
      from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .fade-in {
      animation: fadeUpReveal auto ease-out both;
      animation-timeline: view();
      animation-range: entry 5% cover 25%;
    }
  }
}

footer {
    text-align: center;
    padding: 4rem 2rem;
    background: #1a1a20;
    border-top: 1px solid var(--glass-border);
    text-decoration: none;
    color: transparent;
    text-shadow: 0 0 3px rgba(218, 187, 160, 0.9);
    font-size: 0.9rem;
}

.copyright-link {
    color: transparent;
    text-shadow: 0 0 2px rgba(49, 105, 63, 1), 0 0 8px rgba(74, 222, 128, 0.8), 0 0 15px rgba(74, 222, 128, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
}

.copyright-link:hover {
    text-shadow: 0 0 3px rgba(49, 105, 63, 1), 0 0 12px rgba(74, 222, 128, 1), 0 0 25px rgba(74, 222, 128, 0.9);
}

.seo-credits {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 0.75rem;
    line-height: 1.6;
    color: transparent;
    text-shadow: 0 0 4px rgba(218, 187, 160, 0.5);
}

.seo-credits a {
    color: transparent;
    text-shadow: 0 0 3px rgba(218, 187, 160, 0.8);
    text-decoration: underline;
    text-decoration-color: rgba(218, 187, 160, 0.3);
}

.seo-credits a:hover {
    text-shadow: 0 0 2px rgba(218, 187, 160, 1), 0 0 8px rgba(218, 187, 160, 0.6);
}

.seo-credits p {
    margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
    .album-showcase {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 3rem;
    }
    .hero-logo {
        width: 100%;
    }
    .hero-content {
        padding-top: 60px;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 1rem 5%;
        flex-direction: column;
        gap: 15px;
    }
    nav {
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: nowrap;
    }
    nav a {
        margin: 0;
        font-size: 0.8rem;
    }
    .subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    .section-title {
        font-size: clamp(12px, 4.5vw, 2rem);
        white-space: nowrap;
    }
    .album-art-container {
        max-width: 100%;
    }
    .hero-content {
        padding-top: 100px;
    }
}
