:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --primary-color: #00f3ff;
    --secondary-color: #bc13fe;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Zen Kaku Gothic New', 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    transition: transform 0.15s ease-out;
}

/* Fixed Background Avatar */
.fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Image set in HTML for cache busting */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -10;
    opacity: 0;
    transition: opacity 1s ease;
    filter: brightness(0.4) saturate(0.8);
}

.fixed-bg.visible {
    opacity: 1;
}

/* Typography */
h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.accent {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-btn {
    color: #000;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.primary-btn:hover {
    background: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.secondary-btn {
    color: #fff;
    background: transparent;
    border: 1px solid var(--text-color);
}

.secondary-btn:hover {
    background: var(--text-color);
    color: #000;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
    transition: var(--transition);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--text-color);
    letter-spacing: 2px;
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: var(--transition);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50% !important;
    /* Ensure center focus */
    filter: brightness(0.6);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--bg-color) 0%, rgba(5, 5, 5, 0.4) 50%, rgba(5, 5, 5, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

/* Glitch Effect */
.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch-text::before {
    color: #ff00ff;
    z-index: -1;
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch-text::after {
    color: #00f3ff;
    z-index: -2;
    animation: glitch-anim-2 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% {
        clip-path: inset(20% 0 80% 0);
        transform: translate(-2px, 0);
    }

    20% {
        clip-path: inset(60% 0 10% 0);
        transform: translate(2px, 0);
    }

    40% {
        clip-path: inset(40% 0 50% 0);
        transform: translate(-2px, 0);
    }

    60% {
        clip-path: inset(80% 0 5% 0);
        transform: translate(2px, 0);
    }

    80% {
        clip-path: inset(10% 0 40% 0);
        transform: translate(-2px, 0);
    }

    100% {
        clip-path: inset(30% 0 60% 0);
        transform: translate(2px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip-path: inset(10% 0 60% 0);
        transform: translate(2px, 0);
    }

    20% {
        clip-path: inset(30% 0 20% 0);
        transform: translate(-2px, 0);
    }

    40% {
        clip-path: inset(70% 0 10% 0);
        transform: translate(2px, 0);
    }

    60% {
        clip-path: inset(20% 0 50% 0);
        transform: translate(-2px, 0);
    }

    80% {
        clip-path: inset(60% 0 30% 0);
        transform: translate(2px, 0);
    }

    100% {
        clip-path: inset(80% 0 5% 0);
        transform: translate(-2px, 0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    z-index: 2;
}

.scroll-indicator span {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Glass Panel */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
}

.glass-panel:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
    transform: translateY(-5px);
}

/* Music Grid */
.music-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.platform-card {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    min-height: 150px;
    text-align: center;
}

.platform-card i {
    font-size: 3rem;
    margin-bottom: 15px;
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.platform-card:hover i {
    transform: scale(1.2);
}

.platform-card span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Video Section */
.video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.video-card {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.video-thumb {
    width: 100%;
    height: 250px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
}

.video-container {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

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

.video-icon {
    font-size: 4rem;
    color: var(--secondary-color);
}

.video-content h3 {
    margin-bottom: 10px;
}

.video-content p {
    margin-bottom: 20px;
    color: #aaa;
}

/* Footer */
.footer {
    padding: 50px 0;
    background: #000;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    /* Ensure z-index works */
    z-index: 10;
    /* Make sure it's clickable */
}

.social-links a:hover {
    color: var(--primary-color);
    transform: scale(1.2) rotate(5deg);
}

.copyright {
    color: #555;
    font-size: 0.9rem;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }

    h1 {
        font-size: 9vw;
        /* Responsive size to fit width */
        white-space: nowrap;
        /* Prevent wrapping */
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 101;
        margin-right: 10px;
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        /* Make it round and cute */
        backdrop-filter: blur(5px);
        box-shadow: 0 4px 15px rgba(0, 243, 255, 0.2);
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        /* Bouncy transition */
    }

    .hamburger:hover {
        transform: scale(1.1);
        background: rgba(255, 255, 255, 0.2);
    }

    .bar {
        width: 20px;
        height: 3px;
        /* Thicker bars */
        background-color: #fff;
        margin: 2px 0;
        /* Tighter spacing */
        border-radius: 10px;
        /* Rounded tips */
        transition: all 0.3s ease;
    }

    /* Active State Animation */
    .hamburger.active {
        transform: rotate(90deg);
        background: rgba(0, 243, 255, 0.2);
        border-color: var(--primary-color);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        width: 24px;
        /* Slightly longer when crossed */
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        width: 24px;
    }

    .nav {
        position: fixed;
        left: -100%;
        top: 0;
        gap: 0;
        flex-direction: column;
        background: rgba(20, 20, 35, 0.98);
        /* Deep soft blue-black */
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        /* Bouncy slide in */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 25px;
    }

    .nav-link {
        font-size: 1.2rem;
        display: block;
        padding: 15px 50px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 50px;
        /* Cute pill shape */
        color: #fff;
        width: 240px;
        /* Fixed width bubbles */
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        /* Bouncy hover */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        letter-spacing: 2px;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
        color: var(--primary-color);
        box-shadow: 0 8px 25px rgba(0, 243, 255, 0.4);
    }

    .nav-link::after {
        display: none;
        /* Hide underline in mobile */
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* Album Grid */
.album-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.album-card {
    flex: 1 1 400px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    text-align: left;
    min-width: 300px;
}

.album-cover {
    flex: 0 0 180px;
    width: 180px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.album-card:hover .album-cover img {
    transform: scale(1.1);
}

.album-info {
    flex: 1;
}

.album-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.album-genre {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.album-desc {
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .album-card {
        flex-direction: column;
        text-align: center;
    }

    .album-cover {
        flex: 0 0 250px;
        width: 250px;
        height: 250px;
    }
}

/* Sakura Effect */
.sakura-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    /* Behind cursor but front of content? Maybe front of everything or behind text? Let's put it high. */
    overflow: hidden;
}

.sakura {
    position: absolute;
    background-color: #ffb7c5;
    /* Pink color */
    border-radius: 100% 0 100% 0;
    /* Leaf/petal shape */
    animation: fall linear forwards;
    opacity: 0.8;
}

@keyframes fall {
    0% {
        top: -10%;
        transform: translateX(0) rotateX(0) rotateY(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    25% {
        transform: translateX(100px) rotateX(90deg) rotateY(45deg);
    }

    50% {
        transform: translateX(-100px) rotateX(180deg) rotateY(90deg);
    }

    75% {
        transform: translateX(100px) rotateX(270deg) rotateY(135deg);
    }

    100% {
        top: 110%;
        transform: translateX(0) rotateX(360deg) rotateY(180deg);
        opacity: 0;
    }
}