/* =========================================================
   NITIN PANDEY — ULTRA PREMIUM PORTFOLIO
   ---------------------------------------------------------
   COMPLETE REPLACEMENT STYLE.CSS
   Design:
   - Ultra Premium
   - Editorial
   - Modern SaaS
   - Luxury Dark UI
   - Glassmorphism
   - Indigo / Cyan Ambient Lighting
   - Responsive
   - Existing HTML structure compatible
   ========================================================= */


/* =========================================================
   01. DESIGN TOKENS
   ========================================================= */

:root {

    /* ---------- Core ---------- */

    --bg: #050507;
    --bg-soft: #08090d;
    --surface: #0c0e13;
    --surface-2: #10131a;
    --surface-3: #141821;

    --white: #ffffff;
    --white-soft: #e8eaf0;

    --text: #f7f8fb;
    --text-soft: #c9ced8;
    --text-muted: #8b93a3;
    --text-dim: #5f6878;

    /* ---------- Accent ---------- */

    --accent: #8b7cff;
    --accent-light: #b6adff;
    --accent-dark: #6256e8;

    --cyan: #38d9ff;
    --green: #65e6a1;

    /* ---------- Borders ---------- */

    --border: rgba(255, 255, 255, 0.075);
    --border-soft: rgba(255, 255, 255, 0.045);
    --border-strong: rgba(255, 255, 255, 0.15);

    /* ---------- Shadows ---------- */

    --shadow-sm:
        0 10px 30px rgba(0, 0, 0, 0.25);

    --shadow-md:
        0 25px 70px rgba(0, 0, 0, 0.35);

    --shadow-lg:
        0 40px 120px rgba(0, 0, 0, 0.50);

    --shadow-glow:
        0 0 60px rgba(139, 124, 255, 0.12);

    /* ---------- Typography ---------- */

    --display-font: "Space Grotesk", sans-serif;
    --body-font: "Inter", sans-serif;

    /* ---------- Layout ---------- */

    --container: 1320px;
    --nav-height: 86px;

    /* ---------- Radius ---------- */

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 36px;

    /* ---------- Motion ---------- */

    --ease:
        cubic-bezier(0.22, 1, 0.36, 1);

    --ease-smooth:
        cubic-bezier(0.16, 1, 0.3, 1);
}


/* =========================================================
   02. RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    min-height: 100vh;

    background:
        radial-gradient(circle at 80% 0%,
            rgba(99, 102, 241, 0.055),
            transparent 28%),
        radial-gradient(circle at 10% 40%,
            rgba(56, 217, 255, 0.025),
            transparent 25%),
        var(--bg);

    color: var(--text);

    font-family: var(--body-font);

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

img,
svg,
video {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: rgba(139, 124, 255, 0.35);
    color: #ffffff;
}


/* =========================================================
   03. SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #050507;
}

::-webkit-scrollbar-thumb {
    background:
        linear-gradient(180deg,
            #373b49,
            #171a22);

    border-radius: 999px;
    border: 2px solid #050507;
}

::-webkit-scrollbar-thumb:hover {
    background:
        linear-gradient(180deg,
            #7167dc,
            #303542);
}


/* =========================================================
   04. ACCESSIBILITY
   ========================================================= */

:focus-visible {
    outline: 2px solid var(--accent-light);
    outline-offset: 4px;
}

a,
button,
input,
textarea {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   05. PAGE LOADER
   ========================================================= */

.page-loader {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(circle at center,
            rgba(139, 124, 255, 0.08),
            transparent 35%),
        #050507;

    transition:
        opacity 0.8s var(--ease),
        visibility 0.8s var(--ease);
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    position: relative;

    font-family: var(--display-font);
    font-size: 54px;
    font-weight: 700;
    letter-spacing: -5px;

    color: transparent;

    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.9);

    animation: loaderLogoPulse 1.8s ease-in-out infinite;
}

.loader-line {
    width: 100px;
    height: 1px;

    margin-top: 24px;

    background:
        linear-gradient(90deg,
            transparent,
            var(--accent-light),
            transparent);

    transform-origin: center;

    animation:
        loaderLine 1.5s var(--ease) infinite;
}

@keyframes loaderLogoPulse {

    0%,
    100% {
        opacity: 0.55;
        transform: scale(0.97);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes loaderLine {

    0% {
        transform: scaleX(0.1);
        opacity: 0.2;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }

    100% {
        transform: scaleX(0.1);
        opacity: 0.2;
    }
}


/* =========================================================
   06. NAVBAR
   ========================================================= */

.navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 5000;

    background:
        linear-gradient(180deg,
            rgba(5, 5, 7, 0.86),
            rgba(5, 5, 7, 0.48));

    border-bottom: 1px solid transparent;

    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);

    transition:
        background 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

.navbar::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -1px;

    height: 1px;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(139, 124, 255, 0.28),
            transparent);

    opacity: 0.45;
}

.navbar.scrolled {
    background:
        rgba(5, 5, 7, 0.92);

    border-color: var(--border);

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.25);
}

.nav-container {
    width:
        min(calc(100% - 80px),
            var(--container));

    min-height: var(--nav-height);

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   07. LOGO
   ========================================================= */

.logo {
    display: inline-flex;
    align-items: center;

    gap: 13px;

    position: relative;
    z-index: 5;
}

.logo-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border-strong);

    border-radius: 13px;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.015));

    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.08),
        0 10px 30px rgba(0, 0, 0, 0.25);

    font-family: var(--display-font);
    font-size: 13px;
    font-weight: 700;

    transition:
        transform 0.45s var(--ease),
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.logo:hover .logo-mark {
    transform:
        translateY(-2px) rotate(-4deg);

    background:
        linear-gradient(135deg,
            var(--white),
            #dfe2ff);

    color: #08080b;

    border-color: #ffffff;

    box-shadow:
        0 12px 30px rgba(139, 124, 255, 0.22);
}

.logo-text {
    font-family: var(--display-font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.2px;
}


/* =========================================================
   08. DESKTOP NAV
   ========================================================= */

.nav-menu {
    display: flex;
    align-items: center;

    gap: 38px;
}

.nav-link {
    position: relative;

    color: var(--text-muted);

    font-size: 12px;
    font-weight: 600;

    transition:
        color 0.3s ease,
        transform 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link::before {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -11px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--accent-light);

    transform:
        translateX(-50%) scale(0);

    opacity: 0;

    transition:
        transform 0.35s var(--ease),
        opacity 0.35s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform:
        translateX(-50%) scale(1);

    opacity: 1;
}


/* =========================================================
   09. NAV CTA
   ========================================================= */

.nav-cta {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 12px 17px;

    border: 1px solid var(--border-strong);
    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.035);

    font-size: 11px;
    font-weight: 700;

    overflow: hidden;

    transition:
        transform 0.35s var(--ease),
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.nav-cta::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(110deg,
            transparent 20%,
            rgba(255, 255, 255, 0.15),
            transparent 80%);

    transform: translateX(-120%);

    transition:
        transform 0.7s var(--ease);
}

.nav-cta:hover::before {
    transform: translateX(120%);
}

.nav-cta:hover {
    transform: translateY(-3px);

    color: #08080b;

    background: #ffffff;

    border-color: #ffffff;

    box-shadow:
        0 12px 35px rgba(255, 255, 255, 0.10);
}

.nav-cta i {
    font-size: 9px;
}


/* =========================================================
   10. MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-btn {
    display: none;

    position: relative;

    width: 44px;
    height: 44px;

    border: 1px solid var(--border);
    border-radius: 13px;

    background:
        rgba(255, 255, 255, 0.035);

    cursor: pointer;

    z-index: 10;
}

.mobile-menu-btn span {
    position: absolute;

    left: 50%;

    width: 20px;
    height: 1px;

    background: #ffffff;

    transform:
        translateX(-50%);

    transition:
        transform 0.35s var(--ease),
        opacity 0.25s ease,
        top 0.35s var(--ease);
}

.mobile-menu-btn span:nth-child(1) {
    top: 14px;
}

.mobile-menu-btn span:nth-child(2) {
    top: 21px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 28px;
}

.mobile-menu-btn.open span:nth-child(1) {
    top: 21px;

    transform:
        translateX(-50%) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
    top: 21px;

    transform:
        translateX(-50%) rotate(-45deg);
}


/* =========================================================
   11. HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    padding:
        115px 0 90px;

    display: flex;
    align-items: center;

    overflow: hidden;

    isolation: isolate;
}

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at 75% 25%,
            rgba(99, 102, 241, 0.11),
            transparent 28%),
        radial-gradient(circle at 15% 70%,
            rgba(56, 217, 255, 0.055),
            transparent 26%);

    pointer-events: none;
}

.hero-grid {
    position: absolute;

    inset: 0;

    opacity: 0.42;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px);

    background-size: 82px 82px;

    mask-image:
        linear-gradient(to bottom,
            black 0%,
            black 48%,
            transparent 92%);

    -webkit-mask-image:
        linear-gradient(to bottom,
            black 0%,
            black 48%,
            transparent 92%);

    pointer-events: none;
}

.hero-glow {
    position: absolute;

    width: 620px;
    height: 620px;

    border-radius: 50%;

    filter: blur(150px);

    pointer-events: none;

    z-index: -1;

    animation:
        ambientFloat 12s ease-in-out infinite;
}

.hero-glow-one {
    top: -170px;
    right: -80px;

    background:
        rgba(112, 92, 255, 0.16);
}

.hero-glow-two {
    bottom: -250px;
    left: -160px;

    background:
        rgba(56, 217, 255, 0.07);

    animation-delay: -5s;
}

@keyframes ambientFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(20px, -25px, 0);
    }
}

.hero-container {
    position: relative;

    z-index: 3;

    width:
        min(calc(100% - 50px),
            1480px,
            var(--container));

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr) minmax(360px, 0.75fr);

    gap: 55px;

    align-items: center;
}


/* =========================================================
   12. HERO CONTENT
   ========================================================= */

.hero-content {
    max-width: 1050px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 35px;

    padding: 8px 13px;

    border: 1px solid var(--border);
    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.025);

    color: var(--text-muted);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.7px;
    text-transform: uppercase;

    backdrop-filter: blur(15px);
}

.status-dot {
    width: 7px;
    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 0 5px rgba(101, 230, 161, 0.07),
        0 0 20px rgba(101, 230, 161, 0.75);

    animation:
        statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        box-shadow:
            0 0 0 5px rgba(101, 230, 161, 0.05),
            0 0 15px rgba(101, 230, 161, 0.5);
    }

    50% {
        box-shadow:
            0 0 0 8px rgba(101, 230, 161, 0.02),
            0 0 25px rgba(101, 230, 161, 0.85);
    }
}


/* =========================================================
   13. HERO TITLE
   ========================================================= */

.hero-title {
    margin: 0;

    font-family: var(--display-font);

    font-size:
        clamp(82px,
            9.5vw,
            155px);

    line-height: 0.82;

    letter-spacing: -7px;

    font-weight: 600;

    color: var(--white);
}

.title-line {
    display: block;
}

.title-highlight {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1.15px rgba(255, 255, 255, 0.78);

    transition:
        color 0.5s ease,
        -webkit-text-stroke-color 0.5s ease,
        transform 0.5s var(--ease);
}

.hero-title:hover .title-highlight {
    color: rgba(255, 255, 255, 0.97);

    -webkit-text-stroke-color:
        rgba(255, 255, 255, 0.97);

    transform: translateX(5px);
}


/* =========================================================
   14. HERO ROLE
   ========================================================= */

.hero-role {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 46px;

    font-family: var(--display-font);

    font-size: 15px;
    font-weight: 500;

    color: var(--text-soft);
}

.role-line {
    width: 55px;
    height: 1px;

    background:
        linear-gradient(90deg,
            var(--accent),
            var(--cyan));

    box-shadow:
        0 0 15px rgba(139, 124, 255, 0.4);
}


/* =========================================================
   15. HERO DESCRIPTION
   ========================================================= */

.hero-description {
    max-width: 640px;

    margin-top: 22px;

    color: var(--text-muted);

    font-size: 16px;

    line-height: 1.9;
}


/* =========================================================
   16. HERO ACTIONS
   ========================================================= */

.hero-actions {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-top: 38px;
}

.btn {
    position: relative;

    min-height: 54px;

    padding:
        0 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border-radius: 999px;

    border: 1px solid var(--border-strong);

    font-size: 12px;
    font-weight: 700;

    overflow: hidden;

    transition:
        transform 0.4s var(--ease),
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.btn:hover {
    transform: translateY(-4px);
}

.btn i {
    transition:
        transform 0.35s var(--ease);
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background:
        linear-gradient(135deg,
            #ffffff,
            #e9eaff);

    color: #08080b;

    border-color: #ffffff;

    box-shadow:
        0 12px 35px rgba(255, 255, 255, 0.08);
}

.btn-primary:hover {
    box-shadow:
        0 18px 45px rgba(139, 124, 255, 0.18);
}

.btn-secondary {
    color: var(--white);

    background:
        rgba(255, 255, 255, 0.025);
}

.btn-secondary:hover {
    background:
        rgba(139, 124, 255, 0.08);

    border-color:
        rgba(139, 124, 255, 0.4);
}


/* =========================================================
   17. HERO SOCIALS
   ========================================================= */

.hero-socials {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 42px;
}

.social-label {
    color: var(--text-dim);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.social-links {
    display: flex;

    gap: 7px;
}

.social-link {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border:
        1px solid var(--border);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.02);

    color: var(--text-muted);

    transition:
        transform 0.35s var(--ease),
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);

    color: #ffffff;

    background:
        rgba(139, 124, 255, 0.14);

    border-color:
        rgba(139, 124, 255, 0.42);

    box-shadow:
        0 10px 25px rgba(139, 124, 255, 0.13);
}


/* =========================================================
   18. HERO VISUAL
   ========================================================= */

.hero-visual {
    position: relative;

    width: 100%;
    max-width: 570px;

    margin-left: auto;
}


/* =========================================================
   19. DEVELOPER CARD
   ========================================================= */

.developer-card {
    position: relative;

    min-height: 640px;

    padding: 30px;

    border:
        1px solid rgba(255, 255, 255, 0.10);

    border-radius:
        var(--radius-xl);

    background:
        radial-gradient(circle at 50% 40%,
            rgba(139, 124, 255, 0.12),
            transparent 35%),
        radial-gradient(circle at 80% 90%,
            rgba(56, 217, 255, 0.05),
            transparent 28%),
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.012));

    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.08),
        var(--shadow-lg),
        var(--shadow-glow);

    overflow: hidden;

    isolation: isolate;

    transition:
        transform 0.65s var(--ease),
        border-color 0.4s ease,
        box-shadow 0.5s ease;
}

.developer-card::after {
    content: "";

    position: absolute;

    inset: 1px;

    border-radius:
        calc(var(--radius-xl) - 1px);

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.025),
            transparent 35%,
            rgba(139, 124, 255, 0.035));

    pointer-events: none;

    z-index: -1;
}

.developer-card:hover {
    transform: translateY(-9px);

    border-color:
        rgba(139, 124, 255, 0.30);

    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.10),
        0 45px 120px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(99, 102, 241, 0.12);
}

.developer-card::before {
    content: "";

    position: absolute;

    top: -100%;
    left: -50%;

    width: 60%;
    height: 300%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.06),
            transparent);

    transform: rotate(25deg);

    transition:
        transform 1.2s var(--ease);

    pointer-events: none;

    z-index: 4;
}

.developer-card:hover::before {
    transform:
        translateX(260%) rotate(25deg);
}


/* =========================================================
   20. DEVELOPER CARD HEADER
   ========================================================= */

.developer-card-top {
    position: relative;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-label,
.card-year,
.developer-card-bottom span {
    color: var(--text-dim);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;
}

.card-year {
    color: var(--text-muted);
}


/* =========================================================
   21. LARGE NP
   ========================================================= */

.developer-initials {
    position: absolute;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%) rotate(-8deg);

    font-family: var(--display-font);

    font-size:
        clamp(190px,
            22vw,
            320px);

    line-height: 0.8;

    font-weight: 700;

    letter-spacing: -28px;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255, 255, 255, 0.30);

    user-select: none;

    transition:
        transform 0.8s var(--ease),
        -webkit-text-stroke-color 0.5s ease;
}

.developer-card:hover .developer-initials {
    transform:
        translate(-50%, -50%) rotate(-3deg) scale(1.04);

    -webkit-text-stroke-color:
        rgba(255, 255, 255, 0.72);
}


/* =========================================================
   22. FLOATING CODE
   ========================================================= */

.floating-code {
    position: absolute;

    z-index: 8;

    padding:
        10px 13px;

    border:
        1px solid var(--border);

    border-radius: 9px;

    background:
        rgba(5, 5, 7, 0.65);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    color:
        rgba(215, 220, 232, 0.55);

    font-family:
        "SFMono-Regular",
        Consolas,
        monospace;

    font-size: 10px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.25);

    animation:
        floatingAnimation 5s ease-in-out infinite;
}

.code-one {
    top: 20%;
    left: 6%;
}

.code-two {
    top: 60%;
    right: 5%;

    animation-delay: -1.5s;
}

.code-three {
    bottom: 24%;
    left: 12%;

    animation-delay: -3s;
}

@keyframes floatingAnimation {

    0%,
    100% {
        transform:
            translateY(0) rotate(0deg);
    }

    50% {
        transform:
            translateY(-13px) rotate(1deg);
    }
}


/* =========================================================
   23. CARD FOOTER
   ========================================================= */

.developer-card-bottom {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 18px;

    border-top:
        1px solid var(--border);
}


/* =========================================================
   24. MUSIC CARD
   ========================================================= */

.music-card {
    position: relative;

    z-index: 20;

    margin:
        -34px 34px 0;

    padding: 19px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 20px;

    background:
        rgba(13, 15, 20, 0.84);

    backdrop-filter:
        blur(24px) saturate(140%);

    -webkit-backdrop-filter:
        blur(24px) saturate(140%);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.42);

    transition:
        transform 0.4s var(--ease),
        border-color 0.3s ease;
}

.music-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(139, 124, 255, 0.30);
}

.music-info {
    display: flex;
    align-items: center;

    gap: 14px;
}

.music-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border:
        1px solid var(--border);

    border-radius: 13px;

    background:
        linear-gradient(135deg,
            rgba(139, 124, 255, 0.16),
            rgba(56, 217, 255, 0.05));

    color:
        var(--accent-light);
}

.music-label {
    display: block;

    margin-bottom: 5px;

    color: var(--text-dim);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.music-info h3 {
    font-family: var(--display-font);

    font-size: 14px;
    font-weight: 600;
}

.music-info p {
    margin-top: 3px;

    color: var(--text-dim);

    font-size: 9px;
}

.music-card audio {
    width: 100%;
    height: 34px;

    margin-top: 16px;

    filter:
        invert(1) opacity(0.72);
}


/* =========================================================
   25. SCROLL INDICATOR
   ========================================================= */

.scroll-indicator {
    position: absolute;

    bottom: 32px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 10px;

    color: var(--text-dim);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.scroll-indicator i {
    color: var(--accent-light);

    animation:
        scrollArrow 1.6s ease-in-out infinite;
}

@keyframes scrollArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}


/* =========================================================
   26. FLOATING INTRO
   ========================================================= */

.floating-intro {
    position: relative;

    min-height: 850px;

    padding:
        170px max(7vw, 60px) 130px;

    border-top:
        1px solid var(--border);

    overflow: hidden;

    isolation: isolate;

    background:
        radial-gradient(circle at 80% 35%,
            rgba(139, 124, 255, 0.055),
            transparent 30%),
        var(--bg);
}

.floating-intro::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            transparent,
            rgba(139, 124, 255, 0.025),
            transparent);

    pointer-events: none;
}

.floating-intro-text {
    position: absolute;

    top: 65px;
    left: max(7vw, 60px);

    z-index: 0;

    display: flex;
    flex-direction: column;

    pointer-events: none;
    user-select: none;
}

.floating-intro-text span {
    font-family: var(--display-font);

    font-size:
        clamp(85px,
            14vw,
            230px);

    font-weight: 700;

    line-height: 0.77;

    letter-spacing: -12px;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255, 255, 255, 0.035);

    white-space: nowrap;
}

.floating-intro-content {
    position: relative;

    z-index: 3;

    width:
        min(100%,
            1050px);

    margin:
        0 auto;

    padding-top: 145px;
}

.intro-label {
    display: inline-flex;

    padding:
        8px 12px;

    border:
        1px solid var(--border);

    border-radius: 999px;

    color: var(--accent-light);

    background:
        rgba(139, 124, 255, 0.05);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}

.floating-intro-content h2 {
    max-width: 1050px;

    margin-top: 24px;

    font-family: var(--display-font);

    font-size:
        clamp(58px,
            7.5vw,
            122px);

    font-weight: 600;

    line-height: 0.91;

    letter-spacing: -6px;
}

.floating-intro-content h2 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255, 255, 255, 0.68);
}

.floating-intro-content p {
    max-width: 650px;

    margin-top: 38px;

    color: var(--text-muted);

    font-size: 16px;

    line-height: 1.9;
}


/* =========================================================
   27. TECHNOLOGY MARQUEE
   ========================================================= */

.tech-marquee {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 45px;

    overflow: hidden;

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

    padding: 17px 0;

    background:
        rgba(5, 5, 7, 0.62);

    backdrop-filter:
        blur(12px);

    z-index: 4;
}

.tech-marquee-track {
    display: flex;
    align-items: center;

    width: max-content;

    gap: 27px;

    white-space: nowrap;

    animation:
        marqueeAnimation 25s linear infinite;
}

.tech-marquee-track span {
    flex-shrink: 0;

    color: var(--text-muted);

    font-family: var(--display-font);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.4px;
}

.tech-marquee-track span:nth-child(even) {
    color: var(--text-dim);
}

.marquee-symbol {
    color:
        var(--accent-light) !important;
}

@keyframes marqueeAnimation {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =========================================================
   28. ABOUT SECTION
   ========================================================= */

.about-section {
    position: relative;

    width: 100%;

    padding:
        160px max(7vw, 60px) 170px;

    border-top:
        1px solid var(--border);

    overflow: hidden;

    isolation: isolate;

    background:
        linear-gradient(180deg,
            #07080b,
            #050507);
}

.about-section::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    top: 15%;
    right: -300px;

    border-radius: 50%;

    background:
        rgba(99, 102, 241, 0.055);

    filter: blur(120px);

    pointer-events: none;
}

.about-container {
    position: relative;

    z-index: 2;

    width:
        min(100%,
            var(--container));

    margin: auto;
}

.about-floating-word {
    position: absolute;

    z-index: 0;

    font-family: var(--display-font);

    font-size:
        clamp(130px,
            20vw,
            310px);

    font-weight: 700;

    line-height: 0.75;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255, 255, 255, 0.028);

    pointer-events: none;

    user-select: none;
}

.about-word-one {
    top: 100px;
    right: -20px;
}

.about-word-two {
    bottom: 70px;
    left: -40px;
}

.about-heading {
    max-width: 1000px;

    margin-bottom: 90px;
}

.about-kicker {
    display: block;

    margin-bottom: 23px;

    color: var(--accent-light);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.about-heading h2 {
    font-family: var(--display-font);

    font-size:
        clamp(58px,
            7vw,
            112px);

    line-height: 0.91;

    letter-spacing: -6px;

    font-weight: 600;
}

.about-heading h2 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255, 255, 255, 0.68);
}


/* =========================================================
   29. ABOUT GRID
   ========================================================= */

.about-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr) minmax(280px, 0.75fr);

    gap: 110px;

    align-items: start;
}

.about-main {
    max-width: 750px;
}

.about-large-text {
    color: var(--text-soft);

    font-family: var(--display-font);

    font-size:
        clamp(26px,
            3vw,
            42px);

    line-height: 1.25;

    letter-spacing: -1.5px;
}

.about-large-text strong {
    color: var(--white);
}

.about-description {
    max-width: 650px;

    margin-top: 28px;

    color: var(--text-muted);

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   30. ABOUT ACTIONS
   ========================================================= */

.about-actions {
    display: flex;
    align-items: center;

    gap: 25px;

    margin-top: 38px;
}

.about-btn {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    padding:
        13px 18px;

    border:
        1px solid var(--border-strong);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.025);

    font-size: 11px;
    font-weight: 700;

    transition:
        transform 0.35s var(--ease),
        background 0.3s ease,
        border-color 0.3s ease;
}

.about-btn:hover {
    transform: translateY(-3px);

    background:
        rgba(139, 124, 255, 0.08);

    border-color:
        rgba(139, 124, 255, 0.35);
}

.about-btn i {
    color: var(--accent-light);
}

.about-location {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--text-dim);

    font-size: 10px;
    font-weight: 600;
}

.about-location i {
    color: var(--accent-light);
}


/* =========================================================
   31. ABOUT STATS
   ========================================================= */

.about-stats {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    border-top:
        1px solid var(--border);

    border-left:
        1px solid var(--border);
}

.about-stat {
    min-height: 150px;

    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-right:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

    background:
        rgba(255, 255, 255, 0.012);

    transition:
        background 0.35s ease,
        transform 0.35s var(--ease);
}

.about-stat:hover {
    background:
        rgba(139, 124, 255, 0.045);

    transform:
        translateY(-3px);
}

.stat-number {
    font-family: var(--display-font);

    font-size: 36px;
    font-weight: 600;

    letter-spacing: -2px;

    color: var(--white);
}

.stat-label {
    color: var(--text-dim);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


/* =========================================================
   32. SKILLS AREA
   ========================================================= */

.skills-area {
    margin-top: 120px;

    padding-top: 28px;

    border-top:
        1px solid var(--border);

    display: grid;

    grid-template-columns:
        220px 1fr;

    gap: 60px;
}

.skills-title span {
    color: var(--text-dim);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}

.skills-list span {
    padding:
        10px 14px;

    border:
        1px solid var(--border);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.018);

    color: var(--text-soft);

    font-size: 10px;
    font-weight: 600;

    transition:
        transform 0.3s var(--ease),
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.skills-list span:hover {
    transform: translateY(-3px);

    color: var(--white);

    border-color:
        rgba(139, 124, 255, 0.35);

    background:
        rgba(139, 124, 255, 0.07);
}


/* =========================================================
   33. PROJECTS SECTION
   ========================================================= */

.projects-section {
    position: relative;

    padding:
        180px 0 160px;

    border-top:
        1px solid var(--border);

    overflow: hidden;

    isolation: isolate;

    background:
        radial-gradient(circle at 85% 20%,
            rgba(99, 102, 241, 0.055),
            transparent 26%),
        #050507;
}

.projects-bg-text {
    position: absolute;

    top: 55px;
    left: -25px;

    font-family: var(--display-font);

    font-size:
        clamp(120px,
            18vw,
            300px);

    font-weight: 700;

    line-height: 0.8;

    letter-spacing: -15px;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255, 255, 255, 0.035);

    pointer-events: none;

    white-space: nowrap;
}

.projects-container {
    position: relative;

    z-index: 2;

    width:
        min(calc(100% - 80px),
            var(--container));

    margin: auto;
}


/* =========================================================
   34. PROJECT HEADER
   ========================================================= */

.projects-header {
    display: grid;

    grid-template-columns:
        1fr minmax(300px, 0.55fr);

    gap: 100px;

    align-items: end;

    margin-bottom: 80px;
}

.projects-kicker {
    display: block;

    margin-bottom: 23px;

    color: var(--accent-light);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.projects-header h2 {
    font-family: var(--display-font);

    font-size:
        clamp(62px,
            8vw,
            120px);

    line-height: 0.88;

    letter-spacing: -7px;

    font-weight: 600;
}

.projects-header h2 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255, 255, 255, 0.70);
}

.projects-header>p {
    max-width: 430px;

    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   35. PROJECT GRID
   ========================================================= */

.projects-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;
}


/* =========================================================
   36. PROJECT CARD
   ========================================================= */

.project-card {
    position: relative;

    min-height: 560px;

    padding: 25px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-lg);

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012));

    overflow: hidden;

    isolation: isolate;

    transition:
        transform 0.55s var(--ease),
        border-color 0.4s ease,
        background 0.4s ease,
        box-shadow 0.45s ease;
}

.project-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at 80% 15%,
            rgba(139, 124, 255, 0.07),
            transparent 30%);

    opacity: 0;

    transition:
        opacity 0.45s ease;

    pointer-events: none;
}

.project-card:hover {
    transform: translateY(-9px);

    border-color:
        rgba(139, 124, 255, 0.27);

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.045),
            rgba(139, 124, 255, 0.025));

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.42),
        0 0 60px rgba(99, 102, 241, 0.055);
}

.project-card:hover::before {
    opacity: 1;
}

.project-large {
    grid-column: span 2;

    min-height: 650px;
}

.project-wide {
    grid-column: span 2;
}


/* =========================================================
   37. PROJECT CARD TOP
   ========================================================= */

.project-card-top {
    position: relative;

    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-number {
    font-family: var(--display-font);

    font-size: 12px;
    font-weight: 600;

    color: var(--white);
}

.project-type {
    color: var(--text-dim);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.8px;
}


/* =========================================================
   38. PROJECT VISUAL
   ========================================================= */

.project-visual {
    position: relative;

    height: 330px;

    margin-top: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.065);

    border-radius: 20px;

    background:
        radial-gradient(circle at center,
            rgba(139, 124, 255, 0.07),
            transparent 58%),
        rgba(255, 255, 255, 0.012);
}


/* =========================================================
   39. RIDE MITRA VISUAL
   ========================================================= */

.ride-project::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(120deg,
            transparent 20%,
            rgba(139, 124, 255, 0.045),
            transparent 80%);

    pointer-events: none;
}

.project-ui-window {
    width: 72%;
    height: 68%;

    border:
        1px solid rgba(255, 255, 255, 0.14);

    border-radius: 15px;

    background:
        #08090c;

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.50);

    transform:
        perspective(900px) rotateX(5deg);

    transition:
        transform 0.55s var(--ease),
        box-shadow 0.5s ease;
}

.project-card:hover .project-ui-window {
    transform:
        perspective(900px) rotateX(0deg) translateY(-6px) scale(1.025);

    box-shadow:
        0 45px 100px rgba(0, 0, 0, 0.58);
}

.window-top {
    height: 29px;

    display: flex;
    align-items: center;

    gap: 6px;

    padding: 0 12px;

    border-bottom:
        1px solid var(--border);
}

.window-top span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.12);

    border:
        1px solid rgba(255, 255, 255, 0.25);
}

.window-content {
    padding: 28px;
}

.ui-line {
    width: 70%;
    height: 7px;

    margin-bottom: 10px;

    border-radius: 999px;

    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.17),
            rgba(255, 255, 255, 0.05));
}

.ui-line.large {
    width: 45%;
    height: 11px;

    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.62),
            rgba(255, 255, 255, 0.16));
}

.ui-line.short {
    width: 35%;
}

.ui-box-row {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-top: 34px;
}

.ui-box-row div {
    height: 70px;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 10px;

    background:
        linear-gradient(135deg,
            rgba(139, 124, 255, 0.07),
            rgba(255, 255, 255, 0.015));
}


/* =========================================================
   40. AI VISUAL
   ========================================================= */

.ai-project {
    background:
        radial-gradient(circle at center,
            rgba(139, 124, 255, 0.12),
            transparent 38%);
}

.ai-orbit {
    position: relative;

    width: 190px;
    height: 190px;

    border:
        1px solid rgba(255, 255, 255, 0.13);

    border-radius: 50%;

    animation:
        orbitRotate 16s linear infinite;
}

.ai-orbit::before {
    content: "";

    position: absolute;

    inset: 25px;

    border:
        1px solid rgba(139, 124, 255, 0.16);

    border-radius: 50%;
}

.ai-orbit::after {
    content: "";

    position: absolute;

    inset: 55px;

    border:
        1px dashed rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}

.ai-core {
    position: absolute;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    width: 70px;
    height: 70px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(139, 124, 255, 0.14),
            #08090c);

    font-family: var(--display-font);

    font-size: 15px;
    font-weight: 700;

    box-shadow:
        0 0 35px rgba(139, 124, 255, 0.16);
}

.orbit-dot {
    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        var(--accent-light);

    box-shadow:
        0 0 16px rgba(139, 124, 255, 0.8);
}

.dot-one {
    top: -4px;
    left: 50%;
}

.dot-two {
    right: 8px;
    bottom: 28px;
}

.dot-three {
    left: 15px;
    bottom: 40px;
}

@keyframes orbitRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   41. SPAM DETECTOR VISUAL
   ========================================================= */

.spam-project {
    background:
        radial-gradient(circle at center,
            rgba(101, 230, 161, 0.055),
            transparent 40%);
}

.spam-interface {
    width: 75%;

    padding: 28px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 15px;

    background:
        rgba(5, 5, 7, 0.80);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.42);
}

.spam-header {
    padding-bottom: 18px;

    border-bottom:
        1px solid var(--border);

    color: var(--text-dim);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;
}

.message-line {
    width: 90%;
    height: 8px;

    margin-top: 22px;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.11);
}

.message-line.medium {
    width: 65%;
}

.message-line.short {
    width: 42%;
}

.spam-result {
    margin-top: 35px;

    padding-top: 20px;

    border-top:
        1px solid var(--border);

    display: flex;
    justify-content: space-between;
}

.spam-result span {
    color: var(--text-dim);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.spam-result strong {
    color: var(--green);

    font-size: 11px;
}


/* =========================================================
   42. EXPENSE VISUAL
   ========================================================= */

.expense-project {
    justify-content: space-evenly;

    background:
        radial-gradient(circle at 35% 50%,
            rgba(56, 217, 255, 0.05),
            transparent 30%);
}

.expense-chart {
    height: 180px;

    display: flex;
    align-items: end;

    gap: 16px;
}

.chart-bar {
    width: 34px;

    border-radius:
        8px 8px 3px 3px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.86),
            rgba(139, 124, 255, 0.32));

    transform-origin: bottom;

    animation:
        chartAnimation 3s ease-in-out infinite alternate;
}

.bar-one {
    height: 40%;
}

.bar-two {
    height: 65%;
}

.bar-three {
    height: 48%;
}

.bar-four {
    height: 82%;
}

.bar-five {
    height: 60%;
}

@keyframes chartAnimation {

    from {
        transform: scaleY(0.76);
    }

    to {
        transform: scaleY(1);
    }
}

.expense-total {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.expense-total span {
    color: var(--text-dim);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;
}

.expense-total strong {
    font-family: var(--display-font);

    font-size: 38px;

    letter-spacing: -2px;

    color: var(--white);
}


/* =========================================================
   43. PROJECT INFO
   ========================================================= */

.project-info {
    position: relative;

    z-index: 3;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-top: 28px;
}

.project-info h3 {
    font-family: var(--display-font);

    font-size: 27px;

    letter-spacing: -1.5px;
}

.project-info p {
    max-width: 600px;

    margin-top: 9px;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.75;
}

.project-arrow {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border:
        1px solid var(--border);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.018);

    color: var(--text-soft);

    transition:
        transform 0.4s var(--ease),
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.project-arrow:hover {
    transform:
        rotate(8deg) translateY(-3px);

    background:
        #ffffff;

    color:
        #08080b;

    border-color:
        #ffffff;
}


/* =========================================================
   44. TECHNOLOGY TAGS
   ========================================================= */

.project-tech {
    position: relative;

    z-index: 3;

    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 21px;
}

.project-tech span {
    padding:
        7px 10px;

    border:
        1px solid var(--border);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.015);

    color: var(--text-dim);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.7px;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.project-card:hover .project-tech span {
    border-color:
        rgba(255, 255, 255, 0.11);
}


/* =========================================================
   45. PROJECT FOOTER
   ========================================================= */

.projects-footer {
    display: flex;
    align-items: center;

    gap: 20px;

    margin-top: 75px;

    color: var(--text-dim);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;
}

.projects-line {
    flex: 1;

    height: 1px;

    background:
        linear-gradient(90deg,
            var(--border),
            rgba(139, 124, 255, 0.22),
            var(--border));
}


/* =========================================================
   46. CONTACT SECTION
   ========================================================= */

.contact-section {
    position: relative;

    padding:
        170px 6% 80px;

    overflow: hidden;

    isolation: isolate;

    background:
        radial-gradient(circle at 20% 30%,
            rgba(99, 102, 241, 0.09),
            transparent 28%),
        radial-gradient(circle at 90% 80%,
            rgba(56, 217, 255, 0.06),
            transparent 25%),
        #05070b;

    color: #ffffff;
}

.contact-section::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.012),
            transparent 35%);

    pointer-events: none;
}

.contact-container {
    position: relative;

    z-index: 3;

    width:
        min(1200px,
            100%);

    margin: auto;
}

.contact-bg-text {
    position: absolute;

    top: 30px;
    left: 50%;

    transform:
        translateX(-50%);

    font-family: var(--display-font);

    font-size:
        clamp(100px,
            18vw,
            280px);

    font-weight: 800;

    line-height: 1;

    letter-spacing: -0.08em;

    color:
        rgba(255, 255, 255, 0.025);

    white-space: nowrap;

    pointer-events: none;

    z-index: -2;
}

.contact-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(130px);

    opacity: 0.13;

    pointer-events: none;
}

.contact-glow-one {
    top: 10%;
    left: -240px;

    background:
        #635bff;
}

.contact-glow-two {
    bottom: -100px;
    right: -200px;

    background:
        #06b6d4;
}


/* =========================================================
   47. CONTACT HEADER
   ========================================================= */

.contact-header {
    max-width: 900px;

    margin-bottom: 75px;
}

.contact-kicker,
.contact-small-label,
.form-top>span,
.contact-socials>span {
    display: inline-block;

    font-family: var(--display-font);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.17em;

    color: #8f9aac;
}

.contact-kicker {
    margin-bottom: 22px;

    color:
        var(--accent-light);
}

.contact-header h2 {
    margin: 0;

    font-family: var(--display-font);

    font-size:
        clamp(50px,
            6.2vw,
            88px);

    line-height: 0.96;

    letter-spacing: -0.055em;

    font-weight: 700;
}

.contact-header h2 span {
    display: block;

    color:
        transparent;

    background:
        linear-gradient(100deg,
            #ffffff,
            #a9a1ff,
            #67ddff);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-stroke:
        0 transparent;
}

.contact-header p {
    max-width: 670px;

    margin-top: 28px;

    color: #8f9aac;

    font-size: 16px;

    line-height: 1.85;
}


/* =========================================================
   48. CONTACT GRID
   ========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 75px;

    align-items: start;
}


/* =========================================================
   49. CONTACT INFO
   ========================================================= */

.contact-info {
    padding-top: 10px;
}

.contact-info-top h3 {
    margin:
        17px 0;

    font-family: var(--display-font);

    font-size: 30px;

    line-height: 1.2;

    letter-spacing: -1px;
}

.contact-info-top p {
    max-width: 480px;

    color: #8f9aac;

    font-size: 14px;

    line-height: 1.85;

    margin-bottom: 32px;
}


/* =========================================================
   50. CONTACT DETAILS
   ========================================================= */

.contact-detail {
    position: relative;

    display: flex;
    align-items: center;

    gap: 17px;

    width: 100%;

    padding:
        19px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.075);

    color: #ffffff;

    text-decoration: none;

    transition:
        transform 0.35s var(--ease),
        border-color 0.3s ease;
}

.contact-detail:hover {
    transform: translateX(7px);

    border-color:
        rgba(139, 124, 255, 0.25);
}

.contact-detail-icon {
    width: 47px;
    height: 47px;

    flex:
        0 0 47px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-radius: 14px;

    background:
        linear-gradient(135deg,
            rgba(139, 124, 255, 0.08),
            rgba(255, 255, 255, 0.025));

    color:
        var(--accent-light);
}

.contact-detail div:nth-child(2) {
    display: flex;
    flex-direction: column;

    gap: 5px;

    min-width: 0;
}

.contact-detail div:nth-child(2) span {
    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 0.13em;

    color: #5e6878;
}

.contact-detail strong {
    font-size: 13px;

    font-weight: 600;

    overflow-wrap: anywhere;
}

.contact-detail-arrow {
    margin-left: auto;

    flex-shrink: 0;

    color: #5e6878;

    font-size: 10px;

    transition:
        transform 0.3s var(--ease),
        color 0.3s ease;
}

.contact-detail:hover .contact-detail-arrow {
    transform: translate(3px, -3px);

    color:
        var(--accent-light);
}


/* =========================================================
   51. CONTACT SOCIALS
   ========================================================= */

.contact-socials {
    margin-top: 38px;
}

.contact-socials>span {
    margin-bottom: 14px;
}

.contact-socials>div {
    display: flex;

    gap: 9px;
}

.contact-socials a {
    width: 41px;
    height: 41px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-radius: 50%;

    color: #aeb6c5;

    background:
        rgba(255, 255, 255, 0.02);

    transition:
        transform 0.35s var(--ease),
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.contact-socials a:hover {
    transform: translateY(-5px);

    color: #ffffff;

    background:
        rgba(139, 124, 255, 0.12);

    border-color:
        rgba(139, 124, 255, 0.35);
}


/* =========================================================
   52. CONTACT FORM CARD
   ========================================================= */

.contact-form-wrapper {
    position: relative;

    padding: 34px;

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-radius:
        var(--radius-lg);

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018));

    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.38),
        inset 0 1px rgba(255, 255, 255, 0.05);

    backdrop-filter:
        blur(22px) saturate(130%);

    -webkit-backdrop-filter:
        blur(22px) saturate(130%);
}

.contact-form-wrapper::before {
    content: "";

    position: absolute;

    top: 0;
    left: 15%;

    width: 70%;
    height: 1px;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(139, 124, 255, 0.55),
            transparent);
}

.form-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 31px;
}

.form-status {
    display: flex;
    align-items: center;

    gap: 8px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.12em;

    color: #8f9aac;
}

.form-status span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        #4ade80;

    box-shadow:
        0 0 15px rgba(74, 222, 128, 0.75);
}


/* =========================================================
   53. FORM GROUP
   ========================================================= */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #cbd2dd;

    font-size: 11px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;

    border:
        1px solid rgba(255, 255, 255, 0.085);

    outline: none;

    border-radius: 12px;

    padding:
        14px 15px;

    background:
        rgba(255, 255, 255, 0.025);

    color: #ffffff;

    font-family: var(--body-font);

    font-size: 13px;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s var(--ease);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color:
        rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color:
        #505a6a;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color:
        rgba(139, 124, 255, 0.60);

    background:
        rgba(139, 124, 255, 0.045);

    box-shadow:
        0 0 0 4px rgba(139, 124, 255, 0.075),
        0 12px 35px rgba(0, 0, 0, 0.15);
}

.form-group textarea {
    min-height: 130px;

    resize: vertical;
}


/* =========================================================
   54. CONTACT SUBMIT
   ========================================================= */

.contact-submit {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: none;
    outline: none;

    border-radius: 13px;

    padding:
        17px 19px;

    background:
        linear-gradient(135deg,
            #ffffff,
            #e8eaff);

    color:
        #08090c;

    cursor: pointer;

    font-family: var(--display-font);

    font-size: 13px;
    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(255, 255, 255, 0.07);

    transition:
        transform 0.35s var(--ease),
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.contact-submit:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(139, 124, 255, 0.17);
}

.contact-submit i {
    transition:
        transform 0.35s var(--ease);
}

.contact-submit:hover i {
    transform: translateX(5px);
}


/* =========================================================
   55. FORM MESSAGE
   ========================================================= */

.contact-form-message {
    min-height: 18px;

    margin-top: 14px;

    text-align: center;

    color: #8f9aac;

    font-size: 12px;
}


/* =========================================================
   56. CONTACT BOTTOM
   ========================================================= */

.contact-bottom {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    margin-top: 85px;

    padding-top: 23px;

    border-top:
        1px solid rgba(255, 255, 255, 0.075);

    color: #4f5968;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.13em;
}


/* =========================================================
   57. AI ASSISTANT RESERVED AREA
   ========================================================= */

.ai-assistant {
    display: none;
}


/* =========================================================
   58. DESKTOP LARGE
   ========================================================= */

@media (min-width: 1500px) {

    .hero-container {
        gap: 120px;
    }

    .hero-title {
        font-size: 150px;
    }

    .developer-card {
        min-height: 690px;
    }

    .floating-intro {
        min-height: 900px;
    }
}


/* =========================================================
   59. TABLET
   ========================================================= */

@media (max-width: 1100px) {

    :root {
        --nav-height: 76px;
    }

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-container {
        min-height: var(--nav-height);
    }

    /* Mobile navigation */

    .nav-menu {
        position: fixed;

        top: var(--nav-height);
        left: 18px;
        right: 18px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px;

        border:
            1px solid var(--border-strong);

        border-radius: 22px;

        background:
            rgba(10, 11, 15, 0.94);

        backdrop-filter:
            blur(25px) saturate(150%);

        -webkit-backdrop-filter:
            blur(25px) saturate(150%);

        box-shadow:
            0 30px 80px rgba(0, 0, 0, 0.50);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-15px) scale(0.98);

        pointer-events: none;

        transition:
            opacity 0.35s ease,
            visibility 0.35s ease,
            transform 0.45s var(--ease);

        z-index: 20;
    }

    body.menu-open .nav-menu {
        opacity: 1;

        visibility: visible;

        transform:
            translateY(0) scale(1);

        pointer-events: auto;
    }

    .nav-link {
        padding: 17px 15px;

        border-radius: 13px;

        font-size: 13px;
    }

    .nav-link:hover,
    .nav-link.active {
        background:
            rgba(139, 124, 255, 0.07);
    }

    .nav-link::before {
        display: none;
    }

    .hero {
        min-height: auto;

        padding:
            150px 0 120px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 90px;
    }

    .hero-content {
        max-width: 900px;
    }

    .hero-visual {
        max-width: 680px;

        margin: auto;
    }

    .developer-card {
        min-height: 600px;
    }

    .scroll-indicator {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .about-stats {
        max-width: 650px;
    }

    .skills-area {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .projects-header {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .contact-info {
        max-width: 720px;
    }
}


/* =========================================================
   60. TABLET SMALL
   ========================================================= */

@media (max-width: 900px) {

    .nav-container,
    .hero-container {
        width:
            calc(100% - 50px);
    }

    .hero-title {
        font-size:
            clamp(70px,
                13vw,
                115px);
    }

    .hero-visual {
        width: 100%;
    }

    .floating-intro {
        min-height: 800px;

        padding:
            130px 40px 120px;
    }

    .floating-intro-content {
        width: 100%;

        padding-top: 120px;
    }

    .floating-intro-text {
        left: 40px;
    }

    .floating-intro-text span {
        font-size:
            clamp(70px,
                15vw,
                155px);

        letter-spacing: -8px;
    }

    .about-section {
        padding:
            130px 40px 140px;
    }

    .projects-container {
        width:
            calc(100% - 50px);
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-large,
    .project-wide {
        grid-column: span 1;
    }

    .project-card {
        min-height: auto;
    }

    .project-visual {
        height: 330px;
    }

    .contact-section {
        padding:
            120px 5% 80px;
    }
}


/* =========================================================
   61. MOBILE
   ========================================================= */

@media (max-width: 600px) {

    :root {
        --radius-lg: 22px;
        --radius-xl: 25px;
    }

    .nav-container {
        width:
            calc(100% - 30px);

        min-height: 70px;
    }

    .logo-text {
        display: none;
    }

    .logo-mark {
        width: 40px;
        height: 40px;
    }

    .mobile-menu-btn {
        width: 42px;
        height: 42px;
    }

    .nav-menu {
        top: 80px;
        left: 12px;
        right: 12px;
    }

    /* Hero */

    .hero {
        padding:
            115px 0 85px;
    }

    .hero-container {
        width:
            calc(100% - 30px);

        gap: 65px;
    }

    .hero-eyebrow {
        margin-bottom: 25px;

        font-size: 8px;

        letter-spacing: 1.2px;
    }

    .hero-title {
        font-size:
            clamp(57px,
                17vw,
                88px);

        line-height: 0.86;

        letter-spacing: -5px;
    }

    .hero-role {
        margin-top: 30px;

        font-size: 11px;
    }

    .role-line {
        width: 28px;
    }

    .hero-description {
        margin-top: 17px;

        font-size: 13px;

        line-height: 1.8;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;

        gap: 9px;

        margin-top: 28px;
    }

    .btn {
        width: 100%;

        min-height: 51px;
    }

    .hero-socials {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;

        margin-top: 30px;
    }

    .social-links {
        gap: 6px;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    /* Developer card */

    .developer-card {
        min-height: 430px;

        padding: 20px;

        border-radius: 22px;
    }

    .developer-initials {
        font-size: 135px;

        letter-spacing: -14px;
    }

    .developer-card-bottom {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .floating-code {
        padding:
            7px 9px;

        font-size: 8px;
    }

    .music-card {
        margin:
            -25px 8px 0;

        padding: 15px;

        border-radius: 16px;
    }

    /* Intro */

    .floating-intro {
        min-height: 760px;

        padding:
            110px 20px 100px;
    }

    .floating-intro-text {
        top: 65px;
        left: 20px;
    }

    .floating-intro-text span {
        font-size:
            clamp(58px,
                17vw,
                105px);

        letter-spacing: -5px;
    }

    .floating-intro-content {
        padding-top: 95px;
    }

    .floating-intro-content h2 {
        font-size:
            clamp(42px,
                13vw,
                72px);

        line-height: 0.94;

        letter-spacing: -4px;
    }

    .floating-intro-content p {
        max-width: 100%;

        margin-top: 24px;

        font-size: 13px;

        line-height: 1.8;
    }

    .tech-marquee {
        bottom: 32px;

        padding: 13px 0;
    }

    .tech-marquee-track {
        gap: 18px;
    }

    .tech-marquee-track span {
        font-size: 8px;

        letter-spacing: 1.5px;
    }

    /* About */

    .about-section {
        padding:
            105px 20px 110px;
    }

    .about-heading {
        margin-bottom: 60px;
    }

    .about-heading h2 {
        font-size:
            clamp(44px,
                13vw,
                72px);

        letter-spacing: -4px;
    }

    .about-large-text {
        font-size: 24px;

        line-height: 1.3;
    }

    .about-description {
        margin-top: 22px;

        font-size: 13px;

        line-height: 1.8;
    }

    .about-actions {
        align-items: flex-start;

        flex-direction: column;

        gap: 17px;

        margin-top: 28px;
    }

    .about-stats {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .about-stat {
        min-height: 125px;

        padding: 18px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 7px;
    }

    .skills-area {
        margin-top: 75px;

        gap: 20px;
    }

    .skills-list {
        gap: 7px;
    }

    .skills-list span {
        padding:
            8px 11px;

        font-size: 8px;
    }

    /* Projects */

    .projects-section {
        padding:
            115px 0 100px;
    }

    .projects-container {
        width:
            calc(100% - 30px);
    }

    .projects-bg-text {
        top: 55px;

        font-size: 100px;

        letter-spacing: -8px;
    }

    .projects-header {
        margin-bottom: 55px;

        gap: 25px;
    }

    .projects-header h2 {
        font-size:
            clamp(50px,
                14vw,
                76px);

        letter-spacing: -5px;
    }

    .projects-header>p {
        font-size: 13px;

        line-height: 1.8;
    }

    .project-card {
        padding: 18px;

        border-radius: 20px;
    }

    .project-visual {
        height: 245px;

        margin-top: 20px;

        border-radius: 15px;
    }

    .project-ui-window {
        width: 88%;
    }

    .window-content {
        padding: 20px;
    }

    .ui-box-row {
        gap: 7px;

        margin-top: 25px;
    }

    .ui-box-row div {
        height: 52px;
    }

    .ai-orbit {
        width: 150px;
        height: 150px;
    }

    .ai-core {
        width: 58px;
        height: 58px;

        font-size: 12px;
    }

    .spam-interface {
        width: 90%;

        padding: 20px;
    }

    .expense-chart {
        height: 130px;

        gap: 10px;
    }

    .chart-bar {
        width: 25px;
    }

    .expense-total strong {
        font-size: 30px;
    }

    .project-info {
        align-items: flex-start;

        gap: 18px;

        margin-top: 22px;
    }

    .project-info h3 {
        font-size: 21px;
    }

    .project-info p {
        font-size: 12px;
    }

    .project-arrow {
        width: 40px;
        height: 40px;
    }

    .project-tech {
        margin-top: 17px;
    }

    .project-tech span {
        padding:
            6px 8px;

        font-size: 7px;
    }

    .projects-footer {
        flex-wrap: wrap;

        gap: 12px;

        margin-top: 55px;
    }

    .projects-line {
        order: 3;

        flex-basis: 100%;
    }

    /* Contact */

    .contact-section {
        padding:
            90px 20px 65px;
    }

    .contact-bg-text {
        top: 55px;

        font-size: 95px;
    }

    .contact-header {
        margin-bottom: 55px;
    }

    .contact-header h2 {
        font-size:
            clamp(43px,
                12vw,
                60px);

        letter-spacing: -4px;
    }

    .contact-header p {
        margin-top: 22px;

        font-size: 13px;

        line-height: 1.8;
    }

    .contact-grid {
        gap: 48px;
    }

    .contact-info-top h3 {
        font-size: 25px;
    }

    .contact-info-top p {
        font-size: 13px;
    }

    .contact-detail {
        gap: 13px;

        padding:
            17px 0;
    }

    .contact-detail-icon {
        width: 43px;
        height: 43px;

        flex-basis: 43px;
    }

    .contact-detail strong {
        font-size: 11px;
    }

    .contact-form-wrapper {
        padding: 21px;

        border-radius: 20px;
    }

    .form-top {
        margin-bottom: 25px;
    }

    .form-top>span {
        font-size: 8px;
    }

    .form-status {
        font-size: 8px;
    }

    .form-group {
        margin-bottom: 17px;
    }

    .form-group label {
        font-size: 10px;
    }

    .form-group input,
    .form-group textarea {
        padding:
            13px;

        font-size: 12px;
    }

    .contact-submit {
        padding:
            15px 17px;

        font-size: 12px;
    }

    .contact-bottom {
        flex-direction: column;

        gap: 9px;

        margin-top: 60px;
    }
}


/* =========================================================
   62. VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 380px) {

    .hero-title {
        font-size: 54px;

        letter-spacing: -4px;
    }

    .developer-card {
        min-height: 390px;
    }

    .developer-initials {
        font-size: 112px;

        letter-spacing: -12px;
    }

    .floating-intro-content h2 {
        font-size: 40px;
    }

    .about-heading h2 {
        font-size: 41px;
    }

    .projects-header h2 {
        font-size: 47px;
    }

    .about-stat {
        padding: 15px;
    }

    .stat-number {
        font-size: 24px;
    }

    .project-info {
        flex-direction: column;
    }

    .project-arrow {
        align-self: flex-start;
    }

    .contact-header h2 {
        font-size: 40px;
    }
}


/* =========================================================
   63. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================================
   NITIN PANDEY — CLEAN MASTER OVERRIDE
   ---------------------------------------------------------
   This block intentionally replaces the conflicting late
   overrides from the previous stylesheet. HTML / JS unchanged.
   ========================================================= */

/* ---------- GLOBAL ---------- */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

section {
    position: relative;
    overflow: hidden;
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100svh;
    height: auto;
    padding: 92px 0 46px;
    display: flex;
    align-items: center;
}

.hero-container {
    width: min(1480px, calc(100% - 72px));
    max-width: 1480px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, .68fr);
    gap: 62px;
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 900px;
}

.hero-eyebrow {
    margin-bottom: 34px;
}

.hero-title {
    font-size: clamp(78px, 8.5vw, 150px) !important;
    line-height: .84 !important;
    letter-spacing: -.075em !important;
    max-width: 900px;
}

.hero-role {
    margin-top: 42px;
    font-size: 15px;
}

.hero-description {
    max-width: 680px;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.75;
}

.hero-actions {
    margin-top: 34px;
}

.hero-socials {
    margin-top: 34px;
}

.hero-visual {
    width: 100%;
    max-width: 560px;
    height: min(680px, calc(100svh - 145px));
    min-height: 560px;
    margin-left: auto;
    position: relative;
}

.developer-card {
    width: 100%;
    height: 100%;
    min-height: 0 !important;
    padding: 28px;
    border-radius: 30px;
}

.developer-initials {
    font-size: clamp(190px, 17vw, 300px);
    letter-spacing: -.09em;
}

/* Music card is anchored to the developer card instead of
   participating in normal document flow. This removes the
   large empty gap underneath it. */
.music-card {
    position: absolute !important;
    left: 22px;
    right: 22px;
    bottom: 22px;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 15px 17px !important;
    border-radius: 18px !important;
    z-index: 30;
}

.music-info {
    gap: 12px;
}

.music-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
}

.music-label {
    margin-bottom: 3px;
    font-size: 8px;
}

.music-info h3 {
    font-size: 14px;
    line-height: 1.2;
}

.music-info p {
    margin-top: 2px;
    font-size: 9px;
}

.music-card audio,
#featuredAudio {
    width: 100% !important;
    height: 32px !important;
    margin-top: 11px !important;
}

/* ---------- PREMIUM INTRO ---------- */
.floating-intro {
    min-height: 690px;
    height: auto;
    padding: 105px 0 92px;
}

.floating-intro-content {
    width: min(1280px, calc(100% - 80px));
    margin: 0 auto;
    padding-top: 0 !important;
    text-align: center;
}

.intro-label {
    margin-bottom: 34px;
    padding: 12px 27px;
    font-size: 15px;
    letter-spacing: .20em;
}

.floating-intro-content h2 {
    max-width: 1280px;
    margin: 0 auto;
    font-size: clamp(62px, 7.4vw, 132px) !important;
    line-height: .90 !important;
    letter-spacing: -.065em !important;
}

.floating-intro-content h2 span {
    display: block;
    margin-top: 3px;
    -webkit-text-stroke: 1.5px rgba(245, 242, 223, .72);
}

.floating-intro-content p {
    max-width: 720px;
    margin: 34px auto 0;
    font-size: 17px;
    line-height: 1.7;
}

.tech-marquee {
    position: absolute !important;
    left: 0;
    right: 0;
    bottom: 28px;
    width: 100%;
    margin: 0 !important;
    height: 54px;
    padding: 0;
}

.tech-marquee-track {
    min-width: max-content;
}

.tech-marquee-track span {
    font-size: 10px;
    letter-spacing: .20em;
    margin: 0 21px;
}

/* ---------- ABOUT ---------- */
.about-section {
    padding: 145px max(6vw, 55px) 155px !important;
}

.about-container {
    width: min(1380px, 100%);
    margin: 0 auto;
}

.about-heading {
    max-width: 1180px;
    margin-bottom: 72px;
}

.about-kicker {
    margin-bottom: 22px;
    font-size: 10px;
    letter-spacing: .25em;
}

.about-heading h2 {
    font-size: clamp(58px, 6.5vw, 112px) !important;
    line-height: .91 !important;
    letter-spacing: -.065em !important;
}

.about-heading h2 span {
    display: block;
}

.about-grid {
    grid-template-columns: minmax(0, 1.22fr) minmax(350px, .78fr);
    gap: 82px;
    align-items: start;
}

.about-main {
    max-width: 820px;
}

.about-large-text {
    max-width: 850px;
    font-size: clamp(28px, 2.55vw, 42px);
    line-height: 1.28;
    letter-spacing: -.035em;
}

.about-description {
    max-width: 760px;
    margin-top: 27px;
    font-size: 16px;
    line-height: 1.85;
}

.about-actions {
    margin-top: 32px;
    gap: 22px;
}

.about-btn {
    padding: 14px 20px;
    font-size: 11px;
}

.about-stats {
    margin-top: 0 !important;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.about-stat {
    min-height: 165px;
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-number {
    font-family: var(--display-font);
    font-size: clamp(34px, 3vw, 50px);
    font-weight: 700;
    letter-spacing: -.05em;
}

.stat-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Skills remain part of About, but get their own visual rhythm. */
.skills-area {
    margin-top: 92px;
    padding-top: 26px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 55px;
    border-top: 1px solid var(--border);
}

.skills-title span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .22em;
    color: var(--text-dim);
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.skills-list span {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, .018);
    color: var(--text-soft);
    font-size: 10px;
    font-weight: 600;
    transition: transform .3s var(--ease), border-color .3s ease, background .3s ease;
}

.skills-list span:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 124, 255, .35);
    background: rgba(139, 124, 255, .06);
}

/* ---------- SELECTED WORK ---------- */
.projects-section {
    padding: 155px 0 145px !important;
}

.projects-container {
    width: min(1380px, calc(100% - 80px));
    margin: 0 auto;
}

.projects-header {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .48fr);
    gap: 70px;
    margin-bottom: 70px;
    align-items: end;
}

.projects-kicker {
    margin-bottom: 21px;
    font-size: 10px;
    letter-spacing: .25em;
}

.projects-header h2 {
    font-size: clamp(58px, 7vw, 118px) !important;
    line-height: .90 !important;
    letter-spacing: -.065em !important;
}

.projects-header>p {
    max-width: 430px;
    font-size: 14px;
    line-height: 1.85;
}

.projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.project-card {
    min-height: 520px;
    padding: 26px;
    border-radius: 26px;
}

.project-info {
    margin-top: 25px;
}

.project-info h3 {
    font-size: 27px;
}

.project-info p {
    font-size: 13px;
    line-height: 1.75;
}

.project-tech {
    margin-top: 19px;
}

/* ---------- CONTACT ---------- */
.contact-section {
    padding-top: 150px;
}

/* ---------- TABLET ---------- */
@media (max-width: 1100px) {
    .hero {
        min-height: auto;
        padding: 125px 0 95px;
    }

    .hero-container {
        width: calc(100% - 50px);
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .hero-content {
        max-width: 900px;
    }

    .hero-visual {
        width: min(680px, 100%);
        height: 590px;
        min-height: 0;
        margin: 0 auto;
    }

    .developer-card {
        height: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-stats {
        max-width: 760px;
    }

    .projects-header {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .projects-header>p {
        max-width: 620px;
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 700px) {
    .hero {
        padding: 105px 0 75px;
    }

    .hero-container {
        width: calc(100% - 30px);
        gap: 55px;
    }

    .hero-title {
        font-size: clamp(56px, 16.5vw, 88px) !important;
        line-height: .86 !important;
        letter-spacing: -.065em !important;
    }

    .hero-role {
        margin-top: 28px;
        font-size: 11px;
    }

    .hero-description {
        font-size: 13px;
        line-height: 1.8;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 27px;
    }

    .btn {
        width: 100%;
    }

    .hero-socials {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 27px;
    }

    .hero-visual {
        width: 100%;
        height: 445px;
    }

    .developer-card {
        padding: 20px;
        border-radius: 22px;
    }

    .developer-initials {
        font-size: 135px;
        letter-spacing: -.10em;
    }

    .music-card {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 13px 14px !important;
        border-radius: 16px !important;
    }

    .floating-intro {
        min-height: 610px;
        padding: 88px 0 80px;
    }

    .floating-intro-content {
        width: calc(100% - 32px);
    }

    .intro-label {
        margin-bottom: 28px;
        padding: 11px 21px;
        font-size: 13px;
    }

    .floating-intro-content h2 {
        font-size: clamp(43px, 12.8vw, 72px) !important;
        line-height: .94 !important;
    }

    .floating-intro-content p {
        margin-top: 27px;
        font-size: 14px;
        line-height: 1.75;
    }

    .tech-marquee {
        bottom: 22px;
        height: 50px;
    }

    .tech-marquee-track span {
        font-size: 8px;
        margin: 0 15px;
    }

    .about-section {
        padding: 105px 20px 110px !important;
    }

    .about-heading {
        margin-bottom: 55px;
    }

    .about-heading h2 {
        font-size: clamp(44px, 12.5vw, 72px) !important;
        letter-spacing: -.06em !important;
    }

    .about-grid {
        gap: 45px;
    }

    .about-large-text {
        font-size: 25px;
        line-height: 1.32;
    }

    .about-description {
        margin-top: 20px;
        font-size: 13px;
        line-height: 1.8;
    }

    .about-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-top: 25px;
    }

    .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-stat {
        min-height: 125px;
        padding: 18px;
    }

    .stat-number {
        font-size: 29px;
    }

    .stat-label {
        font-size: 7px;
    }

    .skills-area {
        margin-top: 68px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .skills-list {
        gap: 7px;
    }

    .skills-list span {
        padding: 8px 11px;
        font-size: 8px;
    }

    .projects-section {
        padding: 110px 0 100px !important;
    }

    .projects-container {
        width: calc(100% - 30px);
    }

    .projects-header {
        margin-bottom: 52px;
    }

    .projects-header h2 {
        font-size: clamp(50px, 13.5vw, 76px) !important;
    }

    .projects-header>p {
        font-size: 13px;
        line-height: 1.8;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .project-card {
        min-height: auto;
        padding: 18px;
        border-radius: 20px;
    }

    .project-visual {
        height: 245px;
        margin-top: 18px;
    }

    .project-info {
        margin-top: 20px;
        gap: 15px;
    }

    .project-info h3 {
        font-size: 21px;
    }

    .project-info p {
        font-size: 12px;
    }

    .project-tech {
        margin-top: 16px;
    }

    .contact-section {
        padding: 90px 20px 65px;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 52px !important;
    }

    .hero-visual {
        height: 405px;
    }

    .floating-intro-content h2 {
        font-size: 40px !important;
    }

    .about-heading h2 {
        font-size: 40px !important;
    }

    .projects-header h2 {
        font-size: 46px !important;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* =========================================================
   WHATSAPP + CALL SOCIAL ICONS
   ========================================================= */

.social-link.whatsapp-link,
.social-link.call-link,
.contact-socials a#contactWhatsapp,
.contact-socials a#contactCall {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-link.whatsapp-link:hover,
.social-link.call-link:hover,
.contact-socials a#contactWhatsapp:hover,
.contact-socials a#contactCall:hover {
    transform: translateY(-3px);
}


/* =====================================================
   MUSIC PLAYLIST
   ===================================================== */

.music-playlist {
    width: 100%;
    margin-top: 25px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.playlist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.playlist-header h3 {
    margin: 0;
    font-size: 18px;
}

.playlist-header span {
    font-size: 13px;
    opacity: 0.65;
}

.playlist-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 360px;
    overflow-y: auto;
}

.playlist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: inherit;
    cursor: pointer;
    text-align: left;
    transition: 0.25s ease;
}

.playlist-item:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateX(3px);
}

.playlist-item.active {
    background: rgba(255, 255, 255, 0.14);
}

.playlist-number {
    min-width: 25px;
    font-size: 13px;
    opacity: 0.6;
}

.playlist-play {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.12);
}

.playlist-item.active .playlist-play {
    background: rgba(255, 255, 255, 0.22);
}

.playlist-name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.playlist-status {
    font-size: 12px;
    opacity: 0.6;
}

@media (max-width: 600px) {

    .music-playlist {
        padding: 15px;
    }

    .playlist-item {
        padding: 10px 11px;
    }

    .playlist-name {
        font-size: 13px;
    }

}


/* =====================================================
   MUSIC PLAYLIST
   ===================================================== */

.music-playlist {
    width: 100%;
    margin-top: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
}

/* =====================================================
   PREMIUM PLAYLIST HEADER
   ===================================================== */

.playlist-header {
    width: 100%;
    min-height: 145px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(139, 92, 246, 0.22),
            transparent 55%),
        linear-gradient(135deg,
            rgba(65, 55, 125, 0.55),
            rgba(15, 15, 28, 0.95));

    border-bottom:
        1px solid rgba(255, 255, 255, 0.12);

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


/* =====================================================
   PREMIUM LIGHT EFFECT
   ===================================================== */

.playlist-header::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);

    background:
        radial-gradient(circle,
            rgba(139, 92, 246, 0.28),
            transparent 70%);

    pointer-events: none;
}


/* =====================================================
   PLAYLIST TOGGLE
   ===================================================== */

.playlist-toggle {
    width: 100%;
    min-height: 95px;
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    outline: none;
    background: transparent;

    color: #ffffff;
    text-align: center;
    cursor: pointer;

    position: relative;
    z-index: 2;
}


/* =====================================================
   TITLE + SUBTITLE
   ===================================================== */

.playlist-toggle>span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
}


/* MAIN TITLE */

.playlist-toggle strong {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 0.4px;

    color: #ffffff;

    text-shadow:
        0 0 20px rgba(139, 92, 246, 0.25);
}


/* SUBTITLE */

.playlist-toggle small {
    margin: 0;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;

    color: rgba(220, 215, 255, 0.78);
}


/* =====================================================
   HOVER
   ===================================================== */

.playlist-header:hover {
    background:
        radial-gradient(circle at 50% 0%,
            rgba(139, 92, 246, 0.32),
            transparent 60%),
        linear-gradient(135deg,
            rgba(80, 65, 150, 0.65),
            rgba(15, 15, 28, 0.98));
}


/* =====================================================
   PREMIUM TITLE GLOW ON HOVER
   ===================================================== */

.playlist-header:hover .playlist-toggle strong {
    text-shadow:
        0 0 10px rgba(167, 139, 250, 0.45),
        0 0 25px rgba(139, 92, 246, 0.25);
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

    .playlist-header {
        min-height: 125px;
        padding: 22px 18px;
    }

    .playlist-toggle {
        min-height: 85px;
        padding: 15px;
    }

    .playlist-toggle strong {
        font-size: 19px;
    }

    .playlist-toggle small {
        font-size: 10px;
        letter-spacing: 2px;
    }

}


/* -----------------------------------------------------
   SHOW / HIDE PLAYLIST
   ----------------------------------------------------- */

.playlist-list {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition:
        max-height 0.4s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

.music-playlist.open .playlist-list {
    max-height: 520px;
    overflow-y: auto;
    opacity: 1;
    transform: translateY(0);
}


/* -----------------------------------------------------
   PLAYLIST SCROLLBAR
   ----------------------------------------------------- */

.playlist-list::-webkit-scrollbar {
    width: 5px;
}

.playlist-list::-webkit-scrollbar-track {
    background: transparent;
}

.playlist-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}


/* -----------------------------------------------------
   SONG BUTTON
   ----------------------------------------------------- */

.playlist-song {
    width: 100%;
    display: grid;
    grid-template-columns: 35px 1fr 30px;
    align-items: center;
    gap: 10px;

    padding: 12px 16px;

    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);

    background: transparent;
    color: inherit;

    text-align: left;
    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.2s ease;
}


/* -----------------------------------------------------
   SONG HOVER
   ----------------------------------------------------- */

.playlist-song:hover {
    background: rgba(255, 255, 255, 0.07);
}

.playlist-song:active {
    transform: scale(0.985);
}


/* -----------------------------------------------------
   SONG NUMBER
   ----------------------------------------------------- */

.playlist-number {
    font-size: 11px;
    opacity: 0.45;
    font-variant-numeric: tabular-nums;
}


/* -----------------------------------------------------
   SONG NAME
   ----------------------------------------------------- */

.playlist-song-name {
    min-width: 0;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    font-size: 13px;
    font-weight: 500;
}


/* -----------------------------------------------------
   SONG ICON
   ----------------------------------------------------- */

.playlist-song i {
    font-size: 12px;
    opacity: 0.45;
    text-align: center;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.playlist-song:hover i {
    opacity: 1;
    transform: scale(1.1);
}


/* -----------------------------------------------------
   ACTIVE SONG
   ----------------------------------------------------- */

.playlist-song.active {
    background: rgba(255, 255, 255, 0.09);
}

.playlist-song.active .playlist-number,
.playlist-song.active .playlist-song-name {
    font-weight: 700;
}

.playlist-song.active i {
    opacity: 1;
}


/* -----------------------------------------------------
   ACTIVE SONG ANIMATION
   ----------------------------------------------------- */

.playlist-song.active i {
    animation: playlistPlaying 1.2s ease-in-out infinite;
}

@keyframes playlistPlaying {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

}


/* -----------------------------------------------------
   MOBILE RESPONSIVE
   ----------------------------------------------------- */

@media (max-width: 600px) {

    .music-playlist {
        margin-top: 14px;
        border-radius: 15px;
    }

    .playlist-header {
        padding: 14px 15px;
    }

    .playlist-song {
        grid-template-columns: 30px 1fr 25px;
        padding: 11px 13px;
        gap: 8px;
    }

    .playlist-song-name {
        font-size: 12px;
    }

    .playlist-number {
        font-size: 10px;
    }

    .playlist-song i {
        font-size: 11px;
    }

}


/* =====================================================
   MUSIC PLAYLIST
   ===================================================== */

.music-playlist {
    width: 100%;
    margin-top: 18px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.045);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    overflow: hidden;
}


/* =====================================================
   PLAYLIST HEADER
   ===================================================== */

.playlist-header {
    width: 100%;
    padding: 16px 18px;
}


/* =====================================================
   PLAYLIST TOGGLE BUTTON
   ===================================================== */

.playlist-toggle {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0;

    border: 0;
    outline: none;

    background: transparent;
    color: inherit;

    text-align: left;

    cursor: pointer;
}


/* Playlist title + subtitle */

.playlist-toggle>span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.playlist-toggle strong {
    font-size: 15px;
    font-weight: 700;
}


.playlist-toggle small {
    margin-top: 4px;

    font-size: 11px;

    opacity: 0.55;
}


/* Arrow */

.playlist-toggle i {
    font-size: 13px;
    opacity: 0.65;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


.playlist-toggle:hover i {
    opacity: 1;
}


/* =====================================================
   PLAYLIST OPEN / CLOSE
   ===================================================== */

.playlist-list {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transform: translateY(-8px);

    transition:
        max-height 0.4s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}


.music-playlist.playlist-open .playlist-list {

    max-height: 520px;

    overflow-y: auto;

    opacity: 1;

    transform: translateY(0);
}

/* =====================================================
   PROFESSIONAL MUSIC PLAYLIST
   ===================================================== */

.music-playlist {
    width: 100%;
    margin-top: 22px;
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            rgba(35, 35, 55, 0.96),
            rgba(12, 12, 20, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    position: relative;
    z-index: 20;
}


/* =====================================================
   PLAYLIST HEADER
   ===================================================== */

.playlist-header {
    min-height: 90px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;

    background:
        linear-gradient(135deg,
            rgba(70, 65, 120, 0.42),
            rgba(20, 20, 35, 0.72));

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.playlist-header:hover {
    background:
        linear-gradient(135deg,
            rgba(90, 75, 160, 0.55),
            rgba(25, 25, 45, 0.85));
}

.playlist-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.2px;
}

.playlist-header span {
    margin-top: 5px;
    display: block;
    font-size: 13px;
    color: rgba(190, 180, 255, 0.9);
    letter-spacing: 0.6px;
}


/* =====================================================
   PLAYLIST LIST
   ===================================================== */

.playlist-list {
    display: none;
    max-height: 330px;
    overflow-y: auto;

    background:
        linear-gradient(180deg,
            rgba(10, 10, 18, 0.88),
            rgba(18, 18, 30, 0.96));
}


/* JS playlist-open CLASS */
.music-playlist.playlist-open .playlist-list {
    display: block !important;
}


/* =====================================================
   SONG BUTTON
   ===================================================== */

.playlist-song {
    width: 100%;
    min-height: 62px;
    padding: 12px 18px;

    display: grid;
    grid-template-columns: 35px 1fr 40px;
    align-items: center;
    gap: 15px;

    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    background: transparent;
    color: #eeeeee;

    text-align: left;
    cursor: pointer;

    transition:
        background 0.2s ease,
        padding-left 0.2s ease;
}


/* =====================================================
   SONG HOVER
   ===================================================== */

.playlist-song:hover {
    background:
        rgba(120, 95, 255, 0.12);

    padding-left: 23px;
}

.playlist-song:active {
    transform: scale(0.985);
}


/* =====================================================
   SONG NUMBER
   ===================================================== */

.playlist-number {
    min-width: 32px;

    font-size: 13px;
    font-weight: 700;

    color: rgba(255, 255, 255, 0.45);

    font-variant-numeric: tabular-nums;
}

.playlist-song.active .playlist-number {
    color: #a78bfa;
}


/* =====================================================
   SONG NAME
   IMPORTANT: JS uses .playlist-song-name
   ===================================================== */

.playlist-song-name {
    min-width: 0;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    font-size: 15px;
    font-weight: 600;

    color: #ffffff;
}

.playlist-song.active .playlist-song-name {
    font-weight: 700;
}


/* =====================================================
   PLAY ICON
   JS creates normal <i>
   ===================================================== */

.playlist-song i {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    justify-self: end;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.08);

    color: #ffffff;

    font-size: 12px;

    opacity: 0.85;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        opacity 0.2s ease;
}

.playlist-song:hover i {
    background:
        rgba(139, 92, 246, 0.8);

    transform: scale(1.05);

    opacity: 1;
}


/* =====================================================
   ACTIVE SONG
   ===================================================== */

.playlist-song.active {
    background:
        linear-gradient(90deg,
            rgba(115, 75, 255, 0.28),
            rgba(70, 50, 130, 0.12));

    box-shadow:
        inset 4px 0 0 #8b5cf6;
}

.playlist-song.active i {
    opacity: 1;

    animation:
        playlistPlaying 1.2s ease-in-out infinite;
}


/* =====================================================
   PLAYING ANIMATION
   ===================================================== */

@keyframes playlistPlaying {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}


/* =====================================================
   PLAYLIST SCROLLBAR
   ===================================================== */

.playlist-list::-webkit-scrollbar {
    width: 6px;
}

.playlist-list::-webkit-scrollbar-track {
    background:
        rgba(255, 255, 255, 0.03);
}

.playlist-list::-webkit-scrollbar-thumb {
    background:
        rgba(139, 92, 246, 0.55);

    border-radius: 10px;
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

    .music-playlist {
        margin-top: 14px;
        border-radius: 18px;
    }

    .playlist-header {
        min-height: 80px;
        padding: 18px 20px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .playlist-header h3 {
        font-size: 17px;
    }

    .playlist-header span {
        font-size: 12px;
    }

    .playlist-song {
        min-height: 58px;
        padding: 10px 14px;

        grid-template-columns:
            30px 1fr 35px;

        gap: 10px;
    }

    .playlist-song-name {
        font-size: 14px;
    }

    .playlist-number {
        font-size: 12px;
    }

    .playlist-song i {
        width: 31px;
        height: 31px;
        font-size: 11px;
    }
}