html {
    scroll-behavior: auto; /* 禁用浏览器默认的平滑滚动，使用自定义的 */
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    cursor: none !important;
}

body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #333333;
    overflow-x: hidden;
}

/* 圆圈光标默认样式 */
/* 圆圈光标默认样式 */
/* 光标容器 - mix-blend-mode 在父级实现反色效果 */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
}

.cursor-big-circle {
    position: absolute;
    width: 28px;
    height: 28px;
    margin: -14px 0 0 -14px;
    border-radius: 50%;
    border: 2px solid #fff;
    pointer-events: none;
    transition: width 0.2s, height 0.2s, margin 0.2s, opacity 0.2s;
    opacity: 1;
}

.cursor-small-circle {
    position: absolute;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border-radius: 50%;
    background: #fff;
    pointer-events: none;
    transition: width 0.2s, height 0.2s, margin 0.2s, opacity 0.2s;
    opacity: 1;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: #ffffff;
    padding: 0;
    position: relative;
    min-height: 700px;
    margin: 0;
    width: 100%;
    z-index: 1;
    overflow: hidden;
    container-type: inline-size;
}

#hero::before {
    content: '';
    position: absolute;
    width: clamp(500px, 90vw, 1717px);
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* 3D模型容器 - Hero 内部，随页面滚动 */
#model-container {
    position: absolute;
    width: clamp(150px, min(32vw, 58vh), 520px);
    height: clamp(150px, min(32vw, 58vh), 520px);
    left: 49.5%;
    top: 51%;
    transform: translate(-50%, -50%);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    will-change: transform;
}

#model-container canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
    position: absolute;
    pointer-events: none !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    pointer-events: auto !important;
    mix-blend-mode: normal !important;
    width: 100%;
    max-width: 1717px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 clamp(15px, 5vw, 102.5px);
    margin: 0 auto;
    box-sizing: border-box;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content.scrolled {
    opacity: 0;
}

.hero-content:not(.scrolled) .circular-text {
    opacity: 1 !important; /* 确保在非滚动状态下可见 */
}

/* 圆环文字基础样式 - Hero 内部，随页面滚动 */
.circular-text {
    position: absolute;
    width: clamp(200px, min(40vw, 72vh), 640px);
    height: clamp(200px, min(40vw, 72vh), 640px);
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    animation: rotateText 30s linear infinite;
    z-index: 100;
    pointer-events: none;
    --radius: clamp(100px, min(20vw, 36vh), 320px);
}

/* 滚动时暂停动画 */
.circular-text.hidden {
    animation-play-state: paused;
}

.circular-text span {
    position: absolute;
    left: 50%;
    top: 0;
    font-size: clamp(1em, 2vw, 1.6em);
    font-weight: 700;
    transform-origin: 0 var(--radius);
    color: #000000;
    text-shadow: none;
    letter-spacing: 0.5px;
    transition: color 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.welcome-text {
    display: none;
}

@keyframes rotateText {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* 移除原来的标题样式 */
.hero-title, .hero-subtitle {
    display: none;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: background 0.3s ease-in-out;
    z-index: 9999;
    box-shadow: none;
    border-bottom: none;
    height: 60px;
}

.navbar .brand {
    font-size: 22px;
    font-weight: bold;
    color: #333333;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: #333333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #ff004f;
}

.container {
    max-width: 1200px;
    margin-left: 15%;
    padding: 40px;
    position: relative;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after {
    width: 100%;
}

/* 流动文字样式 */
.marquee-container {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 50px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    z-index: 50;
    border-top: 2px solid rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    pointer-events: none;
}

.marquee-container.hidden {
    opacity: 0;
    visibility: hidden;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    align-items: center;
    height: 100%;
    width: 100%;
}

.marquee-content span {
    font-size: 1.8em;
    font-weight: 700;
    padding: 0 20px;
    color: #333333;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ================================================
   WILD / BRUTALIST STYLE - SECTIONS BELOW HERO
   ================================================ */

/* --- Shared wild section base --- */
.wild-section {
    width: 100%;
    margin: 0;
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* Giant section number watermark */
.wild-section-num {
    position: absolute;
    top: -30px;
    right: 40px;
    font-size: clamp(120px, 18vw, 280px);
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.15);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    font-family: 'Arial Black', 'Poppins', sans-serif;
}

/* Section label - rotated side tag */
.wild-section-label {
    display: none;
}

/* Diagonal stripe accent */
.wild-stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        #ff004f 0px,
        #ff004f 20px,
        transparent 20px,
        transparent 30px
    );
}

/* --- ABOUT SECTION --- */
.wild-about {
    background: #0a0a0a;
    color: #ffffff;
    padding-top: 120px;
    padding-bottom: 120px;
}

.wild-about .wild-section-num {
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.08);
}

.wild-about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
}

.wild-about-bio {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.wild-about-data {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
}

.wild-heading {
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 40px;
    font-family: 'Arial Black', 'Poppins', sans-serif;
}

.wild-heading-accent {
    color: #ff004f;
    font-style: italic;
}

.wild-bio-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    border-left: 3px solid #ff004f;
    padding-left: 20px;
}

/* Wild tab navigation */
.wild-tab-nav {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    padding-left: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.wild-tab-nav .tab-links {
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    transition: color 0.3s, background 0.3s;
    border: none;
    position: relative;
    font-family: 'Poppins', monospace;
}

.wild-tab-nav .tab-links::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff004f;
    transition: width 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.wild-tab-nav .tab-links.active-link {
    color: #ffffff;
}

.wild-tab-nav .tab-links.active-link::after {
    width: 100%;
}

.wild-tab-nav .tab-links:hover {
    color: #ff004f;
}

.tab-contents {
    display: none;
}

.tab-contents.active-tab {
    display: block;
}

.wild-data-list {
    list-style: none;
    padding: 0;
}

.wild-data-list li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    position: relative;
    padding-left: 120px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.wild-data-list li strong {
    color: #ffffff;
    font-weight: 700;
    display: block;
}

.wild-data-tag {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ffffff;
    font-family: 'Poppins', monospace;
    background: #ff004f;
    padding: 4px 10px;
    border: none;
    white-space: nowrap;
    border-radius: 3px;
    z-index: 5;
    width: fit-content;
    max-width: 110px;
}

/* --- HERO ACCENT CIRCLE (色差圆形背景，仅滚动后显示) --- */
.hero-accent-circle {
    position: fixed;
    left: 50px;
    top: 130px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #ffffff;
    mix-blend-mode: difference;
    z-index: 99989;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-accent-circle.visible {
    opacity: 1;
}

/* --- SERVICES / WORK SECTION --- */
.wild-services {
    background: #ffffff;
    color: #0a0a0a;
    padding-top: 120px;
    padding-bottom: 100px;
}

.wild-services .wild-section-num {
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.06);
    color: transparent;
}

.wild-services .wild-section-label {
    color: #0a0a0a;
}

.wild-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    border: 2px solid #0a0a0a;
}

.wild-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px 30px;
    padding-bottom: 40px;
    min-height: 280px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #0a0a0a;
    position: relative;
    overflow: hidden;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wild-card:hover {
    justify-content: flex-start;
    z-index: 5;
    color: #ffffff;
}

.wild-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

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

.wild-card > * {
    position: relative;
    z-index: 1;
}

.wild-card-idx {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
    font-family: 'Poppins', monospace;
    color: #ff004f;
    margin-bottom: 20px;
}

.wild-card i {
    font-size: 36px;
    margin-bottom: 20px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    color: #0a0a0a;
}

.wild-card:hover i {
    transform: scale(1.25) rotate(-8deg);
    color: #ff004f;
}

.wild-card h2 {
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -1px;
    font-family: 'Arial Black', 'Poppins', sans-serif;
}

.wild-card-arrow {
    align-self: flex-end;
    font-size: 28px;
    font-weight: 300;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s 0.05s, transform 0.35s 0.05s cubic-bezier(0.4, 0, 0.2, 1), color 0.35s 0.05s;
    color: #0a0a0a;
}

.wild-card:hover .wild-card-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #ff004f;
}

/* --- PORTFOLIO / SHOWCASE SECTION --- */
.wild-portfolio {
    background: #0a0a0a;
    color: #ffffff;
    padding-top: 120px;
    padding-bottom: 120px;
}

.wild-portfolio .wild-section-num {
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.06);
}

.wild-gallery {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.wild-gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: auto;
}

.wild-gallery-item:first-child {
    grid-row: span 2;
}

.wild-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.6s cubic-bezier(0.7, 0, 0.3, 1), transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
}

.wild-gallery-item:hover img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.08);
}

.wild-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    transform: translateY(60%);
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.wild-gallery-item:hover .wild-gallery-overlay {
    transform: translateY(0);
}

.wild-gallery-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #ff004f;
    background: rgba(255, 0, 79, 0.15);
    padding: 4px 10px;
    border: 1px solid rgba(255, 0, 79, 0.4);
    margin-bottom: 10px;
    font-family: 'Poppins', monospace;
}

.wild-gallery-overlay h3 {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-family: 'Arial Black', 'Poppins', sans-serif;
}

.wild-gallery-overlay p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* --- CONTACT SECTION --- */
.wild-contact {
    background: #ffffff;
    color: #0a0a0a;
    padding-top: 120px;
    padding-bottom: 80px;
}

.wild-contact .wild-section-num {
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.05);
}

.wild-contact .wild-section-label {
    color: #0a0a0a;
}

.wild-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.wild-contact-heading {
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 40px;
    font-family: 'Arial Black', 'Poppins', sans-serif;
}

.wild-contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #333;
}

.wild-contact-info p i {
    color: #ff004f;
    margin-right: 14px;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.wild-social {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.wild-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0a0a0a;
    text-decoration: none;
    color: #0a0a0a;
    font-size: 20px;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.wild-social a:hover {
    background: #ff004f;
    border-color: #ff004f;
    color: #ffffff;
    transform: rotate(-5deg) scale(1.1);
}

.wild-btn-download {
    display: inline-block;
    padding: 16px 36px;
    background: #0a0a0a;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    transition: background 0.3s, transform 0.3s;
    font-family: 'Poppins', monospace;
}

.wild-btn-download:hover {
    background: #ff004f;
    transform: translateY(-3px);
}

/* Wild form */
.wild-form input,
.wild-form textarea {
    width: 100%;
    padding: 18px 0;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #0a0a0a;
    background: transparent;
    border: none;
    border-bottom: 2px solid #0a0a0a;
    outline: none;
    margin-bottom: 20px;
    transition: border-color 0.3s;
    letter-spacing: 1px;
}

.wild-form input::placeholder,
.wild-form textarea::placeholder {
    color: rgba(0, 0, 0, 0.3);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.wild-form input:focus,
.wild-form textarea:focus {
    border-bottom-color: #ff004f;
}

.wild-form textarea {
    resize: none;
}

.wild-btn-submit {
    display: inline-block;
    padding: 18px 60px;
    background: #ff004f;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    font-family: 'Poppins', monospace;
    transition: background 0.3s, transform 0.3s;
    margin-top: 10px;
}

.wild-btn-submit:hover {
    background: #0a0a0a;
    transform: translateY(-3px);
}

/* --- WILD FOOTER --- */
.wild-footer {
    background: #0a0a0a;
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.wild-footer-marquee {
    display: flex;
    white-space: nowrap;
    animation: wildMarquee 12s linear infinite;
    padding: 30px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.wild-footer-marquee span {
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding: 0 20px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    font-family: 'Arial Black', 'Poppins', sans-serif;
    flex-shrink: 0;
}

@keyframes wildMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.wild-footer-copy {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    letter-spacing: 2px;
}

.wild-footer-copy i {
    color: #ff004f;
}


/* --- LANG TOGGLE --- */
.lang-toggle {
    background: transparent;
    border: 2px solid #333;
    color: #333;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 4px 12px;
    font-family: 'Poppins', monospace;
    transition: background 0.3s, color 0.3s;
    line-height: 1;
    height: 30px;
    display: flex;
    align-items: center;
    cursor: pointer !important;
}

.lang-toggle:hover {
    background: #ff004f;
    border-color: #ff004f;
    color: #fff;
}

/* --- MENU BTN --- */
nav .fas {
    display: none;
}

.menu-btn {
    display: none;
    cursor: pointer !important;
}

.menu-btn i {
    font-size: 24px;
    color: #333;
    cursor: pointer !important;
}

#header {
    padding-top: 20px;
}

/* Remove old wrappers */
.content-wrapper,
.content-wrapper::before {
    display: none;
}

/* Keep container for navbar only */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    position: relative;
}

/* Game Design sub-page styles (unchanged) */
.secondary-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    background-color: #ffffff;
}

.secondary-page h1 {
    font-size: 36px;
    color: #333333;
    margin-bottom: 20px;
    grid-column: 1 / -1;
}

.secondary-page .main-content {
    grid-column: 1;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}

.secondary-page .sidebar {
    grid-column: 2;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
}

.secondary-page img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

/* ===========================
   RESPONSIVE - WILD STYLE
   =========================== */
@media only screen and (max-width: 900px) {
    .wild-section {
        padding: 80px 30px;
    }

    .wild-about-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .wild-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .wild-gallery-item:first-child {
        grid-row: span 1;
    }

    .wild-contact-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Hero Section Responsive Adjustments */
    .hero-accent-circle {
        left: 20px;
        top: 120px;
        width: 100px;
        height: 100px;
    }
}

@media only screen and (max-width: 600px) {
    .cursor-big-circle,
    .cursor-small-circle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    * {
        cursor: auto !important;
    }

    .navbar {
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.95);
    }

    .navbar .brand {
        font-size: 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease-in-out;
        z-index: 9998;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 18px;
        color: #fff;
    }

    .menu-btn {
        display: block;
        z-index: 9999;
    }

    .lang-toggle {
        position: fixed;
        top: 13px;
        right: 60px;
        z-index: 9999;
        font-size: 11px;
        padding: 3px 10px;
        height: 28px;
        border-color: #333;
        color: #333;
        background: rgba(255,255,255,0.9);
    }

    .wild-section {
        padding: 60px 20px;
    }

    .wild-section-num {
        font-size: 80px;
        right: 10px;
        top: -10px;
    }

    .wild-section-label {
        display: none;
    }

    .wild-about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wild-data-list li {
        padding-left: 0;
        padding-top: 48px;
    }

    .wild-data-tag {
        font-size: 10px;
        padding: 3px 8px;
        top: 12px;
        transform: none;
    }

    .wild-heading {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .wild-services-grid {
        grid-template-columns: 1fr;
        border: none;
    }

    .wild-card {
        min-height: 200px;
        border: 2px solid rgba(0, 0, 0, 0.15);
    }

    .wild-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .wild-gallery-item:first-child {
        grid-row: span 1;
    }

    .wild-contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wild-contact-heading {
        font-size: 32px;
    }

    .hero-accent-circle {
        display: none;
    }

    .side-nav-container {
        display: none;
    }

    #hero {
        width: 100%;
        margin: 0;
        padding: 15px;
        min-height: 100vh;
        min-height: 100svh;
    }

    /* 3D model mobile sizing + position */
    #model-container {
        width: clamp(120px, 55vw, 280px);
        height: clamp(120px, 55vw, 280px);
        top: 53%;
    }

    .circular-text {
        width: clamp(160px, 70vw, 340px);
        height: clamp(160px, 70vw, 340px);
        --radius: clamp(80px, 35vw, 170px);
    }

    .circular-text span {
        font-size: clamp(0.7em, 1.2vw, 1em);
    }

    /* marquee mobile */
    .marquee-container {
        top: 50px;
        height: 36px;
    }
    .marquee-content span {
        font-size: 1.2em;
        padding: 0 12px;
    }

    /* About mobile tweaks */
    .wild-about {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .wild-bio-text {
        font-size: 14px;
        line-height: 1.7;
        padding-left: 15px;
    }

    .wild-tab-nav .tab-links {
        padding: 10px 14px;
        font-size: 11px;
        letter-spacing: 2px;
    }

    /* Card mobile - ensure touch feedback */
    .wild-card {
        min-height: 160px;
        padding: 30px 20px;
    }

    .wild-card::before {
        display: none;
    }

    .wild-card-arrow {
        opacity: 1;
        transform: translateX(0);
        color: #ff004f;
    }

    /* Contact mobile */
    .wild-contact {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .wild-contact-heading {
        font-size: 28px;
    }

    .wild-social a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .wild-btn-download {
        padding: 14px 28px;
        font-size: 12px;
    }

    .wild-btn-submit {
        width: 100%;
        padding: 16px 40px;
        font-size: 13px;
    }

    .wild-form input,
    .wild-form textarea {
        font-size: 14px;
        padding: 14px 0;
    }

    /* Footer mobile */
    .wild-footer-marquee span {
        font-size: clamp(20px, 6vw, 36px);
        padding: 0 12px;
    }
}