:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-primary: #bb00ff;
    /* Neon Purple */
    --accent-secondary: #00d4ff;
    /* Neon Blue */
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --transition-speed: 0.3s;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    cursor: none;
    /* Hide default cursor for custom one */
}

/* 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(--accent-secondary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-secondary);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
    opacity: 1;
}

/* Typography & Utilities */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

/* Navigation */
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary), var(--accent-secondary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    animation: logo-flow 3s linear infinite;
}

@keyframes logo-flow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-secondary);
    transition: width 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

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

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(187, 0, 255, 0.15) 0%, rgba(5, 5, 5, 1) 70%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    gap: 2rem;
}

/* Glitch Effect */
.glitch-text {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0;
    /* Handled by flex gap */
    position: relative;
    display: inline-block;
    color: var(--text-color);
}

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

.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 #00ffff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -1px 0 #ff00ff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(31px, 9999px, 94px, 0);
        transform: skew(0.85deg);
    }

    5% {
        clip: rect(70px, 9999px, 71px, 0);
        transform: skew(0.4deg);
    }

    10% {
        clip: rect(29px, 9999px, 83px, 0);
        transform: skew(0.04deg);
    }

    15% {
        clip: rect(16px, 9999px, 91px, 0);
        transform: skew(0.38deg);
    }

    20% {
        clip: rect(2px, 9999px, 23px, 0);
        transform: skew(0.68deg);
    }

    25% {
        clip: rect(35px, 9999px, 42px, 0);
        transform: skew(0.86deg);
    }

    30% {
        clip: rect(73px, 9999px, 99px, 0);
        transform: skew(0.39deg);
    }

    35% {
        clip: rect(56px, 9999px, 16px, 0);
        transform: skew(0.05deg);
    }

    40% {
        clip: rect(81px, 9999px, 7px, 0);
        transform: skew(0.6deg);
    }

    45% {
        clip: rect(54px, 9999px, 83px, 0);
        transform: skew(0.24deg);
    }

    50% {
        clip: rect(27px, 9999px, 8px, 0);
        transform: skew(0.81deg);
    }

    55% {
        clip: rect(61px, 9999px, 73px, 0);
        transform: skew(0.53deg);
    }

    60% {
        clip: rect(32px, 9999px, 83px, 0);
        transform: skew(0.97deg);
    }

    65% {
        clip: rect(65px, 9999px, 70px, 0);
        transform: skew(0.12deg);
    }

    70% {
        clip: rect(74px, 9999px, 9px, 0);
        transform: skew(0.1deg);
    }

    75% {
        clip: rect(40px, 9999px, 47px, 0);
        transform: skew(0.32deg);
    }

    80% {
        clip: rect(3px, 9999px, 25px, 0);
        transform: skew(0.12deg);
    }

    85% {
        clip: rect(73px, 9999px, 20px, 0);
        transform: skew(0.51deg);
    }

    90% {
        clip: rect(57px, 9999px, 41px, 0);
        transform: skew(0.84deg);
    }

    95% {
        clip: rect(5px, 9999px, 72px, 0);
        transform: skew(0.34deg);
    }

    100% {
        clip: rect(16px, 9999px, 29px, 0);
        transform: skew(0.63deg);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
        transform: skew(0.79deg);
    }

    5% {
        clip: rect(5px, 9999px, 60px, 0);
        transform: skew(0.19deg);
    }

    10% {
        clip: rect(49px, 9999px, 35px, 0);
        transform: skew(0.25deg);
    }

    15% {
        clip: rect(83px, 9999px, 19px, 0);
        transform: skew(0.62deg);
    }

    20% {
        clip: rect(62px, 9999px, 72px, 0);
        transform: skew(0.4deg);
    }

    25% {
        clip: rect(100px, 9999px, 39px, 0);
        transform: skew(0.34deg);
    }

    30% {
        clip: rect(18px, 9999px, 5px, 0);
        transform: skew(0.02deg);
    }

    35% {
        clip: rect(21px, 9999px, 31px, 0);
        transform: skew(0.14deg);
    }

    40% {
        clip: rect(82px, 9999px, 6px, 0);
        transform: skew(0.16deg);
    }

    45% {
        clip: rect(66px, 9999px, 50px, 0);
        transform: skew(0.55deg);
    }

    50% {
        clip: rect(32px, 9999px, 61px, 0);
        transform: skew(0.36deg);
    }

    55% {
        clip: rect(12px, 9999px, 76px, 0);
        transform: skew(0.32deg);
    }

    60% {
        clip: rect(69px, 9999px, 98px, 0);
        transform: skew(0.55deg);
    }

    65% {
        clip: rect(35px, 9999px, 7px, 0);
        transform: skew(0.12deg);
    }

    70% {
        clip: rect(30px, 9999px, 83px, 0);
        transform: skew(0.38deg);
    }

    75% {
        clip: rect(25px, 9999px, 17px, 0);
        transform: skew(0.59deg);
    }

    80% {
        clip: rect(13px, 9999px, 86px, 0);
        transform: skew(0.33deg);
    }

    85% {
        clip: rect(87px, 9999px, 14px, 0);
        transform: skew(0.9deg);
    }

    90% {
        clip: rect(36px, 9999px, 71px, 0);
        transform: skew(0.68deg);
    }

    95% {
        clip: rect(59px, 9999px, 7px, 0);
        transform: skew(0.64deg);
    }

    100% {
        clip: rect(54px, 9999px, 1px, 0);
        transform: skew(0.83deg);
    }
}

/* Hero Background Animation */
.hero-bg-anim {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(187, 0, 255, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    opacity: 0.6;
    animation: pulse-glow 8s infinite ease-in-out;
    z-index: 1;
    pointer-events: none;
    filter: blur(60px);
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.7;
    }
}

.hero-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
}

.hero-icon {
    font-size: 4rem;
    color: var(--accent-secondary);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.spin-anim {
    animation: spin-record 4s linear infinite;
}

@keyframes spin-record {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.primary-btn {
    background: linear-gradient(45deg, var(--accent-secondary), var(--accent-primary));
    color: white;
    box-shadow: 0 0 20px rgba(187, 0, 255, 0.4);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(187, 0, 255, 0.6);
}

.secondary-btn {
    background: transparent;
    border: 2px solid var(--accent-secondary);
    color: var(--accent-secondary);
}

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

/* Sections Common */
section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header .line {
    width: 60px;
    height: 4px;
    background: var(--accent-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about-section {
    background: #0a0a0a;
}

.bio-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Music Section */
.platform-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.platform-card {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 250px;
    flex-grow: 0;
}

.platform-card i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.platform-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}



.bmc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #FFDD00;
    color: #000;
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bmc-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 221, 0, 0.4);
    color: #000;
}

.platform-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    border-color: var(--accent-secondary);
}

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

/* Platform Colors */
.spotify i {
    color: #1DB954;
}

.apple i {
    color: #FA243C;
}

.amazon i {
    color: #00A8E1;
}

.soundcloud i {
    color: #FF5500;
}

.youtube-music i {
    color: #FF0000;
}

.deezer i {
    color: #FEAA2D;
}

.jiosaavn i {
    color: #2bc5b4;
}

.tidal i {
    color: #fff;
}

.platform-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: none;
}

.platform-card.disabled:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--glass-border);
}

.platform-card.disabled i {
    filter: grayscale(100%);
}

.apple i {
    color: #FA243C;
}

.amazon i {
    color: #00A8E1;
}

.soundcloud i {
    color: #FF5500;
}

/* Video Section */
.video-section {
    text-align: center;
}

.playlist-link-container {
    margin-bottom: 2rem;
}

.youtube-btn {
    background: #FF0000;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.youtube-btn:hover {
    background: #cc0000;
    color: white;
}

.video-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.video-wrapper {
    width: 100%;
    max-width: 350px;
    height: 200px;
    overflow: hidden;
    padding: 0;
    /* Remove padding for cleaner look */
    border-radius: 12px;
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

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

.social-links a {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-links a:hover {
    color: var(--accent-secondary);
}

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

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .glitch-text {
        font-size: 5rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .video-wrapper {
        height: 180px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .glitch-text {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
        /* Keeping hidden for now as per design */
    }

    .glass-nav {
        justify-content: center;
        padding: 1rem;
    }

    .hero-section {
        padding-top: 60px;
    }

    section {
        padding: 5rem 0;
        /* Reduce padding on mobile */
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
        /* Hide custom cursor on touch devices */
    }

    body {
        cursor: auto;
    }

    .video-card {
        max-width: 100%;
        width: 100%;
    }

    .video-wrapper {
        height: 220px;
        /* Slightly larger for visibility on vertical stacking */
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 2rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}