<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 全局样式 - Dinocomploff Gaming Theme */
:root {
    --primary-color: #FF6B35;    /* Gaming Orange - Button &amp; Highlight */
    --secondary-color: #F7931E;  /* Gaming Gold - Secondary */
    --accent-color: #FFD23F;     /* Gaming Yellow - Tertiary */
    --background-color: #1A1A1A; /* Dark Gaming Background */
    --card-bg-color: #2A2A2A;    /* Dark Card Background */
    --text-color: #FFFFFF;       /* White text for dark theme */
    --text-muted: #CCCCCC;       /* Light gray for muted text */
    --border-color: #404040;     /* Dark border color */
    --spacing-unit: 8px;
    --transition-speed: 0.3s;
    --border-radius: 12px;
    --dark-bg: #0F0F0F;         /* Darker background */
    --gaming-red: #E74C3C;      /* Gaming red accent */
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 calc(2 * var(--spacing-unit));
}

ul {
    list-style: none;
}

.section {
    padding: calc(12 * var(--spacing-unit)) 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: calc(8 * var(--spacing-unit));
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* 自定义光标 */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    pointer-events: none;
    transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
    z-index: 9999;
    opacity: 0.7;
    filter: blur(1px);
}

/* 导航栏 */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(2 * var(--spacing-unit)) calc(4 * var(--spacing-unit));
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: padding var(--transition-speed) ease;
    border-bottom: 1px solid var(--border-color);
}

nav.scrolled {
    padding: var(--spacing-unit) calc(4 * var(--spacing-unit));
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: calc(2 * var(--spacing-unit));
}

.logo img {
    height: 40px;
    width: auto;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: calc(4 * var(--spacing-unit));
}

.nav-links li a {
    font-weight: 500;
    position: relative;
    color: var(--text-color);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.github-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--card-bg-color);
    padding: 8px 16px;
    border-radius: 30px;
    transition: all var(--transition-speed) ease;
    color: var(--text-color);
}

.github-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all var(--transition-speed) ease;
}

/* 英雄区 */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.2) 0%, rgba(15, 23, 42, 0) 70%);
    z-index: -1;
}

.hero-content {
    flex: 1;
    display: flex;
    padding: 80px calc(12 * var(--spacing-unit)) calc(8 * var(--spacing-unit));
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: calc(6 * var(--spacing-unit));
    padding-bottom: calc(4 * var(--spacing-unit));
}

.hero-text {
    flex: 0 0 45%;
    max-width: 45%;
    text-align: left;
    margin-top: calc(6 * var(--spacing-unit));
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-unit);
    line-height: 1.1;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: calc(3 * var(--spacing-unit));
    color: var(--text-muted);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: calc(4 * var(--spacing-unit));
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: calc(2 * var(--spacing-unit));
    margin-top: calc(4 * var(--spacing-unit));
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    text-align: center;
}

.btn.primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn.primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.btn.secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.btn.secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* 故障文字效果 */
.glitch {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.glitch::before,
.glitch::after {
    content: none;
}

.hero-animation {
    flex: 1;
    max-width: 600px;
    z-index: 1;
    position: relative;
}

.frame-container {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: all var(--transition-speed) ease;
}

.frame-container:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) scale(1.02);
}

.video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background-color: var(--card-bg-color);
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.9), rgba(30, 41, 59, 0.1));
    z-index: 1;
    pointer-events: none;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* 新增：Hero区域视频容器样式 */
.hero-video-container {
    flex: 1 1 50%;
    max-width: 50%;
    height: auto;
    margin-top: calc(3 * var(--spacing-unit));
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background-color: #1f1235;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hero Video Wrapper Styles */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--border-radius);
}



/* 概述部分 */
.section-overview {
    position: relative;
    overflow: hidden;
}

.section-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at right bottom, rgba(99, 102, 241, 0.1) 0%, rgba(15, 23, 42, 0) 70%);
    z-index: -1;
}

.overview-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: calc(8 * var(--spacing-unit));
}

.overview-text {
    flex: 1;
}

.overview-text p {
    margin-bottom: calc(4 * var(--spacing-unit));
    font-size: 1.1rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: calc(2 * var(--spacing-unit));
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: calc(2 * var(--spacing-unit));
    font-size: 1.1rem;
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.overview-image {
    width: 50%;
    aspect-ratio: 16 / 9;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
}

.overview-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.overview-image video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 特性部分 */
.section-features {
    position: relative;
    background-color: var(--card-bg-color);
    padding: calc(16 * var(--spacing-unit)) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: calc(3 * var(--spacing-unit));
}

.feature-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.8));
    border-radius: var(--border-radius);
    padding: calc(4 * var(--spacing-unit));
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0));
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

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

.feature-icon {
    margin-bottom: calc(2 * var(--spacing-unit));
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: calc(1 * var(--spacing-unit));
    color: #ffffff;
}

.feature-card p {
    color: #f0f0f0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* 演示部分 */
.section-demos {
    padding: calc(16 * var(--spacing-unit)) 0;
    position: relative;
    overflow: hidden;
}

.section-demos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at left bottom, rgba(99, 102, 241, 0.1) 0%, rgba(15, 23, 42, 0) 70%);
    z-index: -1;
}

.demos-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.demo-tabs {
    display: flex;
    justify-content: center;
    gap: calc(2 * var(--spacing-unit));
    margin-bottom: calc(6 * var(--spacing-unit));
}

.demo-tab {
    padding: 12px 24px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.demo-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.demo-tab.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.demo-content {
    position: relative;
}

.demo-panel {
    display: none;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.demo-panel.active {
    display: block;
    opacity: 1;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: calc(6 * var(--spacing-unit));
}

.demo-item {
    border-radius: var(--border-radius);
    overflow: visible;
    background-color: var(--card-bg-color);
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--border-color);
}

.demo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.demo-video {
    width: 100%;
}

.demo-video video {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.demo-info {
    padding: calc(3 * var(--spacing-unit));
}

.demo-info h3 {
    margin-bottom: var(--spacing-unit);
    font-size: 1.3rem;
}

.demo-info p {
    color: var(--text-muted);
}

/* Demo Note Styles */
.demo-note {
    font-size: 0.9em;
    color: #4b5563; /* Consider using a CSS variable */
    margin-top: calc(4 * var(--spacing-unit)); /* Adjusted from negative margin */
    margin-bottom: calc(4 * var(--spacing-unit));
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 安装部分 */
.section-installation {
    background-color: var(--card-bg-color);
    padding: calc(16 * var(--spacing-unit)) 0;
}

.installation-content {
    max-width: 800px;
    margin: 0 auto;
}

.installation-tabs {
    display: flex;
    justify-content: center;
    gap: calc(2 * var(--spacing-unit));
    margin-bottom: calc(4 * var(--spacing-unit));
}

.installation-tab {
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.installation-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.installation-tab.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.installation-panel {
    display: none;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.installation-panel.active {
    display: block;
    opacity: 1;
}

.code-block {
    background-color: #0f172a;
    border-radius: var(--border-radius);
    padding: calc(4 * var(--spacing-unit));
    margin-top: calc(2 * var(--spacing-unit));
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.code-block pre {
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.code-block code {
    font-family: 'Source Code Pro', monospace;
    color: var(--text-color);
    line-height: 1.8;
}

/* 论文部分 */
.section-paper {
    padding: calc(16 * var(--spacing-unit)) 0;
    position: relative;
    overflow: hidden;
}

.section-paper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at right center, rgba(99, 102, 241, 0.1) 0%, rgba(15, 23, 42, 0) 70%);
    z-index: -1;
}

.paper-content {
    display: flex;
    align-items: center;
    gap: calc(8 * var(--spacing-unit));
}

.paper-image {
    flex: 1;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    transform: perspective(1000px) rotateY(5deg);
}

.paper-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.paper-info {
    flex: 1;
}

.paper-info h3 {
    font-size: 1.8rem;
    margin-bottom: calc(3 * var(--spacing-unit));
}

.paper-info p {
    color: var(--text-muted);
    margin-bottom: calc(4 * var(--spacing-unit));
}

.paper-links {
    display: flex;
    gap: calc(2 * var(--spacing-unit));
}

/* 页脚 */
.footer {
    background-color: var(--card-bg-color);
    padding: calc(8 * var(--spacing-unit)) 0 calc(4 * var(--spacing-unit));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: calc(6 * var(--spacing-unit));
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: calc(2 * var(--spacing-unit));
}

.footer-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links {
    display: flex;
    gap: calc(8 * var(--spacing-unit));
}

.footer-column h3 {
    margin-bottom: calc(3 * var(--spacing-unit));
    font-size: 1.2rem;
    color: var(--text-color);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: calc(2 * var(--spacing-unit));
}

.footer-column ul li a {
    color: var(--text-muted);
    transition: color var(--transition-speed) ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: calc(4 * var(--spacing-unit));
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* 语言切换器 */
.lang-switcher {
    display: flex;
    align-items: center;
    margin-left: calc(2 * var(--spacing-unit));
    position: relative;
}

.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background-color: var(--card-bg-color);
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all var(--transition-speed) ease;
    color: var(--text-color);
}

.lang-switcher-btn:hover {
    background-color: rgba(30, 41, 59, 0.8);
}

.lang-switcher-icon {
    font-size: 1rem;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--card-bg-color);
    border-radius: var(--border-radius);
    min-width: 120px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    margin-top: 0.5rem;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-speed) ease;
    z-index: 1001;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 8px 16px;
    display: block;
    text-align: left;
    transition: all var(--transition-speed) ease;
}

.lang-option:hover {
    background-color: rgba(99, 102, 241, 0.1);
}

.lang-option.active {
    background-color: rgba(99, 102, 241, 0.2);
}

/* 404页面 */
.error-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.error-code {
    font-size: 10rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.error-message {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.home-button {
    margin-top: 2rem;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .hero-content {
        flex-direction: column;
        padding-top: 100px; /* Adjusted from 120px, can be tweaked further if text is too high/low */
        text-align: center;
        align-items: center;
        padding-left: calc(4 * var(--spacing-unit)); /* Adjusted for tighter mobile padding */
        padding-right: calc(4 * var(--spacing-unit)); /* Adjusted for tighter mobile padding */
        padding-bottom: calc(6 * var(--spacing-unit));
    }

    .hero-text {
        /* Reset PC top margin that might push it down too much or cause alignment issues with video */
        margin-top: 0;
        /* Space below the text block, before the video */
        margin-bottom: calc(4 * var(--spacing-unit)); /* e.g., 32px if unit is 8px */
        width: 100%; /* Ensure it takes full width for centering its content */
        max-width: 500px; /* Constrain text block width for readability on mobile */
    }

    .hero-video-container {
        /* Reset PC top margin */
        margin-top: 0; /* Space above video is controlled by .hero-text's margin-bottom */
        width: 100%;   /* Video container takes full available width */
        max-width: 400px; /* Example: Constrain video width on mobile. Adjust as needed. */
                       /* Could also be something like 90vw or similar percentage */
        /* Aspect-ratio and other styles are global and should apply */
    }

    .paper-content {
        flex-direction: column;
    }

    .paper-info {
        order: 2;
    }

    .paper-image {
        order: 1;
        margin-bottom: calc(6 * var(--spacing-unit));
    }

    .frame-container,
    .paper-image {
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-content {
        padding-top: 80px; /* Further fine-tune for very small screens */
        padding-left: calc(2 * var(--spacing-unit));
        padding-right: calc(2 * var(--spacing-unit));
    }

    .hero-text h1 {
        font-size: 2.5rem; /* Adjusted for smaller screens */
    }

    .hero-text h2 {
        font-size: 1.3rem; /* Adjusted for smaller screens */
    }

    .hero-video-container {
        max-width: 90%; /* More relative width for smaller screens */
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: calc(6 * var(--spacing-unit));
    }

    .footer-logo {
        align-items: center;
        margin-bottom: calc(4 * var(--spacing-unit));
    }

    .footer-links {
        justify-content: center;
    }

    .overview-content {
        flex-direction: column; /* Stack items vertically */
        align-items: center;    /* Center items horizontally */
        gap: calc(4 * var(--spacing-unit)); /* Adjust gap for vertical stacking */
    }

    .overview-text {
        text-align: center; /* Center align text within this block */
        width: 100%;        /* Allow it to take full width to center its content */
        max-width: 500px;   /* Optional: constrain width for readability */
    }

    .feature-list {
        display: inline-flex; /* Allows centering of the list itself if text-align:center on parent */
        flex-direction: column; /* Stack list items vertically */
        align-items: center;    /* Center list items if they have varying widths */
                                /* Or use align-items: flex-start; if you want text to align left within each item */
        gap: var(--spacing-unit); /* Adjust gap between list items */
    }

    .feature-list li {
        justify-content: center; /* Center content (icon and text) within each list item */
        /* If icons and text are misaligned, ensure they are vertically aligned too */
        /* display: flex; align-items: center; is already on .feature-list li globally */
    }

    .overview-image {
        width: 90%;         /* Adjust image width for mobile */
        max-width: 400px;   /* Max width for image */
        margin-top: calc(2 * var(--spacing-unit)); /* Add some space above image if it's below text */
    }
}

.hero-gif {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: calc(4 * var(--spacing-unit));
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: calc(3 * var(--spacing-unit));
    }
}

.how-it-works-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: calc(4 * var(--spacing-unit));
}

/* Style for the iframe and its wrapper */
#online-run-iframe-anchor {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: calc(4 * var(--spacing-unit));
}

#main-iframe {
    width: 100%;
    height: 2100px; /* Further increased height for mobile, with scrolling="no" */
    border: none;
    border-radius: var(--border-radius, 12px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* Desktop layout for hero */
@media (min-width: 1024px) {
    .hero {
        min-height: auto; 
        padding-bottom: calc(4 * var(--spacing-unit)); /* MODIFIED: Significantly reduced bottom padding */
    }

    .hero-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start; 
        gap: calc(6 * var(--spacing-unit));
        padding-bottom: calc(4 * var(--spacing-unit)); /* ADDED: Explicitly set a small bottom padding for PC */
    }

    .hero-text {
        flex: 0 0 45%; /* 左侧文本区域占比 */
        max-width: 45%;
        text-align: left; /* 确保文本在桌面端左对齐 */
    }

    /* 新增：桌面端Hero视频容器样式 */
    .hero-video-container {
        flex: 1 1 50%; /* 右侧视频区域占比，允许伸缩 */
        max-width: 50%; /* 最大宽度 */
        height: auto; /* 高度自适应，由aspect-ratio控制 */
    }

    #online-run-iframe-anchor {
        /* 移除之前的flex布局，因为它不再是hero-content的子元素 */
        /* flex: 1 1 50%; */ /*  被移除 */
        /* max-width: 50%; */ /* 被移除 */
        /* 以下为移到页面下方后的样式，确保其在新位置正常展示 */
        width: 100%; /* 在其新的父容器（如.container）中占据全部宽度 */
        max-width: 1100px; /* 可以根据需要设置最大宽度，与.container一致 */
        margin-left: auto;
        margin-right: auto;
    }

    #main-iframe {
        height: 1350px;
    }
}

/* 新增：为包含移出iframe的新section的样式 (如果按建议添加了section) */
#online-run-section {
    padding-top: calc(4 * var(--spacing-unit)); /* MODIFIED: Further reduced top padding */
    /* padding-bottom will inherit from .section or can be set here if different */
}

#online-run-section .section-title {
    margin-bottom: calc(6 * var(--spacing-unit));
}

/* === Enhancements for Flowchart-like Sections === */

/* Adjust spacing for main flow containers */
.installation-flow,
.technical-flow {
    display: flex;
    flex-direction: column;
    gap: 0; /* Gap will be controlled by margin on steps */
}

.flow-step,
.tech-step {
    background-color: #f8f9fa; /* Slightly lighter card background */
    border: 1px solid #dee2e6; /* Softer border color */
    border-radius: 8px;
    padding: 20px 25px; /* Adjusted padding */
    box-shadow: 0 2px 4px rgba(0,0,0,0.04); /* Softer shadow */
    position: relative;
    margin-bottom: 35px; /* Increased space for dashed line and separation */
}

/* Dashed line separator for all but the last step/category */
.flow-step:not(:last-child)::after,
.tech-step:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -18px; /* Position line in the margin space */
    left: 20%;   /* Start line a bit from the left */
    width: 60%;  /* Width of the dashed line */
    height: 1px; /* Thickness of the line */
    background-image: linear-gradient(to right, #adb5bd 60%, transparent 40%); /* Dashed line effect */
    background-size: 12px 1px; /* Dash length and gap */
    background-repeat: repeat-x;
}

/* Remove bottom margin from the very last card in each flow */
.installation-flow &gt; .flow-step:last-child,
.technical-flow &gt; .tech-step:last-child {
    margin-bottom: 0;
}
/* Ensure no dashed line for the last child */
.installation-flow &gt; .flow-step:last-child::after,
.technical-flow &gt; .tech-step:last-child::after {
    display: none;
}


/* Headings within steps/categories */
.flow-step h4,
.tech-step h4 {
    margin-top: 0;
    color: #212529; /* Darker heading color */
    display: flex;
    align-items: center;
    margin-bottom: 20px; /* More space below heading */
    font-size: 1.15em; /* Slightly larger heading */
}

.flow-step h4 i,
.tech-step h4 i {
    margin-right: 12px;
    color: #7c5dfa; /* Adjusted icon color to be a bit brighter */
    font-size: 1.35em; /* Slightly larger icon */
    min-width: 25px; /* Ensure icons align well if text wraps */
}

/* List items (the "要点") */
.flow-step ul, .tech-step ul {
    list-style-type: none; /* Remove default bullets if we add custom ones or just want spacing */
    padding-left: 5px; /* Slight overall indent for the list */
}

.flow-step ul li,
.tech-step ul li {
    margin-bottom: 16px; /* Increased space BETWEEN bullet points */
    line-height: 1.7;   /* Increased line height for multi-line bullet points */
    padding-left: 0px; /* Adjust if using custom bullets with ::before */
    color: #495057; /* Slightly softer text color for list items */
}

.flow-step ul li strong,
.tech-step ul li strong {
    color: #343a40; /* Make bolded text more distinct */
    font-weight: 600; /* Slightly bolder */
}


/* Code blocks styling within installation guide */
.installation-flow .code-block-inline pre,
.installation-flow .code-block pre {
    padding: 12px 15px;
    background-color: #2d2d2d; /* Dark background for code */
    color: #e6e6e6; /* Light text for dark background */
    border: 1px solid #444;
    border-radius: 6px;
    overflow-x: auto; /* Horizontal scroll for long code lines */
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
    font-size: 0.9em;
    margin-top: 8px;
    margin-bottom: 15px; /* More space after code block */
    white-space: pre; /* Preserve spaces and line breaks, use with overflow-x */
}
/* For inline code within list items if any */
.flow-step ul li code,
.tech-step ul li code {
    background-color: #e9ecef;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #2c3e50;
}


/* Specific to Technical Highlights Diagram */
.tech-diagram {
    max-width: 160px; /* Adjusted size */
    float: right;
    margin-left: 25px;
    margin-top: 5px; /* Align better with the start of the list */
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ced4da;
    padding: 4px;
    background-color: #ffffff;
}

/* Clearfix for floated diagram - applies to .tech-step */
.tech-step::after { /* This was for the dashed line, let's ensure clearfix is also handled */
    /* The dashed line pseudo-element is already here */
    /* For clearfix, if the diagram is the only floated element: */
    /* content: ""; clear: both; display: table; */
    /* Simpler is to ensure the parent .tech-step has overflow: hidden or auto if needed, but float usually works with subsequent block elements */
}
.tech-step &gt; ul { /* Ensure list below diagram clears it if diagram is tall */
    /* clear: right; */ /* Can be too aggressive, usually natural flow is okay */
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .tech-diagram {
        float: none;
        display: block;
        max-width: 60%;
        margin: 10px auto 20px auto;
    }

    .flow-step:not(:last-child)::after,
    .tech-step:not(:last-child)::after {
        width: 75%; /* Wider dashed line on mobile */
        left: 12.5%;
    }

    .flow-step h4, .tech-step h4 {
        font-size: 1.1em;
    }
    .flow-step h4 i, .tech-step h4 i {
        font-size: 1.25em;
    }
}

/* 视频展示区块样式 */
.section-video-showcase {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.section-video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"&gt;&lt;defs&gt;&lt;pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"&gt;&lt;circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/&gt;&lt;circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/&gt;&lt;/pattern&gt;&lt;/defs&gt;&lt;rect width="100" height="100" fill="url(%23grain)"/&gt;&lt;/svg&gt;');
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: calc(8 * var(--spacing-unit));
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: calc(6 * var(--spacing-unit));
    margin-top: calc(8 * var(--spacing-unit));
}

.video-container {
    background: var(--card-bg-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
    position: relative;
}

.video-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: calc(4 * var(--spacing-unit));
}

.video-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: calc(2 * var(--spacing-unit));
}

.video-info p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: calc(4 * var(--spacing-unit));
    }
    
    .video-container {
        margin: 0 calc(2 * var(--spacing-unit));
    }
    
    .video-info {
        padding: calc(3 * var(--spacing-unit));
    }
    
    .video-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-container {
        margin: 0;
    }
}

/* Products区块样式 */
.section-products {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.section-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.section-products .section-title {
    color: white;
}

.section-products .section-title::after {
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: calc(6 * var(--spacing-unit));
    margin-top: calc(8 * var(--spacing-unit));
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
    border-radius: var(--border-radius);
    padding: calc(6 * var(--spacing-unit));
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: calc(4 * var(--spacing-unit));
    transition: all var(--transition-speed) ease;
}

.product-icon i {
    font-size: 2rem;
    color: white;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: calc(3 * var(--spacing-unit));
    color: var(--text-color);
}

.product-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: calc(4 * var(--spacing-unit));
}

.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: calc(1 * var(--spacing-unit)) 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: calc(4 * var(--spacing-unit));
    color: var(--text-muted);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: calc(1 * var(--spacing-unit));
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: calc(4 * var(--spacing-unit));
    }
    
    .product-card {
        padding: calc(4 * var(--spacing-unit));
    }
    
    .product-icon {
        width: 60px;
        height: 60px;
    }
    
    .product-icon i {
        font-size: 1.5rem;
    }
}

/* Gaming-specific styles for Dinocomploff */
.section-dark {
    background-color: var(--dark-bg);
}

.guides-grid, .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(4 * var(--spacing-unit));
}

.guide-card, .tool-card {
    background: var(--card-bg-color);
    border-radius: var(--border-radius);
    padding: calc(4 * var(--spacing-unit));
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.guide-card::before, .tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition-speed) ease;
}

.guide-card:hover::before, .tool-card:hover::before {
    transform: scaleX(1);
}

.guide-card:hover, .tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.guide-icon, .tool-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: calc(3 * var(--spacing-unit));
    color: white;
    font-size: 1.5rem;
}

.guide-features, .tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: calc(1 * var(--spacing-unit));
    margin-top: calc(3 * var(--spacing-unit));
}

.feature-tag {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.strategies-content {
    max-width: 1000px;
    margin: 0 auto;
}

.strategy-tabs {
    display: flex;
    justify-content: center;
    gap: calc(2 * var(--spacing-unit));
    margin-bottom: calc(6 * var(--spacing-unit));
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-weight: 500;
}

.tab-btn:hover, .tab-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

.strategy-list {
    display: flex;
    flex-direction: column;
    gap: calc(3 * var(--spacing-unit));
    margin-top: calc(4 * var(--spacing-unit));
}

.strategy-item {
    display: flex;
    align-items: flex-start;
    gap: calc(3 * var(--spacing-unit));
    padding: calc(3 * var(--spacing-unit));
    background: var(--card-bg-color);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.strategy-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 4px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: calc(4 * var(--spacing-unit));
}

.testimonial-card {
    background: var(--card-bg-color);
    border-radius: var(--border-radius);
    padding: calc(4 * var(--spacing-unit));
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    font-family: serif;
}

.testimonial-content {
    margin-bottom: calc(3 * var(--spacing-unit));
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 4px;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.rating {
    color: var(--accent-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(8 * var(--spacing-unit));
    align-items: start;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: calc(3 * var(--spacing-unit));
    margin-top: calc(4 * var(--spacing-unit));
}

.contact-method {
    display: flex;
    align-items: center;
    gap: calc(3 * var(--spacing-unit));
}

.contact-method i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 30px;
}

.contact-form {
    background: var(--card-bg-color);
    padding: calc(4 * var(--spacing-unit));
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: calc(3 * var(--spacing-unit));
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--background-color);
    color: var(--text-color);
    font-size: 1rem;
    transition: border-color var(--transition-speed) ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Overview Section Styles */
.overview-intro {
    text-align: center;
    margin-bottom: calc(8 * var(--spacing-unit));
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: calc(4 * var(--spacing-unit));
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: calc(4 * var(--spacing-unit));
    margin-bottom: calc(8 * var(--spacing-unit));
}

.feature-card {
    background: var(--card-bg-color);
    border-radius: var(--border-radius);
    padding: calc(6 * var(--spacing-unit));
    text-align: center;
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto calc(4 * var(--spacing-unit));
    position: relative;
    z-index: 2;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: calc(3 * var(--spacing-unit));
    color: var(--text-color);
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.methodology-section {
    background: var(--card-bg-color);
    border-radius: var(--border-radius);
    padding: calc(8 * var(--spacing-unit));
    margin-bottom: calc(8 * var(--spacing-unit));
    border: 1px solid var(--border-color);
}

.methodology-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: calc(4 * var(--spacing-unit));
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.methodology-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: calc(4 * var(--spacing-unit));
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.methodology-text:last-child {
    margin-bottom: 0;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: calc(4 * var(--spacing-unit));
    margin-top: calc(6 * var(--spacing-unit));
}

.stat-item {
    text-align: center;
    padding: calc(3 * var(--spacing-unit));
    background: var(--card-bg-color);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(4 * var(--spacing-unit));
}

.tech-item {
    background: var(--card-bg-color);
    border-radius: var(--border-radius);
    padding: calc(4 * var(--spacing-unit));
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
}

.tech-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto calc(3 * var(--spacing-unit));
    color: white;
    font-size: 2rem;
}

.social-links {
    display: flex;
    gap: calc(2 * var(--spacing-unit));
    margin-top: calc(3 * var(--spacing-unit));
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-speed) ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Gaming Showcase Section */
.section-light {
    background-color: #2A2A2A;
}

.showcase-content {
    margin-top: calc(4 * var(--spacing-unit));
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(6 * var(--spacing-unit));
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(4 * var(--spacing-unit));
    align-items: center;
    background: var(--card-bg-color);
    border-radius: var(--border-radius);
    padding: calc(4 * var(--spacing-unit));
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
}

.showcase-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.showcase-item:nth-child(even) .showcase-image {
    order: 2;
}

.showcase-item:nth-child(even) .showcase-text {
    order: 1;
}

.showcase-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-speed) ease;
}

.showcase-image:hover img {
    transform: scale(1.05);
}

.showcase-text h3 {
    font-size: 1.5rem;
    margin-bottom: calc(2 * var(--spacing-unit));
    color: var(--primary-color);
}

.showcase-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Mobile responsiveness for gaming components */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: calc(4 * var(--spacing-unit));
    }
    
    .strategy-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 200px;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .showcase-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .showcase-item:nth-child(even) .showcase-image,
    .showcase-item:nth-child(even) .showcase-text {
        order: unset;
    }
    
    .showcase-text h3 {
        font-size: 1.3rem;
    }
    
    .showcase-text p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: calc(3 * var(--spacing-unit));
    }
    
    .feature-card {
        padding: calc(4 * var(--spacing-unit));
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .methodology-section {
        padding: calc(5 * var(--spacing-unit));
    }
    
    .methodology-title {
        font-size: 1.5rem;
    }
}</pre></body></html>