* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    color: #333;
    background: #000;
  }
  
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  
  /* Header */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .header-inner {
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
  }

  .logo-img {
    height: 70%;
    width: auto;
    display: block;
    object-fit: contain;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }

  .logo-title {
    font-weight: bold;
    font-size: 20px;
    color: #333;
  }

  .logo-desc {
    font-size: 10px;
    color: #666;
    margin-top: 2px;
    letter-spacing: 4px;
  }
  
  .nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
  }
  
  .menu-btn {
    display: none;
    font-size: 26px;
    cursor: pointer;
  }

  .lang-switcher {
    display: flex;
    gap: 5px;
    align-items: center;
  }

  .lang-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 5px 12px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .lang-btn:hover {
    background: #f5f5f5;
    border-color: #ff6a00;
  }

  .lang-btn.active {
    background: #ff6a00;
    color: #fff;
    border-color: #ff6a00;
  }
  
  /* Banner */
  .banner {
    position: relative;
    overflow: hidden;
    color: #fff;
    height: 60vh;
    background: #000;
  }
  
  .banner-slides {
    position: absolute;
    inset: 0;
  }
  
  .banner-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  
  .banner-slide.active {
    opacity: 1;
  }
  
  .banner-content {
    position: absolute;
    top: 65%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    width: 50%;
    max-width: 600px;
    padding: 30px 40px;
    text-align: left;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    border-radius: 8px;
  }
  
  .banner h1 {
    font-size: 30px;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }
  
  .banner p {
    font-size: 18px;
  }
  
  .banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
  }
  
  .banner-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
  }
  
  .banner-dots .active {
    background: #ff6a00;
  }
  
  /* Section */
  .section {
    padding: 70px 0;
    background: #fff;
  }
  
  .section-gray {
    background: #f6f7f9;
  }
  
  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #ff6a00;
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .section-title::before {
    content: '';
    width: 5px;
    height: 28px;
    background: #ff6a00;
    display: block;
    flex-shrink: 0;
  }
  
  .section-desc {
    color: #666;
    line-height: 1.8;
  }

  /* Contact Us */
  .contact-us-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 700px;
  }
  .contact-us-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
  }
  .contact-us-label {
    flex-shrink: 0;
    width: 90px;
    font-size: 14px;
    font-weight: 600;
    color: #ff6a00;
  }
  .contact-us-value {
    color: #333;
    line-height: 1.6;
    font-size: 15px;
  }
  .contact-us-value a {
    color: #333;
    text-decoration: none;
  }
  .contact-us-value a:hover {
    color: #ff6a00;
  }
  @media (max-width: 768px) {
    .contact-us-item {
      flex-direction: column;
      gap: 6px;
    }
    .contact-us-label {
      width: auto;
    }
  }
  
  /* Games */
  .game-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
  }

  .game-tab {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    top: 2px;
  }

  .game-tab:hover {
    color: #ff6a00;
  }

  .game-tab.active {
    color: #ff6a00;
    border-bottom-color: #ff6a00;
    font-weight: 500;
  }

  .game-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .game-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 10px;
  }

  .game-card h3 {
    margin: 15px 0 8px 0;
    font-size: 18px;
  }

  .game-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
  }

  .game-card[data-tab] {
    display: none;
  }

  .game-card[data-tab].active {
    display: block;
  }

  .video-wrapper {
    position: relative;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    display: block;
  }

  .video-wrapper::before {
    content: '';
    display: block;
    padding-top: 56.25%; /* 16:9 宽高比 */
  }

  .video-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: opacity 0.3s ease;
    z-index: 1;
  }

  .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 106, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .play-icon:hover {
    background: rgba(255, 106, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
  }

  .play-icon svg {
    width: 30px;
    height: 30px;
    margin-left: 4px;
  }

  .video-wrapper.playing .play-icon {
    opacity: 0;
    pointer-events: none;
  }

  .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
  }

  .video-wrapper.playing .video-cover {
    opacity: 0;
    pointer-events: none;
    z-index: 0;
  }

  .video-wrapper.playing video {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
  }

  .video-wrapper video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.5);
  }

  .video-wrapper video::-webkit-media-controls-play-button {
    background-color: rgba(255, 106, 0, 0.8);
    border-radius: 50%;
  }
  
  .coming {
    background: #ff6a00;
    position: relative;
    height: 230px;
  }
  
  .coming-mask {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
  }
  
  /* Jobs */
  .job-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .job-card {
    border: 1px solid #eee;
    padding: 20px;
    display: flex;
    flex-direction: column;
  }

  .job-card h3 {
    margin-bottom: 15px;
  }

  .job-requirements {
    margin: 0 0 20px 0;
    padding-left: 20px;
    color: #666;
    line-height: 1.8;
    flex-grow: 1;
  }

  .job-requirements li {
    margin-bottom: 8px;
  }

  .job-requirements li:last-child {
    margin-bottom: 0;
  }

  .job-apply-btn {
    background: #ff6a00;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-end;
    margin-top: auto;
  }

  .job-apply-btn:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 106, 0, 0.3);
  }

  .job-apply-btn:active {
    transform: translateY(0);
  }

  .job-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
  }

  .job-tab {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    top: 2px;
  }

  .job-tab:hover {
    color: #ff6a00;
  }

  .job-tab.active {
    color: #ff6a00;
    border-bottom-color: #ff6a00;
    font-weight: 500;
  }

  .job-card[data-tab] {
    display: none;
  }

  .job-card[data-tab].active {
    display: flex;
    flex-direction: column;
  }
  
  /* Environment */
  .env-wrapper {
    overflow: hidden;
    width: 100%;
  }

  .env-list {
    display: flex;
    gap: 20px;
    animation: scrollEnv 30s linear infinite;
    width: fit-content;
  }

  .env-list img {
    width: 260px;
    height: 160px;
    object-fit: cover;
    flex-shrink: 0;
  }

  @keyframes scrollEnv {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* Footer */
  .footer {
    background: #222;
    color: #aaa;
    padding: 40px 0 20px 0;
  }

  .footer-warning {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
  }

  .footer-warning p {
    font-size: 11px;
    color: #888;
    margin: 0;
    line-height: 1.6;
  }
  
  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
  }

  .footer-contact p {
    margin: 0;
    font-size: 13px;
  }

  .footer-logo-section {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }

  .footer-logo-section > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .footer-logo {
    height: 40px;
    width: auto;
    display: block;
  }
  
  /* Responsive */
  @media (max-width: 1200px) {
    .container {
      width: 100%;
      padding: 0 20px;
    }
  }
  
  @media (max-width: 900px) {
    .game-list {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .job-list {
      grid-template-columns: 1fr;
    }
  
    .env-list {
      animation-duration: 20s;
    }

    .env-list img {
      width: 200px;
      height: 120px;
    }
  }
  
  @media (max-width: 768px) {
    .header-inner {
      height: 70px;
      padding: 0 15px;
    }

    .header .container {
      padding: 0 15px;
    }

    .nav {
      display: none;
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border-bottom: 1px solid #eee;
      z-index: 999;
      max-height: calc(100vh - 70px);
      overflow-y: auto;
    }

    .nav a {
      display: block;
      padding: 16px 15px;
      margin: 0;
      border-bottom: 1px solid #f0f0f0;
      font-size: 15px;
    }

    .nav a:last-child {
      border-bottom: none;
    }

    .logo {
      order: -1;
    }

    .menu-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      padding: 0;
      font-size: 24px;
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }

    .lang-switcher {
      position: absolute;
      top: 78px;
      right: 15px;
      z-index: 1001;
      margin-right: 0;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(8px);
      padding: 10px 14px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .lang-btn {
      padding: 6px 12px;
      font-size: 13px;
    }
  
    .banner {
      height: 50vh;
    }

    .banner-content {
      width: calc(100% - 30px);
      max-width: none;
      left: 50%;
      top: auto;
      right: auto;
      bottom: 18%;
      transform: translateX(-50%);
      padding: 18px 20px;
      text-align: center;
    }
  
    .banner h1 {
      font-size: 22px;
      margin-bottom: 12px;
      letter-spacing: -0.02em;
      line-height: 1.25;
    }
  
    .banner p {
      font-size: 14px;
      line-height: 1.5;
    }
  
    .game-list {
      grid-template-columns: 1fr;
    }

    .game-tabs {
      gap: 5px;
      margin-bottom: 20px;
    }

    .game-tab {
      padding: 10px 20px;
      font-size: 14px;
    }

    .job-tabs {
      gap: 5px;
      margin-bottom: 20px;
      justify-content: flex-start;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .job-tab {
      padding: 10px 15px;
      font-size: 13px;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .env-list img {
      width: 150px;
      height: 100px;
    }
  
    .footer-inner {
      flex-direction: column;
      gap: 20px;
    }

    .footer-contact {
      text-align: left;
    }

    .footer-warning {
      margin-top: 20px;
      padding-top: 15px;
    }

    .footer-warning p {
      font-size: 10px;
      padding: 0 10px;
    }
  }

  @media (max-width: 480px) {
    .banner-content {
      width: calc(100% - 24px);
      padding: 14px 16px;
      bottom: 16%;
    }

    .banner h1 {
      font-size: 18px;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .banner p {
      font-size: 13px;
      line-height: 1.5;
    }
  }
  