/* StickyMayhem Website — Design Tokens */
:root {
    --theme-color: #FF6D0A;
    --title-color: #0A0C00;
    --body-color: #0A0C00;
    --bg-dark: #0A0C00;
    --bg-muted: #131312;
    --white: #ffffff;
    --smoke: #F6F5F3;
    --title-font: "Unbounded", sans-serif;
    --body-font: "Poppins", sans-serif;
    --container-max: 1296px;
    --section-space: 100px;
    --section-space-mobile: 60px;
}

/* ─── Animations ────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 109, 10, 0.2); }
    50% { box-shadow: 0 0 35px rgba(255, 109, 10, 0.35); }
}
@keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes marqueeGlow {
    0%, 100% { border-color: rgba(255, 109, 10, 0.2); }
    50% { border-color: rgba(255, 109, 10, 0.4); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .site-bg { animation: none; }
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    cursor: none !important;
}
html { scroll-behavior: smooth; }
body {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--body-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--theme-color); text-decoration: none; transition: color 0.3s, opacity 0.3s; }
a:hover { color: var(--theme-color); }

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Persistent Background */
.site-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background: url(../images/poster.png) center/cover no-repeat;
    animation: bgZoom 25s ease-in-out infinite alternate;
    filter: brightness(0.75) saturate(0.7);
}
@keyframes bgZoom {
    from { transform: scale(1); }
    to { transform: scale(1.015); }
}
.site-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 0, 0.85);
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 52px;
    height: 52px;
    background: url(../images/cursor.png) center/contain no-repeat;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-4px, -4px);
    will-change: left, top;
    transition: opacity 0.2s, transform 0.12s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.custom-cursor.clicking {
    transform: translate(-4px, -4px) scale(0.82);
}

/* Sticky Nav */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    overflow: visible;
    background: rgba(10, 12, 0, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 109, 10, 0.2);
    transition: padding 0.3s, background 0.3s, box-shadow 0.3s;
}
.site-nav.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.nav-anim {
    animation: navSlideDown 0.6s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
}
.nav-logos {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-logo {
    overflow: visible;
}
.nav-logo img {
    height: 68px;
    width: auto;
    transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.nav-logo:hover img { transform: scale(1.08); }
.nav-logo:active img { transform: scale(0.96); }
.nav-company-logo {
    height: 38px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.nav-logos:hover .nav-company-logo {
    opacity: 1;
    transform: scale(1.08);
}
.nav-logo:active img { transform: scale(0.96); }

/* Make steam logo black */
.steam-black {
    filter: brightness(0);
}

.btn-wishlist {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--theme-color);
    color: var(--title-color);
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    border: none;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1), color 0.25s ease;
}
.btn-wishlist:hover {
    background: #ffffff;
    color: #0A0C00;
    box-shadow: 0 6px 28px rgba(255, 255, 255, 0.35);
    transform: translateY(-3px) scale(1.02);
    opacity: 1;
}
.btn-wishlist:active {
    transform: translateY(-1px) scale(0.98);
}
.btn-wishlist:hover .steam-black {
    filter: brightness(0);
}
.steam-icon { height: 20px; width: auto; flex-shrink: 0; }
.wishlist-text-mobile { display: none; }
.wishlist-text-desktop { display: inline; }

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
}
.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: min(1200px, 95vw);
    text-align: center;
}
.hero-logo {
    width: 180px;
    margin: 0 auto 32px;
    transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.hero-content:hover .hero-logo {
    transform: scale(1.06);
}
.hero-content:active .hero-logo { transform: scale(0.98); }
.hero-anim {
    opacity: 0;
    animation: fadeInUp 0.7s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}
.hero-delay-1 { animation-delay: 0.12s; }
.hero-delay-2 { animation-delay: 0.24s; }
.hero-delay-3 { animation-delay: 0.36s; }
.trailer-wrap {
    margin: 0 auto 32px;
    width: 100%;
    max-width: min(1400px, 92vw);
}
.trailer-aspect {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid var(--theme-color);
    box-shadow: 0 0 60px rgba(255, 109, 10, 0.25);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.trailer-aspect:hover {
    box-shadow: 0 0 80px rgba(255, 109, 10, 0.35);
    transform: scale(1.008);
}
.trailer-aspect iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.hero-title {
    font-family: var(--title-font);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero-title span {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1), color 0.3s ease, text-shadow 0.3s ease;
}
.hero-title:hover span:nth-child(1) { transform: translateX(6px); color: var(--theme-color); text-shadow: 0 0 20px rgba(255, 109, 10, 0.4); }
.hero-title:hover span:nth-child(2) { transform: translateX(8px); color: var(--theme-color); text-shadow: 0 0 20px rgba(255, 109, 10, 0.4); transition-delay: 0.03s; }
.hero-title:hover span:nth-child(3) { transform: translateX(10px); color: var(--theme-color); text-shadow: 0 0 20px rgba(255, 109, 10, 0.4); transition-delay: 0.06s; }
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--theme-color);
    color: var(--title-color);
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.btn-cta:hover {
    background: #ffffff;
    color: #0A0C00;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.02);
    opacity: 1;
}
.btn-cta:active {
    transform: translateY(-1px) scale(0.98);
}
.btn-cta:hover .steam-black { filter: brightness(0); }

/* Marquee */
.marquee-wrap {
    overflow: hidden;
    padding: 24px 0;
    background: rgba(19, 19, 18, 0.88);
    border-top: 1px solid rgba(255, 109, 10, 0.2);
    border-bottom: 1px solid rgba(255, 109, 10, 0.2);
    position: relative;
    z-index: 1;
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}
.marquee-track span {
    font-family: var(--title-font);
    font-size: 27px;
    font-weight: 600;
    color: var(--theme-color);
    text-transform: uppercase;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
    display: inline-block;
}
.marquee-wrap:hover .marquee-track span:not(.dot) {
    color: #f0ff50;
    text-shadow: 0 0 12px rgba(255, 109, 10, 0.5);
}
.marquee-wrap:hover .marquee-track .dot {
    opacity: 1;
    transform: scale(1.2);
}
.marquee-track .dot {
    color: rgba(255, 109, 10, 0.5);
    font-size: 18px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

/* Scroll-triggered reveal */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(0.34, 1.2, 0.64, 1),
                transform 0.7s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}
.marquee-wrap.reveal {
    transform: translateY(0);
    transition: opacity 0.6s ease;
}
.marquee-wrap.in-view {
    animation: marqueeGlow 3s ease-in-out infinite;
}

/* About */
.about {
    padding: 0;
    position: relative;
    z-index: 1;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 0, 0.65);
    pointer-events: none;
    z-index: -1;
}
.about .container {
    max-width: min(1600px, 96vw);
    padding-top: 80px;
    padding-bottom: 80px;
    width: 100%;
}
.about-inner {
    display: grid;
    grid-template-columns: 1.5fr 0.85fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    display: flex;
    align-items: stretch;
}
.about-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    transition: transform 0.5s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.5s ease;
}
.about-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.65);
}
.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}
.about-text h2 {
    font-family: var(--title-font);
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 28px;
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), color 0.35s ease;
}
.about-inner:hover .about-text h2 {
    transform: scale(1.02) translateX(4px);
    color: var(--theme-color);
}
.about-text p {
    font-size: 18px;
    color: var(--smoke);
    margin-bottom: 16px;
    opacity: 0.95;
    line-height: 1.7;
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.35s ease, color 0.35s ease;
}
.about-inner:hover .about-text p {
    transform: translateX(6px);
    opacity: 1;
    color: rgba(246, 245, 243, 0.98);
}
.about-inner:hover .about-text p:nth-of-type(2) { transition-delay: 0.05s; }

/* Features */
.features {
    position: relative;
    z-index: 1;
}
.feature-panels {
    display: flex;
    flex-direction: column;
}
.feature-panel {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.feature-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.feature-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
}
.feature-overlay h3 {
    font-family: var(--title-font);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s cubic-bezier(0.34, 1.2, 0.64, 1) 0.2s,
                color 0.35s ease, text-shadow 0.35s ease;
}
.feature-panel.in-view .feature-overlay h3 {
    opacity: 1;
    transform: translateY(0);
}
.feature-panel:hover .feature-overlay h3 {
    transform: translateY(0) scale(1.04);
    color: var(--theme-color);
    text-shadow: 0 0 30px rgba(255, 109, 10, 0.4), 0 2px 20px rgba(0, 0, 0, 0.8);
}
.feature-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 12, 0, 0.4), rgba(10, 12, 0, 0.7));
    pointer-events: none;
}

/* Screenshots Carousel */
.screenshots {
    padding: var(--section-space) 0;
    position: relative;
    z-index: 1;
}
.screenshots::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 0, 0.7);
    pointer-events: none;
    z-index: -1;
}
.section-title {
    font-family: var(--title-font);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.15s, transform 0.6s cubic-bezier(0.34, 1.2, 0.64, 1) 0.15s,
                color 0.35s ease;
}
.screenshots.in-view .section-title {
    opacity: 1;
    transform: translateY(0);
}
.screenshots:hover .section-title {
    transform: translateY(0) scale(1.03);
    color: var(--theme-color);
}
.screenshots-carousel-wrap {
    overflow: hidden;
    padding: 0 60px;
    max-width: 100%;
}
.screenshots-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0 28px;
    -webkit-overflow-scrolling: touch;
}
.screenshots-carousel {
    scrollbar-width: thick;
    scrollbar-color: var(--theme-color) rgba(255,255,255,0.08);
}
.screenshots-carousel::-webkit-scrollbar { height: 14px; }
.screenshots-carousel::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.08);
    border-radius: 7px;
}
.screenshots-carousel::-webkit-scrollbar-thumb {
    background: var(--theme-color);
    border-radius: 7px;
}
.screenshots-carousel::-webkit-scrollbar-thumb:hover {
    background: #c9e603;
}
.screenshot-item {
    flex: 0 0 min(600px, 85vw);
    min-width: 0;
    scroll-snap-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.35s ease;
}
.screenshot-item:hover {
    transform: scale(1.04);
    box-shadow: 0 20px 60px rgba(255, 109, 10, 0.25);
}
.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}
.screenshot-item .open-hint {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 12, 0, 0.55);
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease, transform 0.3s ease;
    font-family: var(--title-font);
    font-size: 14px;
    color: var(--theme-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    pointer-events: none;
}
.screenshot-item:hover .open-hint {
    opacity: 1;
    background: rgba(10, 12, 0, 0.4);
    transform: scale(1.1);
}
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}
.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--theme-color);
    background: transparent;
    color: var(--theme-color);
    font-size: 20px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.carousel-btn:hover {
    background: var(--theme-color);
    color: var(--title-color);
    transform: scale(1.08);
}
.carousel-btn:active {
    transform: scale(0.95);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), visibility 0.4s;
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 0, 0.95);
    backdrop-filter: blur(10px);
}
.lightbox-title {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-family: var(--title-font);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--theme-color);
    text-align: center;
    max-width: 90vw;
    padding: 0 24px;
    margin: 0;
    text-shadow: 0 0 30px rgba(255, 109, 10, 0.4);
    pointer-events: none;
}
/* Stage holds prev | current | next */
.lightbox-stage {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0;
}
.lightbox-img {
    max-width: min(1290px, 80vw);
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 80px rgba(255, 109, 10, 0.15);
    border: 2px solid rgba(255, 109, 10, 0.3);
    transform: scale(0.88);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease, box-shadow 0.4s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    object-fit: contain;
}
.lightbox-stage:hover .lightbox-img {
    box-shadow: 0 0 100px rgba(255, 109, 10, 0.25);
}
.lightbox.active .lightbox-img {
    transform: scale(1);
    opacity: 1;
}
.lightbox-side {
    max-width: min(390px, 21vw);
    max-height: 78vh;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 109, 10, 0.12);
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.3;
    filter: blur(2.5px) brightness(0.65);
    transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.72);
    z-index: 1;
}
.lightbox-stage:hover .lightbox-side {
    opacity: 0.45;
    filter: blur(2px) brightness(0.75);
}
.lb-prev-img {
    left: 0;
    transform-origin: right center;
    transform: translateX(-20px) translateY(-50%) scale(0.72);
}
.lb-next-img {
    right: 0;
    transform-origin: left center;
    transform: translateX(20px) translateY(-50%) scale(0.72);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 10;
    background: rgba(255, 109, 10, 0.12);
    border: 1.5px solid rgba(255, 109, 10, 0.4);
    color: var(--theme-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.25s;
}
.lightbox-close:hover {
    background: var(--theme-color);
    color: var(--title-color);
    transform: rotate(90deg) scale(1.08);
}
.lightbox-close:active {
    transform: rotate(90deg) scale(0.92);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 109, 10, 0.1);
    border: 1.5px solid rgba(255, 109, 10, 0.35);
    color: var(--theme-color);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.2s, transform 0.2s;
}
.lightbox-nav:hover {
    background: var(--theme-color);
    color: var(--title-color);
    transform: translateY(-50%) scale(1.12);
}
.lightbox-nav:active {
    transform: translateY(-50%) scale(0.95);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-family: var(--title-font);
    font-size: 13px;
    color: rgba(255, 109, 10, 0.8);
    letter-spacing: 0.08em;
    background: rgba(10, 12, 0, 0.5);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 109, 10, 0.2);
    transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.lightbox:hover .lightbox-counter {
    color: var(--theme-color);
    background: rgba(10, 12, 0, 0.65);
    transform: translateX(-50%) scale(1.05);
}

/* Footer */
.site-footer {
    padding: 56px 0;
    position: relative;
    z-index: 1;
    background: rgba(19, 19, 18, 0.95);
    border-top: 1px solid rgba(255, 109, 10, 0.15);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px 48px;
    align-items: start;
}
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.footer-logos {
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-logo img {
    height: 112px;
    width: auto;
    transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.footer-logo:hover img { transform: scale(1.08); }
.footer-company { margin: 0; }
.footer-left .company-logo {
    height: 95px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.footer-logos:hover .company-logo {
    opacity: 1;
    transform: scale(1.1);
}
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}
.company-logo {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.footer-contact {
    text-align: right;
}
.footer-contact-title {
    font-family: var(--title-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 12px 0;
}
.footer-contact-item {
    margin-bottom: 8px;
}
.footer-contact-item:last-child { margin-bottom: 0; }
.footer-contact-name {
    display: block;
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
}
.footer-contact-email {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}
.footer-contact-email:hover {
    color: var(--theme-color);
}
.footer-wishlist {
    margin-top: 4px;
}
.footer-wishlist .steam-icon { height: 18px; }
.footer-copy {
    grid-column: 1 / -1;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .nav-company-logo { height: 22px; }
    .about-image { order: 1; }
    .about-text { order: 2; }
    .lb-prev-img, .lb-next-img { display: none; }
    .lightbox-img { max-width: 90vw; }
}
@media (max-width: 768px) {
    :root { --section-space: 60px; }
    .nav-logo img { height: 48px; }
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logos { gap: 6px; }
    .footer-logo img { height: 96px; }
    .footer-left .company-logo { height: 81px; }
    .footer-right {
        align-items: center;
    }
    .footer-contact { text-align: center; }
    .btn-wishlist {
        padding: 8px 12px;
        font-size: 11px;
    }
    .btn-wishlist .steam-icon { height: 16px; }
    .wishlist-text-desktop { display: none !important; }
    .wishlist-text-mobile { display: inline !important; }
    .hero { padding: 100px 16px 60px; }
    .hero-logo { width: 140px; }
    .screenshots { padding: 60px 0 48px; }
    .screenshots-carousel-wrap { padding: 0 20px; }
    .screenshots-carousel { gap: 16px; padding: 16px 0 24px; }
    .screenshots-carousel::-webkit-scrollbar { height: 12px; }
    .screenshot-item { flex: 0 0 min(450px, 82vw); }
    .section-title { margin-bottom: 32px; font-size: 1.5rem; }
    .carousel-btn { width: 44px; height: 44px; font-size: 18px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}
@media (max-width: 480px) {
    .btn-wishlist { padding: 6px 10px; font-size: 10px; }
    .btn-wishlist .steam-icon { height: 14px; }
    .hero-title { font-size: 1.25rem; }
    .marquee-track span { font-size: 21px; }
    .screenshots-carousel-wrap { padding: 0 16px; }
    .screenshots-carousel { gap: 12px; }
    .screenshot-item { flex: 0 0 min(390px, 88vw); }
    .section-title { font-size: 1.35rem; margin-bottom: 24px; }
    /* Restore system cursor on mobile/touch */
    *, *::before, *::after { cursor: auto !important; }
    .custom-cursor { display: none; }
}
