:root {
    --bg-color: #0a0a0a;
    --text-color: #f0f0f0;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Custom cursor */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Custom Cursor */
.cursor {
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
    mix-blend-mode: difference;
}

.cursor.active {
    width: 40px;
    height: 40px;
    background: #fff;
}

/* Main Content */
main {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    position: relative;
}

#logo {
    width: 35vw;
    /* Reduced from 50vw */
    max-width: 400px;
    /* Reduced from 600px */
    min-width: 250px;
    /* Reduced from 300px */
    height: auto;
    user-select: none;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    animation: logoPulse 3s ease-in-out infinite;
    transition: filter 0.3s ease;
}

#logo:hover {
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.3));
}

@keyframes logoPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.85;
    }
}

/* Tagline Image */
/* Tagline Image */
#tagline {
    position: absolute;
    top: 90%;
    /* Pushed further down (was 82%) */
    left: 48%;
    transform: translateX(-50%) translateY(10px);
    width: 30vw;
    /* Reduced from 40vw */
    max-width: 300px;
    /* Reduced from 400px */
    min-width: 200px;
    height: auto;
    opacity: 0;
    filter: blur(10px);
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.content:hover #tagline {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    filter: blur(0px);
    animation: taglineFloat 3s ease-in-out infinite;
}

@keyframes taglineFloat {

    0%,
    100% {
        transform: translateX(-50%) translateY(0px) scale(1);
    }

    50% {
        transform: translateX(-50%) translateY(-8px) scale(1.02);
    }
}

/* Tagline Top - "make. Music" */
#tagline-top {
    position: absolute;
    top: -45%;
    /* Pushed further up (was -35%) */
    left: 50%;
    transform: translateX(-50%) translateY(-15px);
    width: 25vw;
    /* Reduced from 35vw */
    max-width: 250px;
    /* Reduced from 350px */
    min-width: 180px;
    height: auto;
    opacity: 0;
    filter: blur(10px);
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.content:hover #tagline-top {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    filter: blur(0px);
    animation: taglineFloatTop 3s ease-in-out infinite;
}

@keyframes taglineFloatTop {

    0%,
    100% {
        transform: translateX(-50%) translateY(0px) scale(1);
    }

    50% {
        transform: translateX(-50%) translateY(8px) scale(1.02);
    }
}

/* Tagline Left - "artist. Driven" */
#tagline-left {
    position: absolute;
    top: 50%;
    left: -45%;
    /* Pushed further left (was -35%) */
    transform: translateY(-50%) translateX(-15px);
    width: 20vw;
    /* Reduced from 30vw */
    max-width: 200px;
    /* Reduced from 300px */
    min-width: 150px;
    height: auto;
    opacity: 0;
    filter: blur(10px);
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.content:hover #tagline-left {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    filter: blur(0px);
    animation: taglineFloatLeft 3s ease-in-out infinite;
}

@keyframes taglineFloatLeft {

    0%,
    100% {
        transform: translateY(-50%) translateX(0px) scale(1);
    }

    50% {
        transform: translateY(-50%) translateX(8px) scale(1.02);
    }
}

/* Tagline Right - "pure. Creative" */
#tagline-right {
    position: absolute;
    top: 50%;
    right: -45%;
    /* Pushed further right (was -35%) */
    transform: translateY(-50%) translateX(15px);
    width: 20vw;
    /* Reduced from 30vw */
    max-width: 200px;
    /* Reduced from 300px */
    min-width: 150px;
    height: auto;
    opacity: 0;
    filter: blur(10px);
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.content:hover #tagline-right {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    filter: blur(0px);
    animation: taglineFloatRight 3s ease-in-out infinite;
}

@keyframes taglineFloatRight {

    0%,
    100% {
        transform: translateY(-50%) translateX(0px) scale(1);
    }

    50% {
        transform: translateY(-50%) translateX(-8px) scale(1.02);
    }
}

/* Stats Section */
.stats-section {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
    padding: 100px 20px;
    overflow: hidden;
}

/* Decorative Background Images */
.stats-bg-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.stats-bg-img {
    position: absolute;
    width: 300px;
    height: 400px;
    object-fit: cover;
    opacity: 0;
    filter: grayscale(20%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
}

/* Hide playlist covers on desktop */
.playlist-float {
    display: none;
}

.stats-bg-img.visible {
    opacity: 0.5;
}

.stats-bg-img:hover {
    opacity: 0.7;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.img-bg-1 {
    top: 10%;
    left: 5%;
    width: 350px;
    height: 450px;
    animation: floatStats1 20s ease-in-out infinite;
    transition-delay: 0.2s;
}

.img-bg-2 {
    top: 65%;
    right: 8%;
    width: 600px;
    height: 340px;
    transform: translateY(-50%);
    animation: floatStats2 18s ease-in-out infinite;
    transition-delay: 0.4s;
}

.img-bg-3 {
    bottom: 10%;
    left: 8%;
    width: 380px;
    height: 480px;
    animation: floatStats3 22s ease-in-out infinite;
    transition-delay: 0.6s;
}

.img-bg-4 {
    top: 15%;
    right: 15%;
    width: 320px;
    height: 420px;
    animation: floatStats1 24s ease-in-out infinite;
    transition-delay: 0.8s;
}

@keyframes floatStats1 {

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

    50% {
        transform: translateY(-30px) translateX(20px) rotate(2deg);
    }
}

@keyframes floatStats2 {

    0%,
    100% {
        transform: translateY(-50%) translateX(0px) rotate(0deg);
    }

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

@keyframes floatStats3 {

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

    50% {
        transform: translateY(-25px) translateX(-15px) rotate(1deg);
    }
}

.stats-container {
    display: flex;
    gap: 120px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stat-number {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.stat-plus {
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.8;
}

.stat-label {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: rgba(255, 255, 255, 1);
}

/* Stats Tagline */
.stats-tagline {
    position: absolute;
    bottom: 350px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    font-size: clamp(0.9rem, 2vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.stats-tagline.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Optimize for 1080p screens */
@media screen and (max-height: 1080px) {
    .stats-tagline {
        bottom: 250px;
    }
}

@media screen and (max-height: 900px) {
    .stats-tagline {
        bottom: 150px;
    }
}

/* Services Section */
.services-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 100%);
    padding: 120px 40px;
    z-index: 1;
    overflow: hidden;
}

/* Carousel Background */
.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.25;
    /* Removed blur filter for performance */
    pointer-events: none;
}

.carousel-img {
    position: absolute;
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    /* Simplified shadow */
    animation: polaroidFloat 6s ease-in-out infinite;
    will-change: transform;
    /* Hint for browser optimization */
}

/* Scattered Polaroid Positions - Avoiding center area */
.carousel-img:nth-child(1) {
    top: 5%;
    left: 2%;
    transform: rotate(-12deg);
    animation-delay: 0s;
    z-index: 1;
}

.carousel-img:nth-child(2) {
    top: 8%;
    right: 3%;
    transform: rotate(8deg);
    animation-delay: -1s;
    z-index: 2;
}

.carousel-img:nth-child(3) {
    bottom: 8%;
    left: 5%;
    transform: rotate(-18deg);
    animation-delay: -2s;
    z-index: 3;
}

.carousel-img:nth-child(4) {
    bottom: 5%;
    right: 8%;
    transform: rotate(15deg);
    animation-delay: -3s;
    z-index: 1;
}

.carousel-img:nth-child(5) {
    top: 50%;
    left: 1%;
    transform: translateY(-50%) rotate(-8deg);
    animation-delay: -4s;
    z-index: 2;
}

.carousel-img:nth-child(6) {
    top: 40%;
    right: 2%;
    transform: rotate(12deg);
    animation-delay: -5s;
    z-index: 3;
}

.carousel-img:nth-child(7) {
    top: 25%;
    left: 15%;
    transform: rotate(-5deg);
    animation-delay: -1.5s;
    z-index: 1;
}

.carousel-img:nth-child(8) {
    bottom: 25%;
    right: 18%;
    transform: rotate(-15deg);
    animation-delay: -2.5s;
    z-index: 2;
}

.carousel-img:nth-child(9) {
    top: 15%;
    left: 20%;
    transform: rotate(10deg);
    animation-delay: -3.5s;
    z-index: 3;
}

.carousel-img:nth-child(10) {
    bottom: 15%;
    left: 25%;
    transform: rotate(-10deg);
    animation-delay: -4.5s;
    z-index: 1;
}

/* Floating Animation */
@keyframes polaroidFloat {

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

    50% {
        transform: translateY(-15px) rotate(var(--rotation, 0deg));
    }
}

/* Preserve rotation for specific children */
.carousel-img:nth-child(1) {
    --rotation: -12deg;
}

.carousel-img:nth-child(2) {
    --rotation: 8deg;
}

.carousel-img:nth-child(3) {
    --rotation: -18deg;
}

.carousel-img:nth-child(4) {
    --rotation: 15deg;
}

.carousel-img:nth-child(5) {
    --rotation: -8deg;
}

.carousel-img:nth-child(6) {
    --rotation: 12deg;
}

.carousel-img:nth-child(7) {
    --rotation: -5deg;
}

.carousel-img:nth-child(8) {
    --rotation: -15deg;
}

.carousel-img:nth-child(9) {
    --rotation: 10deg;
}

.carousel-img:nth-child(10) {
    --rotation: -10deg;
}

.services-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.title-word {
    display: inline-block;
    opacity: 1;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleFloat 3s ease-in-out infinite;
    animation-delay: calc(var(--delay) * 0.3s);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
    margin-right: 15px;
}

.title-cursive {
    font-family: 'Allura', cursive;
    font-weight: 400;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-left: 0;
}

@keyframes titleFloat {

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

    50% {
        transform: translateY(-10px);
    }
}

/* Expand Cards Container */
.expand-cards-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    height: 450px;
    gap: 20px;
    margin: 0 auto;
}

/* Individual Expand Card */
.expand-card {
    position: relative;
    flex: 1;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 0 15px rgba(255, 255, 255, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    will-change: flex, box-shadow, border-color;
}

.expand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.2) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.expand-card:hover {
    box-shadow:
        0 0 30px rgba(255, 255, 255, 0.15),
        0 0 60px rgba(100, 150, 255, 0.15),
        0 12px 36px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

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

/* Hover State - Expand hovered card, compress others */
.expand-cards-container:hover .expand-card {
    flex: 0.5;
}

.expand-cards-container .expand-card:hover {
    flex: 2;
}

/* Background Image */
.expand-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.expand-card:hover .expand-card-bg {
    transform: scale(1.1);
}

/* Dark Overlay */
.expand-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.6) 100%);
    transition: background 0.4s ease;
}

.expand-card:hover .expand-card-overlay {
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.85) 100%);
}

/* Card Content */
.expand-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    transition: all 0.4s ease;
}

.expand-card:hover .expand-card-content {
    justify-content: center;
}

/* Icon */
.expand-card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    filter: grayscale(100%);
}

.expand-card-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    filter: brightness(0) invert(1);
    /* Make white */
}

.expand-card:hover .expand-card-icon,
.expand-card:hover .expand-card-icon-img {
    opacity: 0.8;
    transform: translateY(0);
}

/* Number */
.expand-card-num {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    transition: all 0.4s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.expand-card:hover .expand-card-num {
    color: rgba(255, 255, 255, 0.8);
}

/* Title */
.expand-card-title {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    transition: all 0.4s ease;
    writing-mode: horizontal-tb;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Non-hovered cards get vertical text */
.expand-cards-container:hover .expand-card:not(:hover) .expand-card-title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

/* Description */
.expand-card-desc {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease 0.2s;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.expand-card:hover .expand-card-desc {
    opacity: 1;
    max-height: 300px;
}



/* Floating Images */
.floating-images {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.float-img {
    position: absolute;
    width: 150px;
    height: 200px;
    object-fit: cover;
    opacity: 0.3;
    filter: grayscale(50%) blur(1px);
    transition: all 0.3s ease;
    animation: float 20s infinite ease-in-out;
}

.float-img:hover {
    opacity: 0.6;
    filter: grayscale(0%) blur(0px);
    transform: scale(1.1);
    pointer-events: auto;
}

/* Position each image */
.img-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.img-2 {
    top: 15%;
    right: 8%;
    width: 180px;
    height: 220px;
    animation-delay: -5s;
}

.img-3 {
    bottom: 15%;
    left: 10%;
    width: 200px;
    height: 160px;
    animation-delay: -10s;
}

.img-4 {
    top: 50%;
    left: 15%;
    width: 130px;
    height: 180px;
    animation-delay: -15s;
}

.img-5 {
    bottom: 10%;
    right: 12%;
    width: 160px;
    height: 160px;
    animation-delay: -7s;
}

.img-6 {
    top: 60%;
    right: 5%;
    width: 170px;
    height: 190px;
    animation-delay: -3s;
}

.img-7 {
    top: 35%;
    right: 20%;
    width: 140px;
    height: 170px;
    animation-delay: -12s;
}

.img-8 {
    bottom: 25%;
    left: 25%;
    width: 165px;
    height: 185px;
    animation-delay: -8s;
}

.img-9 {
    top: 25%;
    left: 30%;
    width: 155px;
    height: 175px;
    animation-delay: -4s;
}

.img-10 {
    bottom: 35%;
    right: 15%;
    width: 145px;
    height: 165px;
    animation-delay: -11s;
}

.img-11 {
    top: 45%;
    left: 8%;
    width: 160px;
    height: 180px;
    animation-delay: -6s;
}

.img-12 {
    bottom: 40%;
    right: 25%;
    width: 175px;
    height: 195px;
    animation-delay: -9s;
}

@keyframes float {

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

    25% {
        transform: translateY(-20px) translateX(10px) rotate(2deg);
    }

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

    75% {
        transform: translateY(-30px) translateX(5px) rotate(1deg);
    }
}

/* Mobile Optimizations */
@media screen and (max-width: 768px) {

    /* Clean Mobile Hero */

    /* Reset default cursor for touch devices */
    * {
        cursor: auto !important;
    }

    /* Hide all extra elements */
    .radar-icon,
    .ticker-column,
    .frosted-panel,
    .logo-neon-container,
    #tagline,
    #tagline-top,
    #tagline-left,
    #tagline-right {
        display: none !important;
    }

    /* Logo with Strong Depth */
    #logo {
        width: 32vw !important;
        max-width: 200px !important;
        min-width: 0 !important;
        height: auto;
        display: block;
        margin: 0 auto 60px auto;
        position: relative;
        z-index: 2;
        filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.9)) drop-shadow(0 6px 16px rgba(0, 0, 0, 0.7)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    }

    /* Sharp Floating Images */
    .float-img {
        display: block !important;
        width: 30vw !important;
        max-width: 150px !important;
        height: auto !important;
        opacity: 0.3 !important;
        filter: none !important;
        animation: float 20s infinite ease-in-out !important;
        z-index: 0 !important;
    }

    /* Position images away from logo center */
    .img-1 {
        top: 5% !important;
        left: 2% !important;
    }

    .img-2 {
        top: 5% !important;
        right: 2% !important;
    }

    .img-3 {
        bottom: 10% !important;
        left: 2% !important;
    }

    .img-4 {
        top: 35% !important;
        left: 1% !important;
    }

    .img-5 {
        bottom: 10% !important;
        right: 2% !important;
    }

    .img-6 {
        top: 55% !important;
        right: 1% !important;
    }

    /* Stagger animation speeds */
    .float-img:nth-child(odd) {
        animation-duration: 18s !important;
    }

    .float-img:nth-child(even) {
        animation-duration: 24s !important;
    }

    /* Stats Section - Hide All Background Images */
    .stats-bg-img.img-bg-1,
    .stats-bg-img.img-bg-2,
    .stats-bg-img.img-bg-3,
    .stats-bg-img.img-bg-4 {
        display: none !important;
    }

    /* Floating Carousel Images for Mobile */
    .playlist-float {
        display: block !important;
        position: absolute;
        width: 25vw;
        max-width: 120px;
        height: auto;
        opacity: 0.3;
        border-radius: 8px;
        z-index: 1;
        animation: float 18s infinite ease-in-out;
    }

    .playlist-1 {
        top: 5%;
        left: 2%;
        animation-duration: 16s;
    }

    .playlist-2 {
        top: 5%;
        right: 2%;
        animation-duration: 20s;
        animation-delay: -3s;
    }

    .playlist-3 {
        bottom: 20%;
        left: 2%;
        animation-duration: 22s;
        animation-delay: -6s;
    }

    .playlist-4 {
        top: 45%;
        right: 1%;
        animation-duration: 19s;
        animation-delay: -9s;
    }

    .playlist-5 {
        bottom: 8%;
        left: 50%;
        transform: translateX(-50%);
        animation-duration: 21s;
        animation-delay: -12s;
    }

    .playlist-6 {
        top: 40%;
        left: 1%;
        animation-duration: 17s;
        animation-delay: -15s;
    }

    /* Hide Stats Tagline on Mobile */
    .stats-tagline {
        display: none !important;
    }

    /* Services Section Mobile Optimization */
    .services-section {
        padding: 60px 20px;
        height: auto;
        min-height: 100vh;
    }

    .services-title {
        margin-bottom: 40px;
    }

    .expand-cards-container {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }

    .expand-card {
        height: 160px;
        flex: none;
        width: 100%;
    }

    .expand-card:hover {
        height: 450px;
        flex: none;
    }

    /* Adjust hover state for mobile touch */
    .expand-card.active {
        height: 450px;
    }

    .expand-card-content {
        padding: 25px;
        /* Reduced padding */
        justify-content: flex-start;
        /* Align to top to ensure title visibility */
    }

    .expand-card-icon-img {
        width: 40px;
        /* Smaller icon for mobile */
        height: 40px;
        margin-bottom: 10px;
        opacity: 0;
        /* Hidden by default */
        transform: translateY(10px);
        filter: brightness(0) invert(1);
        transition: all 0.4s ease;
    }

    .expand-card-icon {
        font-size: 2rem;
        margin-bottom: 10px;
        opacity: 0;
        /* Hidden by default */
        transform: translateY(10px);
        filter: none;
        transition: all 0.4s ease;
    }

    /* Show icons when active */
    .expand-card.active .expand-card-icon-img,
    .expand-card.active .expand-card-icon {
        opacity: 1;
        transform: none;
    }

    .expand-card-num {
        margin-bottom: 5px;
        font-size: 0.8rem;
    }

    .expand-card-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
        writing-mode: horizontal-tb !important;
        text-orientation: initial !important;
        line-height: 1.2;
    }

    /* Always show title horizontally on mobile */
    .expand-cards-container:hover .expand-card:not(:hover) .expand-card-title {
        writing-mode: horizontal-tb;
        font-size: 1.5rem;
    }

    .expand-card-desc {
        font-size: 0.95rem;
    }

    /* Reduce carousel images on mobile */
    .carousel-img:nth-child(even) {
        display: none;
    }

    .carousel-img {
        width: 120px;
        height: 120px;
        opacity: 0.15;
    }
}

/* Division9 Animated Footer Text */
.d9-footer-text {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
    cursor: default;
    user-select: none;
}

.d9-footer-text span {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    /* Increased from 0.85rem */
    font-weight: 800;
    /* Increased from 700 */
    color: rgba(255, 255, 255, 0.6);
    /* Increased from 0.3 */
    transition: all 0.3s ease;
    padding: 0 2px;
    animation: d9TextWave 3s ease-in-out infinite;
}

/* Staggered animation delays */
.d9-footer-text span:nth-child(1) {
    animation-delay: 0.0s;
}

.d9-footer-text span:nth-child(2) {
    animation-delay: 0.1s;
}

.d9-footer-text span:nth-child(3) {
    animation-delay: 0.2s;
}

.d9-footer-text span:nth-child(4) {
    animation-delay: 0.3s;
}

.d9-footer-text span:nth-child(5) {
    animation-delay: 0.4s;
}

.d9-footer-text span:nth-child(6) {
    animation-delay: 0.5s;
}

.d9-footer-text span:nth-child(7) {
    animation-delay: 0.6s;
}

.d9-footer-text span:nth-child(8) {
    animation-delay: 0.7s;
}

.d9-footer-text span:nth-child(9) {
    animation-delay: 0.8s;
}

/* Hover Interaction */
.d9-footer-text:hover span {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    transform: translateY(-5px);
    padding: 0 8px;
    /* Increased spacing expansion */
}

/* Individual letter hover for extra interactivity */
.d9-footer-text span:hover {
    color: #fff;
    transform: translateY(-8px) scale(1.3);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
}

@keyframes d9TextWave {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
        /* Increased from 0.3 */
    }

    50% {
        transform: translateY(-4px);
        opacity: 1;
        /* Increased from 0.6 */
    }
}