/* ==========================================
   STM Studios — Main Stylesheet
   ========================================== */

:root {
    --stm-dark: #1A1512;
    --stm-orange: #FF5A00;
    --stm-green: #00FF66;
    --stm-white: #F8F4F1;
    --font-head: 'Lilita One', cursive;
    --font-body: 'Fredoka', sans-serif;
}

::selection {
    background-color: var(--stm-green);
    color: var(--stm-dark);
}

/* On green backgrounds, use dark selection for visibility */
.bg-green ::selection {
    background-color: var(--stm-dark);
    color: var(--stm-white);
}


/* --- RESET & BASE --- */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--stm-white);
    color: var(--stm-dark);
    overflow-x: hidden;
    cursor: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

*,
*::before,
*::after {
    cursor: none !important;
}

/* --- LANGUAGE SWITCHER (Footer) --- */

.lang-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 28px 0 20px;
}

.lang-btn {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: none;
    outline: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-icon {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    flex-shrink: 0;
}

.lang-btn:hover {
    color: var(--stm-white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.lang-btn.active {
    background: var(--stm-green);
    color: var(--stm-dark);
    border-color: var(--stm-green);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.lang-btn.active .lang-icon {
    box-shadow: 0 0 0 2px var(--stm-dark);
}

.lang-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: #2D241E;
    /* Deep dark brown */
}

::-webkit-scrollbar-thumb {
    background: var(--stm-green);
    border: 1px solid var(--stm-dark);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--stm-orange);
}


/* --- SCROLL REVEAL ANIMATIONS --- */

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grid children */
.reveal-stagger>.reveal:nth-child(1) {
    transition-delay: 0s;
}

.reveal-stagger>.reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.reveal-stagger>.reveal:nth-child(3) {
    transition-delay: 0.16s;
}

.reveal-stagger>.reveal:nth-child(4) {
    transition-delay: 0.24s;
}

.reveal-stagger>.reveal:nth-child(5) {
    transition-delay: 0.32s;
}

.reveal-stagger>.reveal:nth-child(6) {
    transition-delay: 0.40s;
}

.reveal-stagger>.reveal:nth-child(7) {
    transition-delay: 0.48s;
}

.reveal-stagger>.reveal:nth-child(8) {
    transition-delay: 0.56s;
}

.reveal-stagger>.reveal:nth-child(9) {
    transition-delay: 0.64s;
}


/* ==========================================
   SPLASH / INTRO SCREEN
   ========================================== */

.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--stm-orange);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    overflow: hidden;
}



.splash-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.splash-logo {
    width: 132px;
    height: 132px;
    opacity: 0;
    transform: scale(0.3) rotate(-20deg);
    animation: splashLogoIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

@keyframes splashLogoIn {
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.splash-text {
    font-family: var(--font-head);
    font-size: 3.5rem;
    color: var(--stm-white);
    display: flex;
    gap: 3px;
    overflow: hidden;
}

.splash-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: splashLetterIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.splash-text span:nth-child(1) {
    animation-delay: 0.8s;
}

.splash-text span:nth-child(2) {
    animation-delay: 0.88s;
}

.splash-text span:nth-child(3) {
    animation-delay: 0.96s;
}

.splash-text span:nth-child(4) {
    animation-delay: 1.12s;
}

.splash-text span:nth-child(5) {
    animation-delay: 1.20s;
}

.splash-text span:nth-child(6) {
    animation-delay: 1.28s;
}

.splash-text span:nth-child(7) {
    animation-delay: 1.36s;
}

.splash-text span:nth-child(8) {
    animation-delay: 1.44s;
}

.splash-text span:nth-child(9) {
    animation-delay: 1.52s;
}

.splash-text span:nth-child(10) {
    animation-delay: 1.60s;
}

@keyframes splashLetterIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.splash-spacer {
    margin-left: 12px;
}

.splash-tagline {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--stm-white);
    letter-spacing: 8px;
    text-transform: uppercase;
    opacity: 0;
    animation: splashTagFade 0.6s ease 1.8s forwards;
    position: relative;
    z-index: 2;
}

@keyframes splashTagFade {
    to {
        opacity: 1;
    }
}

.splash-loader {
    width: 200px;
    height: 3px;
    background-color: rgba(248, 244, 241, 0.25);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: splashTagFade 0.4s ease 2s forwards;
}

.splash-loader-bar {
    width: 0%;
    height: 100%;
    background: var(--stm-white);
    border-radius: 10px;
    animation: splashLoad 1.5s cubic-bezier(0.4, 0, 0.2, 1) 2.2s forwards;
}

@keyframes splashLoad {
    to {
        width: 100%;
    }
}

/* splash exit */
.splash-screen.exit {
    animation: splashExit 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes splashExit {
    0% {
        clip-path: inset(0 0 0 0);
    }

    100% {
        clip-path: inset(0 0 100% 0);
    }
}

body.splash-active {
    overflow: hidden;
}

/* --- PAGE TRANSITION CURTAIN --- */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--stm-dark);
    z-index: 99999;
    pointer-events: none;
    transform: translateY(-100%);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.page-transition.active {
    transform: translateY(0);
    pointer-events: all;
}


/* --- CUSTOM CURSOR --- */

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--stm-green);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    will-change: transform;
    transition: width .2s ease, height .2s ease, background-color .2s ease;
    mix-blend-mode: difference;
}

.cursor-dot.hovered {
    width: 60px;
    height: 60px;
    background-color: var(--stm-orange);
}


/* --- HEADER --- */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: difference;
}

header * {
    color: var(--stm-white);
}


/* --- LOGO --- */

.logo {
    font-family: var(--font-head);
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2px;
}

.header-logo-img {
    width: 110px;
    height: 110px;
    margin-right: 12px;
    filter: brightness(1.2);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover .header-logo-img {
    transform: rotate(15deg) scale(1.15);
}

.logo span {
    display: inline-block;
    transition: transform .3s cubic-bezier(.175, .885, .32, 1.275), color .3s ease;
    will-change: transform;
}

.logo:hover span {
    color: var(--stm-orange);
}

.logo .spacer {
    margin-left: 10px;
}


/* --- MENU BUTTON (X ICON) --- */

.menu-btn {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: none;
}

.x-line {
    position: absolute;
    width: 20px;
    height: 6px;
    background-color: var(--stm-white);
    border-radius: 10px;
    transition: transform .4s cubic-bezier(.68, -.55, .265, 1.55), background-color .3s ease;
    will-change: transform;
}

.x-line:nth-child(1) {
    transform: translate(-8px, -8px) rotate(45deg);
}

.x-line:nth-child(2) {
    transform: translate(8px, -8px) rotate(-45deg);
}

.x-line:nth-child(3) {
    transform: translate(-8px, 8px) rotate(-45deg);
}

.x-line:nth-child(4) {
    transform: translate(8px, 8px) rotate(45deg);
}

.menu-btn:hover .x-line:nth-child(1) {
    transform: translate(-12px, -12px) rotate(45deg);
    background-color: var(--stm-orange);
}

.menu-btn:hover .x-line:nth-child(2) {
    transform: translate(12px, -12px) rotate(-45deg);
    background-color: var(--stm-orange);
}

.menu-btn:hover .x-line:nth-child(3) {
    transform: translate(-12px, 12px) rotate(-45deg);
    background-color: var(--stm-orange);
}

.menu-btn:hover .x-line:nth-child(4) {
    transform: translate(12px, 12px) rotate(45deg);
    background-color: var(--stm-orange);
}

.menu-btn.active .x-line:nth-child(1) {
    transform: translate(0, -10px) rotate(0deg);
}

.menu-btn.active .x-line:nth-child(2) {
    transform: translate(0, -10px) rotate(0deg);
}

.menu-btn.active .x-line:nth-child(3) {
    transform: translate(0, 10px) rotate(0deg);
}

.menu-btn.active .x-line:nth-child(4) {
    transform: translate(0, 10px) rotate(0deg);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-social {
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: none;
}

.header-social svg {
    width: 32px;
    height: 32px;
}

.header-social:hover {
    color: var(--stm-orange);
    transform: scale(1.15) rotate(5deg);
}


/* --- FULLSCREEN NAV OVERLAY --- */

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--stm-orange);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: circle(0% at 95% 5%);
    transition: clip-path .8s ease-in-out;
    will-change: clip-path;
}

.nav-overlay.active {
    clip-path: circle(150% at 95% 5%);
}

.nav-links {
    list-style: none;
}

.nav-links li {
    margin: 30px 0;
    text-align: center;
    overflow: hidden;
}

.nav-links a {
    font-family: var(--font-head);
    font-size: 6rem;
    color: var(--stm-dark);
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transform: translateY(100%);
    transition: transform .5s ease, color 0.15s ease-in-out, text-shadow 0.15s ease-in-out;
}

.nav-overlay.active .nav-links a {
    transform: translateY(0);
}

.nav-links a:hover {
    color: var(--stm-white);
    text-shadow: 0 0 20px rgba(248, 244, 241, 0.6), 0 0 40px rgba(248, 244, 241, 0.3);
}


/* --- SECTIONS (COLOR BLOCKING) --- */

.section {
    padding: 150px 5%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    contain: layout style;
}

.bg-white {
    background-color: var(--stm-white);
    color: var(--stm-dark);
}

.asym-people {
    background-color: var(--stm-dark);
    color: var(--stm-white);
    margin-top: 40px;
    box-shadow: 0 20px 80px rgba(255, 126, 0, 0.15);
}

.asym-reach {
    background-color: var(--stm-dark);
    color: var(--stm-white);
    box-shadow: 0 20px 80px rgba(212, 255, 0, 0.15);
}

.bg-orange {
    background-color: var(--stm-orange);
    color: var(--stm-dark);
}

.bg-dark {
    background-color: var(--stm-dark);
    color: var(--stm-white);
}

.bg-green {
    background-color: var(--stm-green);
    color: var(--stm-dark);
}

.section-header {
    font-family: var(--font-head);
    font-size: 5rem;
    text-transform: uppercase;
    margin-bottom: 50px;
    line-height: 1;
}

/* Services section header — title left, Discord CTA right */
.services-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.services-header .section-header {
    margin-bottom: 0;
}

.services-discord-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--stm-dark);
    padding: 16px 24px;
    border: 3px solid var(--stm-dark);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.services-discord-cta:hover {
    background-color: #5865F2;
    color: #fff;
    border-color: #5865F2;
    transform: scale(1.04);
}

.services-discord-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.services-discord-cta:hover .services-discord-arrow {
    transform: translateX(4px);
}

.services-discord-icon {
    display: flex;
    align-items: center;
}


/* --- HERO SECTION --- */

.hero {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--stm-dark);
    opacity: 0.5;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-head);
    font-size: 25vw;
    color: var(--stm-dark);
    opacity: 0.03;
    /* Extremely faint watermark */
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.hero-tag {
    background-color: var(--stm-dark);
    color: var(--stm-green);
    padding: 12px 24px;
    font-weight: 700;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 30px;
    letter-spacing: 2px;
    line-height: 1.6;
}

.hero-tag s {
    text-decoration: line-through;
    text-decoration-color: red;
    opacity: 0.7;
    display: inline-block;
    transform: rotate(-2deg);
}

.hero-tag-note {
    font-size: 0.85rem;
    color: var(--stm-dark);
    opacity: 0.4;
    letter-spacing: 0;
    font-style: italic;
    margin-bottom: 20px;
}

.massive-text {
    font-family: var(--font-head);
    font-size: 15vw;
    line-height: .8;
    text-transform: uppercase;
    color: var(--stm-dark);
}

.massive-text span {
    color: var(--stm-orange);
}


/* --- MARQUEE --- */

.marquee {
    background-color: var(--stm-dark);
    color: var(--stm-white);
    padding: 30px 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    position: relative;
}

.domain-highlight {
    color: var(--stm-green);
    text-shadow: 0 0 20px var(--stm-green);
    font-weight: 900;
    text-transform: lowercase;
    letter-spacing: -2px;
}

.marquee h3 {
    font-family: var(--font-head);
    font-size: 3rem;
    text-transform: uppercase;
    padding-right: 50px;
    animation: scrollText 20s linear infinite;
    will-change: transform;
    opacity: 0.85;
    z-index: 1;
    position: relative;
}

@keyframes scrollText {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.mq-cross {
    display: inline-block;
    font-size: 3.2rem;
    vertical-align: middle;
    margin: 0 20px;
    transform: translateY(-4px);
    opacity: 0.7;
    /* Slight transparency for the crosses */
    font-weight: 300;
    transform-origin: center center;
    will-change: transform;
}

@keyframes spinRandom {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }

    15% {
        transform: translateY(-4px) rotate(90deg);
    }

    30% {
        transform: translateY(-4px) rotate(90deg);
    }

    45% {
        transform: translateY(-4px) rotate(180deg);
    }

    60% {
        transform: translateY(-4px) rotate(180deg);
    }

    75% {
        transform: translateY(-4px) rotate(270deg);
    }

    100% {
        transform: translateY(-4px) rotate(360deg);
    }
}

/* Vibrant Playful Palette & Randomized Staggered Spins */
.mq-c1 {
    color: var(--stm-orange);
    animation: spinRandom 6s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}

.mq-c2 {
    color: #FF007F;
    animation: spinRandom 8s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite reverse;
}

.mq-c3 {
    color: #00E5FF;
    animation: spinRandom 4.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}

.mq-c4 {
    color: var(--stm-green);
    animation: spinRandom 7s ease-in-out infinite;
}

.mq-c5 {
    color: #FFEA00;
    animation: spinRandom 5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.mq-c6 {
    color: #B200FF;
    animation: spinRandom 7.5s ease-in-out infinite;
}

/* --- Random Color Flashes for Marquee Text --- */
@keyframes textFlashOrange {

    0%,
    85%,
    100% {
        color: inherit;
        text-shadow: none;
    }

    90%,
    95% {
        color: var(--stm-orange);
        text-shadow: 0 0 15px var(--stm-orange);
    }
}

@keyframes textFlashGreen {

    0%,
    85%,
    100% {
        color: inherit;
        text-shadow: none;
    }

    90%,
    95% {
        color: var(--stm-green);
        text-shadow: 0 0 15px var(--stm-green);
    }
}

@keyframes textFlashPink {

    0%,
    85%,
    100% {
        color: inherit;
        text-shadow: none;
    }

    90%,
    95% {
        color: #FF007F;
        text-shadow: 0 0 15px #FF007F;
    }
}

.flash-1 {
    animation: textFlashOrange 6s infinite 0s;
}

.flash-2 {
    animation: textFlashGreen 6s infinite 1s;
}

.flash-3 {
    animation: textFlashPink 6s infinite 2s;
}

.flash-4 {
    animation: textFlashOrange 6s infinite 3s;
}

.flash-5 {
    animation: textFlashGreen 6s infinite 4s;
}

.flash-6 {
    animation: textFlashPink 6s infinite 5s;
}


/* --- MANIFESTO --- */

.manifesto-text {
    font-family: var(--font-head);
    font-size: 6vw;
    text-transform: uppercase;
    line-height: 1.1;
}

.manifesto-text span {
    color: var(--stm-white);
    text-shadow: 4px 4px 0 var(--stm-dark);
}


/* --- ASYMMETRIC BLOCKS --- */

.asym-section {
    background-color: var(--stm-dark);
    padding: 100px 0;
    /* Full width edge-to-edge feel */
}

.asym-wrapper {
    display: flex;
    gap: 0;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle grid line */
}

.asym-block {
    border-radius: 50px;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: none;
    transition: background-color 0.4s ease, transform 0.4s ease;
}

/* People block — orange/warm */
.asym-people {
    flex: 1;
    min-height: 520px;
    background: var(--stm-orange);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 80px;
}

/* Reach block — light */
.asym-reach {
    flex: 1;
    min-height: 520px;
    background-color: var(--stm-white);
    margin-top: 80px;
}

.asym-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.asym-people .asym-label {
    color: var(--stm-white);
    opacity: 0.8;
}

.asym-reach .asym-label {
    color: var(--stm-orange);
}

.asym-title {
    font-family: var(--font-head);
    font-size: 5rem;
    line-height: 0.95;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.1s ease-out;
}

.asym-people .asym-title {
    color: var(--stm-white);
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.15);
    /* Adds that thick bold contrast feel from the mockup */
}

.asym-reach .asym-title {
    color: var(--stm-dark);
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.asym-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 480px;
    font-weight: 500;
}

.asym-panel-wrap {
    background-color: var(--stm-white);
    padding: 24px 30px;
    border-radius: 20px;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.2);
    transform: rotate(-1deg);
    margin-bottom: 30px;
    transition: transform 0.1s ease-out;
}

.asym-people .asym-desc {
    color: var(--stm-dark);
    font-weight: 600;
    margin-bottom: 0;
}

.asym-reach .asym-panel-wrap {
    transform: rotate(1deg);
    background-color: var(--stm-dark);
    border: 4px solid var(--stm-orange);
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s ease-out;
}

.asym-reach .asym-desc {
    color: var(--stm-white);
    font-weight: 600;
    margin-bottom: 0;
}

/* Stat number */
.asym-stat {
    font-family: var(--font-head);
    font-size: 6rem;
    color: var(--stm-white);
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    line-height: 0.8;
}

.highlight-green {
    color: #ffffff;
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.15);
}

.asym-stat-label {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: rgba(248, 244, 241, 0.6);
    padding-bottom: 8px;
    letter-spacing: 1px;
}

/* Platform tags */
.asym-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.asym-platform {
    font-family: var(--font-head);
    font-size: 1rem;
    color: var(--stm-white);
    padding: 10px 24px;
    border-radius: 30px;
    letter-spacing: 1px;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
}

.asym-platform:hover {
    transform: translate(2px, 2px) scale(1.05) rotate(-3deg);
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.9);
}

/* Platform Brand Colors */
.plat-youtube {
    background-color: #FF0000;
}

.plat-tiktok {
    background-color: #000000;
    color: #00E5FF;
    text-shadow: 2px 0 #FF007F;
}

.plat-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.plat-discord {
    background-color: #5865F2;
}

.plat-ads {
    background-color: var(--stm-green);
    color: var(--stm-dark);
}


/* --- MARKETPLACE (3D TILT CARDS) --- */

.bg-dark .section-header {
    color: var(--stm-green);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.tilt-card {
    background-color: var(--stm-white);
    border-radius: 30px;
    height: 450px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: transform .1s ease;
    border: 4px solid var(--stm-orange);
    position: relative;
    overflow: hidden;
    will-change: transform;
    contain: layout;
}

.tilt-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 26px;
    transition: transform 0.4s ease;
}

.tilt-card:hover .tilt-card-img {
    transform: scale(1.05);
}

.tilt-card h3,
.tilt-card p,
.tilt-card .badge {
    position: relative;
    z-index: 1;
}

.tilt-card h3 {
    font-family: var(--font-head);
    font-size: 3.5rem;
    color: var(--stm-dark);
    transform: translateZ(50px);
}

.tilt-card p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--stm-orange);
    transform: translateZ(30px);
}

.tilt-card .badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--stm-green);
    color: var(--stm-dark);
    padding: 8px 14px;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 10px;
    transform: translateZ(20px);
}

/* HOT — turuncu zemin, alev glow animasyonu */
.tilt-card .badge.hot {
    background: var(--stm-orange);
    color: var(--stm-white);
    animation: hotPulse 1.8s ease-in-out infinite;
}

@keyframes hotPulse {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(255, 90, 0, 0.5), 0 0 20px rgba(255, 90, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 16px rgba(255, 90, 0, 0.9), 0 0 40px rgba(255, 90, 0, 0.4);
    }
}

/* SOON — koyu zemin + yeşil metin */
.tilt-card .badge.soon {
    background: var(--stm-dark);
    color: var(--stm-green);
    border: 2px solid var(--stm-green);
}



/* --- SERVICES --- */

.service-list {
    list-style: none;
    position: relative;
    counter-reset: service;
}

.service-list li {
    font-family: var(--font-head);
    font-size: 4.5rem;
    text-transform: uppercase;
    border-bottom: 4px solid var(--stm-dark);
    padding: 22px 0;
    transition: color .3s ease, padding-left .35s cubic-bezier(0.34, 1.56, 0.64, 1), letter-spacing .3s ease;
    position: relative;
    z-index: 2;
    cursor: none;
    overflow: hidden;
    counter-increment: service;
}

/* Big faint counter number — slides in from right on hover */
.service-list li::after {
    content: counter(service, decimal-leading-zero);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(40px);
    font-family: var(--font-head);
    font-size: 9rem;
    color: var(--stm-dark);
    opacity: 0;
    transition: opacity .35s ease, transform .35s ease;
    pointer-events: none;
    line-height: 1;
    z-index: -1;
}

/* Arrow indicator — slides in from left */
.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-30px);
    font-size: 2rem;
    color: var(--stm-orange);
    opacity: 0;
    transition: opacity .3s ease, transform .35s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.service-list li:hover {
    color: var(--stm-orange);
    padding-left: 50px;
    letter-spacing: 2px;
}

.service-list li:hover::after {
    opacity: 0.07;
    transform: translateY(-50%) translateX(0);
}

.service-list li:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Hide the old hover image box */
.hover-image {
    display: none;
}


/* --- ARTISTS --- */

.bg-green .section-header {
    color: var(--stm-dark);
}

.artist-card {
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
    border-radius: 20px;
    background-color: transparent;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.artist-card:hover {
    box-shadow: none;
}

.glare {
    display: none;
}

.artist-card:hover .glare {
    opacity: 0;
}

.artist-avatar {
    width: 250px;
    height: 250px;
    background-color: var(--stm-dark);
    border-radius: 50%;
    margin: 0 auto 15px;
    /* Reduced from 30px */
    border: 8px solid var(--stm-white);
    transition: transform .4s ease, border-color .4s ease;
    will-change: transform;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-head {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
    transition: transform 0.4s ease;
}

.artist-card:hover .avatar-head {
    transform: scale(1.1);
}

.artist-card:hover .artist-avatar {
    transform: none;
    border-color: var(--stm-white);
}

.artist-card h3 {
    font-family: var(--font-head);
    font-size: 3rem;
    margin-top: 0;
    margin-bottom: 0;
}

.artist-role {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.4;
    margin-top: 2px;
}

/* --- TEAM BUTTON --- */

.team-btn-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.team-btn-wrapper.left-align {
    justify-content: flex-start;
    margin-top: -10px;
}

.team-btn {
    display: inline-block;
    margin-top: 50px;
    padding: 18px 40px;
    font-family: var(--font-head);
    font-size: 1.4rem;
    color: var(--stm-white);
    background-color: var(--stm-dark);
    border: 4px solid var(--stm-dark);
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-btn:hover {
    background-color: var(--stm-orange);
    border-color: var(--stm-orange);
    color: var(--stm-white);
    transform: scale(1.05);
}

.apply-btn {
    background-color: var(--stm-green);
    border-color: var(--stm-green);
    color: var(--stm-dark);
}

.apply-btn:hover {
    background-color: var(--stm-white);
    border-color: var(--stm-white);
    color: var(--stm-dark);
    transform: scale(1.05);
}


/* --- CONTACT --- */

.contact-content {
    text-align: center;
}

.contact-email {
    font-family: var(--font-head);
    font-size: 10vw;
    color: var(--stm-orange);
    text-decoration: none;
    display: inline-block;
    transition: transform .3s ease, color .3s ease, text-shadow .3s ease;
    will-change: transform;
}

.contact-email:hover {
    transform: scale(1.05) rotate(-3deg);
    color: var(--stm-green);
    text-shadow: 10px 10px 0 var(--stm-white);
}


/* --- PARTNERS STRIP --- */

.partners-strip {
    text-align: center;
    margin-bottom: 80px;
}

.partners-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(248, 244, 241, 0.3);
    letter-spacing: 6px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 30px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    height: 120px;
    width: auto;
    opacity: 0.4;
    filter: grayscale(100%) brightness(1.5);
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
    cursor: none;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}


/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
    background-color: var(--stm-dark);
    padding: 80px 5% 40px;
    border-top: 3px solid rgba(255, 90, 0, 0.2);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-tagline h3 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--stm-white);
    opacity: 0.9;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 110px;
    height: 110px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-brand:hover .footer-logo {
    transform: rotate(20deg) scale(1.1);
}

.footer-name {
    display: flex;
    align-items: center;
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: var(--stm-white);
    letter-spacing: 3px;
}

.footer-name span {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: none;
}

.footer-name .spacer {
    margin-left: 10px;
}

#logo {
    display: flex;
    align-items: center;
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--stm-white);
    letter-spacing: 2px;
}

#logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

#logo span {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: none;
}

.footer-socials {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(248, 244, 241, 0.06);
    border: 2px solid rgba(248, 244, 241, 0.1);
    color: var(--stm-white);
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
    cursor: none;
}

.social-btn svg {
    width: 22px;
    height: 22px;
}

.social-btn:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 90, 0, 0.25);
}

/* Individual social button hover colors */
#social-instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #e6683c;
    color: #fff;
}

#social-x:hover {
    background: #000;
    border-color: #555;
    color: #fff;
}

#social-github:hover {
    background: #333;
    border-color: #6e5494;
    color: #fff;
}

#social-tiktok:hover {
    background: linear-gradient(135deg, #010101, #25F4EE);
    border-color: #FE2C55;
    color: #fff;
}

#social-youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    color: #fff;
}

#social-discord:hover {
    background: #5865F2;
    border-color: #5865F2;
    color: #fff;
}

.footer-divider {
    width: 100%;
    max-width: 500px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(248, 244, 241, 0.15), transparent);
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(248, 244, 241, 0.35);
    text-align: center;
    letter-spacing: 1px;
}


/* --- RESPONSIVE --- */

@media (max-width: 768px) {
    .massive-text {
        font-size: 20vw;
    }

    .nav-links a {
        font-size: 3rem;
    }

    .section-header {
        font-size: 3rem;
        margin-bottom: 30px;
    }

    .service-list li {
        font-size: 2.5rem;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tilt-card {
        height: 350px;
    }

    .artist-avatar {
        width: 180px;
        height: 180px;
    }

    .contact-email {
        font-size: 8vw;
        word-break: break-all;
    }

    .contact-content .section-header {
        font-size: 2rem;
    }

    .manifesto-text {
        font-size: 8vw;
    }

    .asym-wrapper {
        flex-direction: column;
    }

    .asym-reach {
        margin-top: 0;
    }

    .asym-block {
        min-height: auto;
        padding: 40px;
    }

    .asym-title {
        font-size: 2.5rem;
    }

    .asym-stat {
        font-size: 3.5rem;
        margin-top: 30px;
    }

    .asym-section {
        padding: 60px 30px;
    }

    .hover-image {
        display: none;
    }

    /* Header mobile */
    header {
        padding: 15px 4%;
    }

    .header-right {
        gap: 14px;
    }

    .header-social svg {
        width: 22px;
        height: 22px;
    }

    .header-social img {
        width: 22px !important;
        height: 22px !important;
    }

    .logo {
        font-size: 1.8rem;
    }

    .menu-btn {
        width: 32px;
        height: 32px;
    }

    .x-line {
        width: 16px;
        height: 5px;
    }

    /* Footer mobile */
    .footer-socials {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-tagline h3 {
        font-size: 1.4rem;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .services-discord-cta {
        font-size: 0.85rem;
        padding: 12px 18px;
    }

    .cursor-dot {
        display: none;
    }

    body {
        cursor: auto;
    }

    .splash-text {
        font-size: 2.2rem;
    }

    .splash-logo {
        width: 70px;
        height: 70px;
    }

    .header-logo-img {
        width: 32px;
        height: 32px;
        margin-right: 8px;
    }

    .social-btn {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .social-btn svg {
        width: 20px;
        height: 20px;
    }

    .footer-name {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 80px 4%;
    }

    .logo {
        font-size: 1.4rem;
    }

    .header-right {
        gap: 10px;
    }

    .header-social svg {
        width: 18px;
        height: 18px;
    }

    .header-social img {
        width: 18px !important;
        height: 18px !important;
    }

    .menu-btn {
        width: 28px;
        height: 28px;
    }

    .x-line {
        width: 14px;
        height: 4px;
    }

    .x-line:nth-child(1) {
        transform: translate(-6px, -6px) rotate(45deg);
    }

    .x-line:nth-child(2) {
        transform: translate(6px, -6px) rotate(-45deg);
    }

    .x-line:nth-child(3) {
        transform: translate(-6px, 6px) rotate(-45deg);
    }

    .x-line:nth-child(4) {
        transform: translate(6px, 6px) rotate(45deg);
    }

    .nav-links a {
        font-size: 2.2rem;
    }

    .service-list li {
        font-size: 2rem;
        padding: 20px 0;
    }

    .marquee h3 {
        font-size: 2rem;
    }

    .splash-text {
        font-size: 1.6rem;
    }

    .splash-tagline {
        font-size: 0.75rem;
        letter-spacing: 4px;
    }

    .contact-email {
        font-size: 6.5vw;
    }

    .contact-content .section-header {
        font-size: 1.5rem;
    }

    .section-header {
        font-size: 2.2rem;
    }

    .footer-socials {
        gap: 8px;
    }

    .social-btn {
        width: 40px;
        height: 40px;
    }

    .hero-tag {
        font-size: 0.75rem;
        padding: 10px 16px;
        letter-spacing: 1px;
    }
}


/* --- TOUCH DEVICE ADJUSTMENTS --- */

@media (hover: none) {
    .cursor-dot {
        display: none;
    }

    body {
        cursor: auto;
    }
}