/* ========================================
   DJ ABHI-Maheshtala - Design System
   ======================================== */

/* ---- CSS Variables ---- */
:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a2e;
    --accent-cyan: #00f0ff;
    --accent-pink: #ff00aa;
    --accent-purple: #8b5cf6;
    --accent-gold: #ffd700;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #666680;

    /* Gradients */
    --gradient-main: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
    --gradient-purple: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    --gradient-dark: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);

    /* Shadows */
    --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.3);
    --glow-pink: 0 0 20px rgba(255, 0, 170, 0.5), 0 0 40px rgba(255, 0, 170, 0.3);
    --glow-purple: 0 0 20px rgba(139, 92, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);

    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50%;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
}

/* ---- Container ---- */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
}

/* ---- Text Effects ---- */

/* DJ ABHI - Cyan to Pink Gradient */
.gradient-text {
    background: linear-gradient(135deg, #00f0ff 0%, #00c6ff 30%, #ff00aa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* MAHESHTALA - Clean White with subtle glow */
.neon-text {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    text-shadow:
        0 0 20px rgba(255, 0, 170, 0.5),
        0 0 40px rgba(0, 240, 255, 0.3);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ---- Section Styling ---- */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    display: inline-block;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-main);
    color: var(--bg-primary);
    box-shadow: var(--glow-cyan);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.7), 0 0 60px rgba(0, 240, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-cyan);
}

.btn-secondary:hover {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    box-shadow: var(--glow-cyan);
}

.btn-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.btn-icon:hover {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
    transform: scale(1.1);
}

/* ---- Glassmorphism Cards ---- */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition-normal);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ---- Neon Text ---- */
.neon-text {
    text-shadow:
        0 0 10px var(--accent-cyan),
        0 0 20px var(--accent-cyan),
        0 0 40px var(--accent-cyan),
        0 0 80px var(--accent-cyan);
}

.neon-text-pink {
    text-shadow:
        0 0 10px var(--accent-pink),
        0 0 20px var(--accent-pink),
        0 0 40px var(--accent-pink),
        0 0 80px var(--accent-pink);
}

/* ---- Gradient Border ---- */
.gradient-border {
    position: relative;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-main);
    border-radius: inherit;
    z-index: -1;
}

/* ---- Navigation ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    border: 2px solid var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

.nav-logo span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
}

/* ---- Hero Section ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg video,
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) brightness(0.4) saturate(1.3);
    transform: scale(1.05);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(0, 240, 255, 0.05) 0%, transparent 50%),
        linear-gradient(180deg,
            rgba(10, 10, 15, 0.6) 0%,
            rgba(10, 10, 15, 0.4) 30%,
            rgba(10, 10, 15, 0.5) 70%,
            rgba(10, 10, 15, 0.95) 100%);
    z-index: -1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 240, 255, 0.03) 0%, transparent 50%),
        linear-gradient(225deg, rgba(255, 0, 170, 0.03) 0%, transparent 50%);
    animation: overlayPulse 5s ease-in-out infinite alternate;
}

@keyframes overlayPulse {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.hero-content {
    text-align: center;
    padding: 0 20px;
    z-index: 1;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-title .gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-top: 80px;
    animation: fadeInUp 1s ease 1s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ---- Scroll Indicator ---- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent-cyan);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

/* ---- Footer ---- */
.footer {
    background: var(--bg-secondary);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-main);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    border: 2px solid var(--accent-cyan);
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: var(--glow-cyan);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ---- Preloader ---- */
.preloader {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 240, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 170, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.1) 0%, transparent 30%),
        linear-gradient(180deg, #0a0a0f 0%, #12121a 50%, #0a0a0f 100%);
    background-size: 200% 200%;
    animation: cinematicBg 8s ease-in-out infinite;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
}

.preloader::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: floatingOrb 6s ease-in-out infinite;
}

.preloader::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 0, 170, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: floatingOrb 6s ease-in-out infinite reverse;
    animation-delay: -3s;
}

@keyframes cinematicBg {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes floatingOrb {

    0%,
    100% {
        transform: translate(-100px, -100px) scale(1);
        opacity: 0.5;
    }

    25% {
        transform: translate(100px, -50px) scale(1.2);
        opacity: 0.8;
    }

    50% {
        transform: translate(50px, 100px) scale(0.8);
        opacity: 0.6;
    }

    75% {
        transform: translate(-50px, 50px) scale(1.1);
        opacity: 0.7;
    }
}

.preloader-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--accent-cyan);
    box-shadow:
        0 0 30px rgba(0, 240, 255, 0.5),
        0 0 60px rgba(0, 240, 255, 0.3),
        0 0 90px rgba(255, 0, 170, 0.2);
    animation: logoPulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 0 30px rgba(0, 240, 255, 0.5),
            0 0 60px rgba(0, 240, 255, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow:
            0 0 50px rgba(0, 240, 255, 0.7),
            0 0 100px rgba(255, 0, 170, 0.4);
    }
}



/* ---- Particles Background ---- */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}



/* ---- Keyframes ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-20px);
    }

    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        top: 10px;
    }

    100% {
        opacity: 0;
        top: 30px;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px var(--accent-cyan);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px var(--accent-cyan), 0 0 60px var(--accent-pink);
    }
}



@keyframes pageSlide {
    0% {
        transform: scaleY(0);
        transform-origin: bottom;
    }

    50% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    51% {
        transform-origin: top;
    }

    100% {
        transform: scaleY(0);
        transform-origin: top;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px var(--accent-cyan));
    }

    50% {
        filter: drop-shadow(0 0 30px var(--accent-pink));
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ---- Responsive Design ---- */
/* ---- Responsive Design ---- */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    h1 {
        font-size: clamp(2rem, 5vw, 4rem);
    }

    .hero-stats {
        gap: 40px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(18, 18, 26, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: var(--transition-normal);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .cursor,
    .cursor-dot {
        display: none;
    }

    /* Founder Text Mobile */
    .hero-founder-text {
        font-size: 1.1rem !important;
        margin-top: 0 !important;
        letter-spacing: 1px !important;
    }

    /* Spotlight Section Mobile */
    .spotlight-card {
        padding: 30px !important;
    }

    .spotlight-title {
        font-size: 2rem !important;
    }

    .platform-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .platform-card {
        padding: 20px !important;
    }

    .platform-card svg {
        width: 48px !important;
        height: 48px !important;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 15px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .footer-content {
        gap: 30px;
    }

    .platform-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ---- New Utility Classes for Consistency ---- */
.hero-founder-text {
    font-size: 1.5rem;
    margin-top: -10px;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-color);
}

.spotlight-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    border: 1px solid rgba(0, 242, 254, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.spotlight-title {
    font-size: 3rem;
    margin: 15px 0 25px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.platform-card {
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.link-highlight {
    color: var(--accent-cyan);
    text-decoration: none;
    position: relative;
    z-index: 10;
}

/* ========================================
   COOL ANIMATIONS FOR ALL PAGES
   ======================================== */

/* ---- Scroll Reveal Animations ---- */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-left"] {
    opacity: 0;
    transform: translateX(-60px);
}

[data-animate="fade-left"].animated {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="fade-right"] {
    opacity: 0;
    transform: translateX(60px);
}

[data-animate="fade-right"].animated {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="zoom-in"] {
    opacity: 0;
    transform: scale(0.8);
}

[data-animate="zoom-in"].animated {
    opacity: 1;
    transform: scale(1);
}

[data-animate="flip"] {
    opacity: 0;
    transform: perspective(600px) rotateX(-30deg);
}

[data-animate="flip"].animated {
    opacity: 1;
    transform: perspective(600px) rotateX(0);
}

/* ---- Enhanced Card Hover Effects ---- */
.glass-card,
.skill-card,
.video-card,
.track-card,
.gallery-item,
.info-card {
    position: relative;
    overflow: hidden;
}

.glass-card::before,
.skill-card::before,
.video-card::before,
.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transition: 0.6s;
}

.glass-card:hover::before,
.skill-card:hover::before,
.video-card:hover::before,
.track-card:hover::before {
    left: 100%;
}



/* ---- Floating Animation for Elements ---- */
.float-animation {
    animation: gentleFloat 4s ease-in-out infinite;
}

@keyframes gentleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ---- Shine Effect on Buttons ---- */
.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: 0.6s;
}

.btn:hover::after {
    transform: rotate(45deg) translateX(100%);
}

/* ---- Text Gradient Animation ---- */
.animated-gradient-text {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink), var(--accent-purple), var(--accent-cyan));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 4s ease infinite;
}

@keyframes gradientText {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ---- Pulsing Glow Effect ---- */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 240, 255, 0.8), 0 0 60px rgba(255, 0, 170, 0.4);
    }
}

/* ---- Typing Cursor Effect ---- */
.typing-cursor::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--accent-cyan);
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* ---- Section Title Animation ---- */
.section-title h2 {
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-main);
    transition: width 0.5s ease;
}

.section-title h2.animated::after {
    width: 80px;
}

/* ---- Stagger Animation Delays ---- */
[data-delay="100"] {
    transition-delay: 0.1s;
}

[data-delay="200"] {
    transition-delay: 0.2s;
}

[data-delay="300"] {
    transition-delay: 0.3s;
}

[data-delay="400"] {
    transition-delay: 0.4s;
}

[data-delay="500"] {
    transition-delay: 0.5s;
}

/* ---- Custom Cursor Styling ---- */
.cursor,
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-cyan);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-cyan);
}

/* Hover State */
.cursor.cursor-hover {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 240, 255, 0.1);
    border-color: transparent;
    backdrop-filter: blur(2px);
}

/* Click Animation Class */
.cursor.cursor-click {
    animation: cursorClick 0.5s forwards;
}

@keyframes cursorClick {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(0.5);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

[data-delay="600"] {
    transition-delay: 0.6s;
}

[data-delay="700"] {
    transition-delay: 0.7s;
}

[data-delay="800"] {
    transition-delay: 0.8s;
}

/* ---- Parallax Scroll Effect ---- */
.parallax {
    transform: translateZ(0);
    will-change: transform;
}

/* ---- Icon Bounce on Hover ---- */
.skill-icon {
    transition: transform 0.3s ease;
}

.skill-card:hover .skill-icon {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-5px);
    }
}

/* ---- Stats Counter Glow ---- */
.stat-number {
    transition: text-shadow 0.3s ease;
}

.stat-item:hover .stat-number {
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
}

/* ---- Footer Social Hover ---- */
.social-link {
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.2);
}

/* ========================================
   WORLD-CLASS VISUAL UPGRADES
   ======================================== */

/* ---- Scroll Progress Bar ---- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-main);
    z-index: 10000;
    transition: width 0.05s linear;
    box-shadow: 0 0 10px var(--accent-cyan);
}

/* ---- Page Transition Overlay ---- */
.page-transition {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

/* ---- Floating Particles ---- */
.particles-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-cyan);
    border-radius: 50%;
    opacity: 0.5;
    animation: floatParticle 20s infinite linear;
}

.particle:nth-child(even) {
    background: var(--accent-pink);
    animation-duration: 25s;
}

.particle:nth-child(3n) {
    width: 6px;
    height: 6px;
    opacity: 0.3;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ---- 3D Tilt Effect ---- */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
}

/* ---- Typing Animation ---- */
.typing-container {
    display: inline-flex;
    overflow: hidden;
}

.typing-text {
    display: inline-block;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* ---- Enhanced Preloader ---- */
.preloader-bars {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 50px;
}

.preloader-bar {
    width: 8px;
    background: var(--gradient-main);
    border-radius: 4px;
    animation: bar-bounce 1s ease-in-out infinite;
}

.preloader-bar:nth-child(1) {
    height: 20px;
    animation-delay: 0s;
}

.preloader-bar:nth-child(2) {
    height: 35px;
    animation-delay: 0.1s;
}

.preloader-bar:nth-child(3) {
    height: 25px;
    animation-delay: 0.2s;
}

.preloader-bar:nth-child(4) {
    height: 40px;
    animation-delay: 0.3s;
}

.preloader-bar:nth-child(5) {
    height: 30px;
    animation-delay: 0.4s;
}

@keyframes bar-bounce {

    0%,
    100% {
        transform: scaleY(0.5);
    }

    50% {
        transform: scaleY(1.2);
    }
}

/* ---- Lazy Loading ---- */
.lazy-load {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* ---- Animated Gradient Text ---- */
.animated-gradient {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink), var(--accent-purple), var(--accent-cyan));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ======== IMPRESSIVE VISUAL ENHANCEMENTS ======== */

/* ---- Animated Glowing Borders ---- */
.glow-border {
    position: relative;
    overflow: hidden;
}

.glow-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-pink), var(--accent-purple), var(--accent-cyan));
    background-size: 400% 400%;
    border-radius: inherit;
    z-index: -1;
    animation: border-glow 3s ease infinite;
}

.glow-border::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--bg-secondary);
    border-radius: inherit;
    z-index: -1;
}

@keyframes border-glow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ---- Text Shimmer Effect ---- */
.shimmer-text {
    background: linear-gradient(90deg,
            var(--text-primary) 0%,
            var(--accent-cyan) 25%,
            var(--text-primary) 50%,
            var(--accent-pink) 75%,
            var(--text-primary) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ---- Sound Wave Visualizer ---- */
.sound-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 50px;
}

.sound-bar {
    width: 4px;
    height: 20px;
    background: var(--gradient-main);
    border-radius: 2px;
    animation: sound-wave-anim 0.6s ease-in-out infinite alternate;
}

.sound-bar:nth-child(1) {
    animation-delay: 0s;
    height: 15px;
}

.sound-bar:nth-child(2) {
    animation-delay: 0.1s;
    height: 25px;
}

.sound-bar:nth-child(3) {
    animation-delay: 0.2s;
    height: 35px;
}

.sound-bar:nth-child(4) {
    animation-delay: 0.3s;
    height: 45px;
}

.sound-bar:nth-child(5) {
    animation-delay: 0.4s;
    height: 35px;
}

.sound-bar:nth-child(6) {
    animation-delay: 0.5s;
    height: 25px;
}

.sound-bar:nth-child(7) {
    animation-delay: 0.6s;
    height: 15px;
}

@keyframes sound-wave-anim {
    0% {
        transform: scaleY(0.5);
        opacity: 0.7;
    }

    100% {
        transform: scaleY(1.5);
        opacity: 1;
    }
}

/* ---- Ripple Effect on Buttons ---- */
.btn {
    position: relative;
    overflow: hidden;
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-effect 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ---- Pulsing Glow CTA ---- */
.btn-primary {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 5px var(--accent-cyan), 0 0 10px var(--accent-cyan), 0 0 20px rgba(0, 240, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 10px var(--accent-pink), 0 0 20px var(--accent-pink), 0 0 40px rgba(255, 0, 170, 0.4);
    }
}

/* ---- Floating Music Notes ---- */
.music-notes-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.music-note {
    position: absolute;
    font-size: 24px;
    opacity: 0;
    animation: float-note 8s ease-in-out infinite;
}

@keyframes float-note {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ---- Enhanced Card Hover ---- */
.glass-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 240, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ---- Animated Background Gradient ---- */
.animated-bg {
    background: linear-gradient(-45deg, var(--bg-primary), var(--bg-secondary), var(--bg-tertiary), #1a0a2e);
    background-size: 400% 400%;
    animation: gradient-bg 15s ease infinite;
}

@keyframes gradient-bg {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ---- Neon Text Glow ---- */
.neon-glow {
    text-shadow:
        0 0 5px var(--accent-cyan),
        0 0 10px var(--accent-cyan),
        0 0 20px var(--accent-cyan),
        0 0 40px var(--accent-cyan);
    animation: neon-flicker 2s ease-in-out infinite alternate;
}

@keyframes neon-flicker {

    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        text-shadow:
            0 0 5px var(--accent-cyan),
            0 0 10px var(--accent-cyan),
            0 0 20px var(--accent-cyan),
            0 0 40px var(--accent-cyan);
    }

    20%,
    24%,
    55% {
        text-shadow: none;
    }
}

/* ---- Reveal Animation on Scroll ---- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Stagger Animation ---- */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
}

.stagger-item.visible {
    animation: stagger-in 0.6s ease forwards;
}

@keyframes stagger-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Morphing Blob Background ---- */
.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 0, 170, 0.1));
    border-radius: 50%;
    filter: blur(80px);
    animation: blob-morph 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes blob-morph {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(50px, 50px) rotate(180deg);
    }
}

/* ---- Electric Border Effect ---- */
.electric-border {
    position: relative;
}

.electric-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: electric-pulse 2s ease-in-out infinite;
}

@keyframes electric-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ---- Hover Lift Effect ---- */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ---- Shine Effect on Hover ---- */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.shine-effect:hover::before {
    transform: translateX(100%) rotate(45deg);
}

/* ======== ADVANCED FEATURES ======== */

/* ---- VHS/Retro Glitch Effect ---- */
.glitch {
    position: relative;
    animation: glitch-skew 1s infinite linear alternate-reverse;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent-cyan);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--accent-pink);
    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.34deg);
    }

    10% {
        clip: rect(29px, 9999px, 24px, 0);
        transform: skew(0.67deg);
    }

    15% {
        clip: rect(54px, 9999px, 36px, 0);
        transform: skew(0.23deg);
    }

    20% {
        clip: rect(23px, 9999px, 99px, 0);
        transform: skew(0.82deg);
    }

    25% {
        clip: rect(58px, 9999px, 27px, 0);
        transform: skew(0.13deg);
    }

    30% {
        clip: rect(13px, 9999px, 68px, 0);
        transform: skew(0.91deg);
    }

    35% {
        clip: rect(7px, 9999px, 84px, 0);
        transform: skew(0.45deg);
    }

    40% {
        clip: rect(92px, 9999px, 52px, 0);
        transform: skew(0.78deg);
    }

    45% {
        clip: rect(45px, 9999px, 15px, 0);
        transform: skew(0.56deg);
    }

    50% {
        clip: rect(76px, 9999px, 41px, 0);
        transform: skew(0.34deg);
    }

    55% {
        clip: rect(18px, 9999px, 89px, 0);
        transform: skew(0.92deg);
    }

    60% {
        clip: rect(62px, 9999px, 33px, 0);
        transform: skew(0.21deg);
    }

    65% {
        clip: rect(39px, 9999px, 77px, 0);
        transform: skew(0.65deg);
    }

    70% {
        clip: rect(85px, 9999px, 48px, 0);
        transform: skew(0.43deg);
    }

    75% {
        clip: rect(51px, 9999px, 19px, 0);
        transform: skew(0.87deg);
    }

    80% {
        clip: rect(27px, 9999px, 61px, 0);
        transform: skew(0.12deg);
    }

    85% {
        clip: rect(73px, 9999px, 42px, 0);
        transform: skew(0.76deg);
    }

    90% {
        clip: rect(36px, 9999px, 95px, 0);
        transform: skew(0.54deg);
    }

    95% {
        clip: rect(64px, 9999px, 28px, 0);
        transform: skew(0.32deg);
    }

    100% {
        clip: rect(48px, 9999px, 73px, 0);
        transform: skew(0.98deg);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(65px, 9999px, 42px, 0);
        transform: skew(0.28deg);
    }

    5% {
        clip: rect(12px, 9999px, 87px, 0);
        transform: skew(0.75deg);
    }

    10% {
        clip: rect(89px, 9999px, 21px, 0);
        transform: skew(0.41deg);
    }

    15% {
        clip: rect(34px, 9999px, 56px, 0);
        transform: skew(0.93deg);
    }

    20% {
        clip: rect(78px, 9999px, 15px, 0);
        transform: skew(0.18deg);
    }

    25% {
        clip: rect(43px, 9999px, 91px, 0);
        transform: skew(0.62deg);
    }

    30% {
        clip: rect(67px, 9999px, 38px, 0);
        transform: skew(0.84deg);
    }

    35% {
        clip: rect(19px, 9999px, 72px, 0);
        transform: skew(0.36deg);
    }

    40% {
        clip: rect(56px, 9999px, 49px, 0);
        transform: skew(0.71deg);
    }

    45% {
        clip: rect(81px, 9999px, 26px, 0);
        transform: skew(0.52deg);
    }

    50% {
        clip: rect(28px, 9999px, 95px, 0);
        transform: skew(0.19deg);
    }

    55% {
        clip: rect(74px, 9999px, 33px, 0);
        transform: skew(0.88deg);
    }

    60% {
        clip: rect(41px, 9999px, 68px, 0);
        transform: skew(0.47deg);
    }

    65% {
        clip: rect(93px, 9999px, 17px, 0);
        transform: skew(0.73deg);
    }

    70% {
        clip: rect(52px, 9999px, 84px, 0);
        transform: skew(0.25deg);
    }

    75% {
        clip: rect(16px, 9999px, 59px, 0);
        transform: skew(0.96deg);
    }

    80% {
        clip: rect(87px, 9999px, 44px, 0);
        transform: skew(0.38deg);
    }

    85% {
        clip: rect(31px, 9999px, 76px, 0);
        transform: skew(0.81deg);
    }

    90% {
        clip: rect(69px, 9999px, 23px, 0);
        transform: skew(0.14deg);
    }

    95% {
        clip: rect(47px, 9999px, 92px, 0);
        transform: skew(0.67deg);
    }

    100% {
        clip: rect(83px, 9999px, 35px, 0);
        transform: skew(0.49deg);
    }
}

@keyframes glitch-skew {
    0% {
        transform: skew(0deg);
    }

    10% {
        transform: skew(2deg);
    }

    20% {
        transform: skew(-1deg);
    }

    30% {
        transform: skew(1.5deg);
    }

    40% {
        transform: skew(-0.5deg);
    }

    50% {
        transform: skew(1deg);
    }

    60% {
        transform: skew(-1.5deg);
    }

    70% {
        transform: skew(0.5deg);
    }

    80% {
        transform: skew(-2deg);
    }

    90% {
        transform: skew(1deg);
    }

    100% {
        transform: skew(0deg);
    }
}

/* ---- Mouse Trail Effect ---- */
.mouse-trail {
    position: fixed;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gradient-main);
    pointer-events: none;
    z-index: 9998;
    opacity: 0.7;
    filter: blur(2px);
    transition: transform 0.1s ease;
}

/* ---- Dark/Light Mode Toggle ---- */
.theme-toggle {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
    background: var(--bg-tertiary);
    border: 2px solid var(--accent-cyan);
    border-radius: 50px;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: var(--accent-cyan);
    color: var(--bg-primary);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

/* ======== PREMIUM LIGHT MODE ======== */

/* Core palette: Electric Violet + Sunset Coral — bold, premium, DJ-energy */
body.light-mode {
    --bg-primary: #F7F5F0;
    --bg-secondary: #FFFFFF;
    --bg-tertiary: #EFECF5;
    --text-primary: #1B1340;
    --text-secondary: #524B6B;
    --text-muted: #8E85A5;
    --accent-cyan: #6C3CE9;
    --accent-pink: #FF6B35;
    --accent-purple: #8B5CF6;
    --accent-gold: #F5A623;
    --gradient-main: linear-gradient(135deg, #6C3CE9, #FF6B35);
    --gradient-purple: linear-gradient(135deg, #8B5CF6, #FF6B35);
    --glow-cyan: 0 4px 24px rgba(108, 60, 233, 0.3), 0 0 48px rgba(108, 60, 233, 0.12);
    --glow-pink: 0 4px 24px rgba(255, 107, 53, 0.3), 0 0 48px rgba(255, 107, 53, 0.12);
}

/* ---- Background & Body ---- */
body.light-mode {
    background:
        linear-gradient(170deg,
            #F7F5F0 0%,
            #EFECF5 35%,
            #F0EBF8 55%,
            #FDF5F0 80%,
            #F7F5F0 100%);
    background-attachment: fixed;
}

/* ---- Navbar ---- */
body.light-mode .navbar {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

body.light-mode .navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(108, 60, 233, 0.15) 20%,
            rgba(139, 92, 246, 0.2) 50%,
            rgba(255, 107, 53, 0.15) 80%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.light-mode .navbar.scrolled {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(32px) saturate(1.8);
    -webkit-backdrop-filter: blur(32px) saturate(1.8);
    border-bottom: 1px solid rgba(108, 60, 233, 0.06);
    box-shadow:
        0 4px 24px rgba(108, 60, 233, 0.05),
        0 1px 3px rgba(27, 19, 64, 0.04),
        0 0 0 0.5px rgba(108, 60, 233, 0.04);
}

body.light-mode .navbar.scrolled::after {
    opacity: 1;
}

/* Nav links — pill hover + animated underline */
body.light-mode .nav-link {
    color: #6B6385;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 6px 14px;
    border-radius: 8px;
    position: relative;
}

body.light-mode .nav-link::after {
    background: linear-gradient(135deg, #6C3CE9, #FF6B35);
    height: 2px;
    bottom: 0;
    border-radius: 2px;
}

body.light-mode .nav-link:hover {
    color: #6C3CE9;
    background: rgba(108, 60, 233, 0.05);
}

body.light-mode .nav-link.active {
    color: #6C3CE9;
    background: rgba(108, 60, 233, 0.07);
    font-weight: 600;
}

/* "Book Now" link — make it a CTA pill */
body.light-mode .nav-menu li:last-child .nav-link {
    background: linear-gradient(135deg, #6C3CE9 0%, #8B5CF6 45%, #FF6B35 100%);
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 14px rgba(108, 60, 233, 0.25);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

body.light-mode .nav-menu li:last-child .nav-link::after {
    display: none;
}

body.light-mode .nav-menu li:last-child .nav-link:hover {
    box-shadow: 0 6px 24px rgba(108, 60, 233, 0.35), 0 2px 8px rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
    filter: brightness(1.08);
    background: linear-gradient(135deg, #6C3CE9 0%, #8B5CF6 45%, #FF6B35 100%);
}

/* Hamburger toggle bars */
body.light-mode .nav-toggle span {
    background: #524B6B;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

body.light-mode .nav-toggle:hover span {
    background: #6C3CE9;
}

body.light-mode .nav-toggle.active span {
    background: #6C3CE9;
}

/* Logo styling */
body.light-mode .nav-logo span {
    background: linear-gradient(135deg, #6C3CE9, #8B5CF6, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-mode .nav-logo img {
    border: 2px solid rgba(108, 60, 233, 0.4);
    box-shadow:
        0 0 0 3px rgba(108, 60, 233, 0.08),
        0 2px 12px rgba(108, 60, 233, 0.15);
    transition: all 0.35s ease;
}

body.light-mode .nav-logo:hover img {
    border-color: rgba(108, 60, 233, 0.6);
    box-shadow:
        0 0 0 4px rgba(108, 60, 233, 0.1),
        0 4px 20px rgba(108, 60, 233, 0.25);
    transform: scale(1.05);
}

/* Mobile nav menu */
body.light-mode .nav-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(32px) saturate(1.5);
    -webkit-backdrop-filter: blur(32px) saturate(1.5);
    border: none;
    box-shadow: -10px 0 50px rgba(108, 60, 233, 0.1);
}

/* ---- Glass Cards ---- */
body.light-mode .glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(108, 60, 233, 0.08);
    box-shadow:
        0 4px 24px rgba(27, 19, 64, 0.04),
        0 1px 3px rgba(27, 19, 64, 0.03);
}

body.light-mode .glass-card:hover {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(108, 60, 233, 0.2);
    box-shadow:
        0 16px 48px rgba(108, 60, 233, 0.1),
        0 8px 20px rgba(255, 107, 53, 0.05),
        0 0 0 1px rgba(108, 60, 233, 0.08);
    transform: translateY(-5px);
}

/* ---- Preloader ---- */
body.light-mode .preloader {
    background:
        radial-gradient(circle at 30% 70%, rgba(108, 60, 233, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #F7F5F0, #EFECF5, #FDF5F0);
}

/* ---- Hero Section ---- */
body.light-mode .hero {
    background: none;
}

body.light-mode .hero-overlay {
    background:
        radial-gradient(ellipse at center, rgba(15, 8, 40, 0.15) 0%, rgba(15, 8, 40, 0.55) 70%, rgba(10, 5, 30, 0.75) 100%),
        linear-gradient(180deg,
            rgba(27, 19, 64, 0.55) 0%,
            rgba(27, 19, 64, 0.35) 25%,
            rgba(27, 19, 64, 0.4) 55%,
            rgba(27, 19, 64, 0.9) 100%);
}

body.light-mode .hero-overlay::before {
    background:
        linear-gradient(135deg, rgba(108, 60, 233, 0.12) 0%, transparent 50%),
        linear-gradient(225deg, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

body.light-mode .hero-bg video,
body.light-mode .hero-bg img {
    filter: brightness(0.85) saturate(1.2) contrast(0.95) blur(3px);
}

body.light-mode .hero-content {
    color: #ffffff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3);
}

body.light-mode .hero-title {
    color: #ffffff;
    text-shadow: 0 3px 30px rgba(0, 0, 0, 0.5), 0 1px 6px rgba(0, 0, 0, 0.35);
}

body.light-mode .hero-subtitle {
    color: #E2D9FF;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.3);
}

body.light-mode .hero-description {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.25);
}

body.light-mode .hero-founder-text {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 10px rgba(27, 19, 64, 0.35);
}

body.light-mode .hero-founder-text a {
    color: #C4B5FD;
    transition: color 0.3s ease;
}

body.light-mode .hero-founder-text a:hover {
    color: #FF6B35;
}

body.light-mode .hero .neon-text {
    color: #ffffff;
    text-shadow: 0 0 30px rgba(108, 60, 233, 0.3);
}

body.light-mode .hero .stat-label {
    color: rgba(255, 255, 255, 0.82);
}

/* ---- Sections ---- */
body.light-mode .section {
    background: var(--bg-primary);
}

body.light-mode .section:nth-child(even) {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF8FD 100%);
}

body.light-mode .section-title h2 {
    color: var(--text-primary);
}

body.light-mode .section-title p {
    color: var(--text-secondary);
}

/* ---- Buttons ---- */
body.light-mode .btn-primary {
    background: linear-gradient(135deg, #6C3CE9 0%, #8B5CF6 40%, #FF6B35 100%);
    color: #ffffff;
    box-shadow:
        0 4px 16px rgba(108, 60, 233, 0.35),
        0 2px 8px rgba(255, 107, 53, 0.2);
    animation: none;
    border: none;
}

body.light-mode .btn-primary:hover {
    box-shadow:
        0 8px 28px rgba(108, 60, 233, 0.45),
        0 4px 14px rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
    filter: brightness(1.05);
}

body.light-mode .btn-secondary {
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    background: transparent;
}

body.light-mode .btn-secondary:hover {
    background: var(--accent-cyan);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(108, 60, 233, 0.3);
    transform: translateY(-2px);
}

/* ---- Cards (Track, Video, Gallery) ---- */
body.light-mode .track-card,
body.light-mode .video-card {
    background: #ffffff;
    border: 1px solid rgba(108, 60, 233, 0.06);
    box-shadow: 0 2px 16px rgba(27, 19, 64, 0.04);
}

body.light-mode .track-card:hover,
body.light-mode .video-card:hover {
    border-color: rgba(108, 60, 233, 0.15);
    box-shadow:
        0 12px 40px rgba(108, 60, 233, 0.1),
        0 4px 12px rgba(255, 107, 53, 0.06);
    transform: translateY(-4px);
}

body.light-mode .gallery-item {
    box-shadow: 0 4px 20px rgba(27, 19, 64, 0.06);
    border-radius: var(--radius-md);
}

body.light-mode .gallery-item:hover {
    box-shadow: 0 16px 48px rgba(108, 60, 233, 0.15);
    transform: scale(1.02);
}

/* ---- Skill Cards ---- */
body.light-mode .skill-card {
    background: #ffffff;
    border: 1px solid rgba(108, 60, 233, 0.06);
    box-shadow: 0 2px 12px rgba(27, 19, 64, 0.03);
}

body.light-mode .skill-card:hover {
    border-color: rgba(108, 60, 233, 0.2);
    box-shadow: 0 12px 40px rgba(108, 60, 233, 0.1);
    transform: translateY(-4px);
}

/* ---- Role Cards (Contact) ---- */
body.light-mode .role-card {
    background: #ffffff;
    border: 1px solid rgba(108, 60, 233, 0.06);
    box-shadow: 0 2px 12px rgba(27, 19, 64, 0.03);
}

body.light-mode .role-card:hover {
    border-color: rgba(108, 60, 233, 0.2);
    box-shadow: 0 20px 60px rgba(108, 60, 233, 0.12);
    transform: translateY(-8px);
}

/* ---- Service Items (Contact) ---- */
body.light-mode .service-item {
    background: #ffffff;
    border: 1px solid rgba(108, 60, 233, 0.06);
    box-shadow: 0 2px 12px rgba(27, 19, 64, 0.03);
}

body.light-mode .service-item:hover {
    border-color: rgba(255, 107, 53, 0.2);
    box-shadow: 0 15px 45px rgba(255, 107, 53, 0.1);
    transform: translateY(-5px);
}

/* ---- Info Cards (Contact) ---- */
body.light-mode .info-card {
    background: #ffffff;
    border: 1px solid rgba(108, 60, 233, 0.06);
    box-shadow: 0 2px 12px rgba(27, 19, 64, 0.03);
}

body.light-mode .info-card:hover {
    border-color: rgba(108, 60, 233, 0.2);
    box-shadow: 0 8px 32px rgba(108, 60, 233, 0.1);
    transform: translateY(-3px);
}

/* ---- Contact Form ---- */
body.light-mode .contact-form-wrapper {
    background: #ffffff;
    border: 1px solid rgba(108, 60, 233, 0.06);
    box-shadow: 0 8px 36px rgba(27, 19, 64, 0.05);
}

body.light-mode input,
body.light-mode select,
body.light-mode textarea {
    background: #F9F7FD;
    border: 1.5px solid rgba(108, 60, 233, 0.1);
    color: var(--text-primary);
}

body.light-mode input:focus,
body.light-mode select:focus,
body.light-mode textarea:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 4px rgba(108, 60, 233, 0.1);
    background: #ffffff;
}

body.light-mode input::placeholder,
body.light-mode textarea::placeholder {
    color: #A9A1BE;
}

/* ---- FAQ ---- */
body.light-mode .faq-item {
    background: #ffffff;
    border: 1px solid rgba(108, 60, 233, 0.06);
}

body.light-mode .faq-item.active {
    border-color: rgba(108, 60, 233, 0.25);
    box-shadow: 0 4px 24px rgba(108, 60, 233, 0.08);
}

body.light-mode .faq-question {
    color: var(--text-primary);
}

/* ---- Gallery Filters ---- */
body.light-mode .filter-btn {
    background: #ffffff;
    border: 1.5px solid rgba(108, 60, 233, 0.1);
    color: var(--text-secondary);
}

body.light-mode .filter-btn:hover,
body.light-mode .filter-btn.active {
    background: linear-gradient(135deg, #6C3CE9, #FF6B35);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 18px rgba(108, 60, 233, 0.3);
}

/* ---- CTA Section ---- */
body.light-mode .cta-section {
    background: linear-gradient(135deg, #EFECF5 0%, #FDF5F0 50%, #F0EBF8 100%) !important;
}

/* ---- Timeline ---- */
body.light-mode .timeline::before {
    background: linear-gradient(180deg, #6C3CE9, #FF6B35);
}

body.light-mode .timeline-content {
    background: #ffffff;
    border: 1px solid rgba(108, 60, 233, 0.08);
    box-shadow: 0 4px 20px rgba(27, 19, 64, 0.04);
}

/* ---- Footer (premium dark footer with gradient accent bar) ---- */
body.light-mode .footer {
    background: linear-gradient(145deg, #1B1340 0%, #2A1B5E 50%, #1B1340 100%);
    color: #E8E4F0;
    position: relative;
}

body.light-mode .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6C3CE9, #8B5CF6, #FF6B35, #F5A623);
}

body.light-mode .footer h3,
body.light-mode .footer h4 {
    color: #ffffff;
}

body.light-mode .footer p,
body.light-mode .footer li {
    color: #D0CBE0;
}

body.light-mode .footer a {
    color: #D0CBE0;
    transition: color 0.25s ease;
}

body.light-mode .footer a:hover {
    color: #C4B5FD;
}

body.light-mode .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.1);
    color: #9B93B0;
}

body.light-mode .footer-bottom p {
    color: #9B93B0;
}

body.light-mode .footer .social-link {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

body.light-mode .footer .social-link svg {
    fill: #ffffff;
}

body.light-mode .footer .social-link:hover {
    background: rgba(108, 60, 233, 0.3);
    border-color: rgba(108, 60, 233, 0.5);
    box-shadow: 0 4px 18px rgba(108, 60, 233, 0.3);
}

/* ---- Floating Elements ---- */
body.light-mode .floating-player {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(108, 60, 233, 0.12);
    box-shadow:
        0 10px 44px rgba(27, 19, 64, 0.1),
        0 0 24px rgba(108, 60, 233, 0.06);
}

body.light-mode .floating-player .track-name {
    color: var(--text-primary);
}

body.light-mode .floating-player .artist-name {
    color: var(--text-muted);
}

body.light-mode .theme-toggle {
    background: #ffffff;
    border-color: var(--accent-cyan);
    color: var(--text-primary);
    box-shadow: 0 4px 18px rgba(108, 60, 233, 0.12);
}

body.light-mode .theme-toggle:hover {
    background: var(--accent-cyan);
    color: #ffffff;
    box-shadow: 0 4px 24px rgba(108, 60, 233, 0.35);
}

/* ---- Spotify Player ---- */
body.light-mode .floating-spotify-player {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(29, 185, 84, 0.2);
    box-shadow: 0 10px 44px rgba(27, 19, 64, 0.08);
}

/* ---- Particles & Music Notes ---- */
body.light-mode .music-note {
    color: var(--accent-cyan) !important;
}

/* ---- Gradient Text in Light Mode ---- */
body.light-mode .gradient-text {
    background: linear-gradient(135deg, #6C3CE9 0%, #8B5CF6 35%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Scroll Progress ---- */
body.light-mode .scroll-progress {
    background: linear-gradient(90deg, #6C3CE9, #8B5CF6, #FF6B35);
    box-shadow: 0 0 12px rgba(108, 60, 233, 0.4);
}

/* ---- Social Links in Light Mode ---- */
body.light-mode .social-link {
    background: rgba(108, 60, 233, 0.06);
    border: 1px solid rgba(108, 60, 233, 0.1);
}

body.light-mode .social-link:hover {
    background: rgba(108, 60, 233, 0.1);
    box-shadow: 0 4px 18px rgba(108, 60, 233, 0.15);
    border-color: rgba(108, 60, 233, 0.25);
}

/* ---- About Page Specific ---- */
body.light-mode .about-hero {
    background: linear-gradient(135deg, #F7F5F0 0%, #EFECF5 50%, #FDF5F0 100%);
}

body.light-mode .about-image img {
    border-color: var(--accent-cyan);
    box-shadow: 0 8px 36px rgba(108, 60, 233, 0.18);
}

/* ---- Stat Counters ---- */
body.light-mode .stat-number {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Spotify / Music Embeds ---- */
body.light-mode .spotify-embed {
    box-shadow: 0 12px 44px rgba(108, 60, 233, 0.1);
    border-radius: 16px;
}

body.light-mode .video-wrapper {
    box-shadow: 0 12px 44px rgba(108, 60, 233, 0.1);
}

/* ---- Platform Cards ---- */
body.light-mode .platform-card {
    background: #ffffff;
    border: 1px solid rgba(108, 60, 233, 0.06);
}

body.light-mode .platform-card:hover {
    box-shadow: 0 8px 32px rgba(108, 60, 233, 0.1);
    border-color: rgba(108, 60, 233, 0.18);
    transform: translateY(-3px);
}

/* ---- Spotlight Card ---- */
body.light-mode .spotlight-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(239, 236, 245, 0.6) 50%, rgba(253, 245, 240, 0.5) 100%);
    border: 1px solid rgba(108, 60, 233, 0.1);
    box-shadow: 0 8px 36px rgba(108, 60, 233, 0.06);
}

body.light-mode .spotlight-card:hover {
    box-shadow: 0 16px 48px rgba(108, 60, 233, 0.12);
    border-color: rgba(108, 60, 233, 0.18);
}

/* ---- Floating Music Player ---- */
.floating-player {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 50px;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.2);
    transition: all 0.3s ease;
}

.floating-player:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 240, 255, 0.3);
}

.floating-player .player-info {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

.floating-player .track-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.floating-player .artist-name {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.floating-player .player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-player .control-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-player .control-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.floating-player .control-btn.play-btn {
    width: 45px;
    height: 45px;
}

.floating-player .progress-bar {
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.floating-player .progress {
    width: 35%;
    height: 100%;
    background: var(--gradient-main);
    border-radius: 2px;
}

.floating-player .close-player {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

/* Hide player on mobile */
@media (max-width: 768px) {
    .floating-player {
        padding: 8px 15px;
        gap: 10px;
        border-radius: 40px;
    }

    .floating-player .player-info {
        min-width: 100px;
    }

    .floating-player .progress-bar {
        display: none;
    }

    .theme-toggle {
        top: auto;
        bottom: 100px;
        right: 15px;
    }
}

/* ========================================
   Custom Notifications / Popups
   ======================================== */
.notification-group {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.custom-notification {
    background: rgba(10, 15, 25, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.custom-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.custom-notification.success {
    border-left: 4px solid var(--accent-cyan);
}

.custom-notification.error {
    border-left: 4px solid var(--accent-pink);
}

.notify-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.custom-notification.success .notify-icon {
    color: var(--accent-cyan);
}

.custom-notification.error .notify-icon {
    color: var(--accent-pink);
}

.notify-message {
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

.loading-dots {
    display: inline-block;
    animation: typing 1.5s infinite steps(4, end);
}

@keyframes typing {

    0%,
    100% {
        clip-path: inset(0 100% 0 0);
    }

    50% {
        clip-path: inset(0 0 0 0);
    }
}

/* ======== FORM POPUP MODAL ======== */
.form-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.form-popup {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(18, 18, 26, 0.98));
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    transform: scale(0.7) translateY(30px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 240, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.form-popup-overlay.active .form-popup {
    transform: scale(1) translateY(0);
}

.form-popup-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: popupIconPulse 2s ease-in-out infinite;
}

.form-popup-icon svg {
    width: 40px;
    height: 40px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-popup-icon.success {
    background: linear-gradient(135deg, rgba(0, 240, 150, 0.15), rgba(0, 200, 100, 0.05));
    border: 2px solid rgba(0, 240, 150, 0.4);
}

.form-popup-icon.success svg {
    color: #00f096;
}

.form-popup-icon.error {
    background: linear-gradient(135deg, rgba(255, 80, 80, 0.15), rgba(255, 50, 50, 0.05));
    border: 2px solid rgba(255, 80, 80, 0.4);
}

.form-popup-icon.error svg {
    color: #ff5050;
}

@keyframes popupIconPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 240, 150, 0.2);
    }

    50% {
        box-shadow: 0 0 20px 10px rgba(0, 240, 150, 0.05);
    }
}

.form-popup-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-popup-message {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.form-popup-btn {
    padding: 12px 40px;
    font-size: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 240, 255, 0.3);
}

/* Loading state for submit button */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: btnSpin 0.6s linear infinite;
    margin-left: 10px;
}

@keyframes btnSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 480px) {
    .form-popup {
        padding: 35px 25px;
        margin: 0 15px;
    }

    .form-popup-title {
        font-size: 1.3rem;
    }
}