/* 复制原来的全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Poppins-Medium";
  src: url("Poppins-Medium.ttf");
}

@font-face {
  font-family: "Poppins-Light";
  src: url("Poppins-Regular.ttf");
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #211f29;
  overflow-x: hidden;
}

/* 加载动画 */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #ff6b35;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* 导航栏样式 */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo img {
  height: 40px;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-link:hover {
  color: #ff6b35;
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle .bar {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* 响应式导航 */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: #fff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* 主内容区域 */
#main-content {
  margin-top: 70px; /* 为固定导航栏留出空间 */
}

.page-title {
  height: auto;
  min-height: unset;
  background-position: bottom left;
  background-size: cover;
  background-image: linear-gradient(to right, #181838, #181838),
    linear-gradient(90.4deg, #8380b5 2.17%, #2c2680 102.35%);
  background-attachment: scroll;
  background-repeat: no-repeat;
  padding-top: 60px;
  padding-bottom: 60px;
  font-size: 2.5em;
  color: #fff !important;
  font-weight: bold;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
}

.h1-text {
  font-weight: 700;
  font-style: normal;
  font-size: 2em;
  line-height: 1.2;
  color: #fff;
  text-align: left;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}

.h2-text {
  font-weight: 700;
  font-style: normal;
  font-size: 1.8em;
  line-height: 1.3;
  color: #fff;
  text-align: left;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
  font-family: "Poppins-Medium";
}

.h4-text {
  font-family: Poppins;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  color: #fff;
  font-family: "Poppins-Medium";
}

.p-text {
  font-size: 16px;
  color: #64688c;
  font-family: "Poppins-Light";
}

.green-text {
  color: rgb(4, 73, 76) !important;
}

.black-text {
  color: rgb(0, 43, 46);
}

.gary-text {
  color: rgb(53, 64, 74);
}

.white-text {
  color: #fff !important;
}

.red-text {
  color: rgb(253, 41, 90);
}

.italic-text {
  font-style: italic;
}

.imgbg1 {
  height: auto;
  min-height: unset;
  background-position: center center;
  background-size: cover;
  background-image: url(../images/8k8-bg-1.jpg);
  background-attachment: scroll;
  background-repeat: no-repeat;
  padding: 20px 0;
}

.imgbg2 {
  height: auto;
  min-height: unset;
  background-position: bottom center;
  background-size: cover;
  background-image: url(../images/app-bg.jpg);
  background-repeat: no-repeat;
  padding: 20px 0;
}

.imgbg3 {
  height: auto;
  min-height: unset;
  background-position: 71.04282661205018% 55.06582151284021%;
  background-size: cover;
  background-image: url(../images/live/Live-Casino-footer.jpg);
  background-attachment: scroll;
  background-repeat: no-repeat;
  padding: 20px 0;
}

.imgbg4 {
  height: auto;
  min-height: unset;
  background-position: center center;
  background-size: cover;
  background-image: url(../images/Fishing/fishing-bg.jpg);
  background-attachment: scroll;
  background-repeat: no-repeat;
  padding: 20px 0;
}

.imgbg5 {
  height: auto;
  min-height: unset;
  background-position: center center;
  background-size: cover;
  background-image: url(../images/Fishing/fish-bg-2.jpg);
  background-attachment: scroll;
  background-repeat: no-repeat;
  padding: 20px 0;
}

.green-box {
  text-align: left;
  height: auto;
  min-height: unset;
  background-color: #1a1920;
  background-image: none;
  border-top-width: 0;
  border-top-style: none;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-right-width: 0;
  border-right-style: none;
  border-bottom-width: 0;
  border-bottom-style: none;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-left-width: 0;
  border-left-style: none;
}

.white-bg {
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
}

.btn1 {
  display: inline-block;
  text-align: center;
  background-image: url(../images/btn-bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: #1778ff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  color: #fff;
  padding-top: 15px;
  padding-right: 30px;
  padding-bottom: 15px;
  padding-left: 30px;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.3s;
}

.btn1:hover {
  transform: scale(1.1);
}

.btn2 {
  display: inline-block;
  text-align: center;
  background-image: url(../images/btn-bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: #da3950;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  color: #fff;
  padding-top: 15px;
  padding-right: 30px;
  padding-bottom: 15px;
  padding-left: 30px;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.3s;
}

.btn2:hover {
  transform: scale(1.1);
}

.btn3 {
  display: inline-block;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.05);
  background-image: url(../images/btn-bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  font-family: Open Sans;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1px;
  color: #fff;
  padding-top: 15px;
  padding-right: 30px;
  padding-bottom: 15px;
  padding-left: 30px;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.3s;
}

.btn3:hover {
  transform: scale(1.1);
}

.btn4 {
  display: inline-block;
  text-align: center;
  background-color: rgb(218, 30, 73);
  background-image: none;
  font-family: Open Sans;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  color: #fff;
  border-top-width: 2px;
  border-top-color: rgb(218, 30, 73);
  border-top-style: solid;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-right-width: 2px;
  border-right-color: rgb(218, 30, 73);
  border-right-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: rgb(218, 30, 73);
  border-bottom-style: solid;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-left-width: 2px;
  border-left-color: rgb(218, 30, 73);
  border-left-style: solid;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  cursor: pointer;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex {
  display: flex;
  gap: 16px;
}

.flex-1 {
  flex: 1;
}

.flex-wrap {
  flex-wrap: wrap;
}

.width-50 {
  width: calc(50% - 8px);
}

/* .btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
} */

.btn-primary {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #ff6b35;
  border: 2px solid #ff6b35;
}

.btn-secondary:hover {
  background: #ff6b35;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-outline {
  background: transparent;
  color: #333;
  border: 2px solid #ddd;
}

.btn-outline:hover {
  background: #333;
  color: white;
  border-color: #333;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-small {
  padding: 8px 16px;
  font-size: 12px;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* Card Styles */
.card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-glass {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: #ff6b35;
}

.text-secondary {
  color: #666;
}

.text-muted {
  color: #999;
}

.bg-primary {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.bg-light {
  background: #f8f9fa;
}

.bg-white {
  background: #ffffff;
}

.bg-litoBot {
  background: linear-gradient(to bottom, #b9e1ca, #fffbe6, #8ad0b8);
}

.bg-cyan-box {
  background-color: rgb(33, 124, 125);
  background-image: none;
  border-top-width: 0;
  border-top-style: none;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-right-width: 0;
  border-right-style: none;
  border-bottom-width: 0;
  border-bottom-style: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-left-width: 0;
  border-left-style: none;
  padding: 8px;
}

.text-bold {
  font-weight: bold;
}

.text-240 {
  font-size: 14px;
}

/* Spacing Utilities */
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
.mt-5 {
  margin-top: 3rem;
}

.mb-05 {
  margin-bottom: 0.25rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.mb-5 {
  margin-bottom: 3rem;
}

.pt-1 {
  padding-top: 0.5rem;
}
.pt-2 {
  padding-top: 1rem;
}
.pt-3 {
  padding-top: 1.5rem;
}
.pt-4 {
  padding-top: 2rem;
}
.pt-5 {
  padding-top: 3rem;
}

.pb-1 {
  padding-bottom: 0.5rem;
}
.pb-2 {
  padding-bottom: 1rem;
}
.pb-3 {
  padding-bottom: 1.5rem;
}
.pb-4 {
  padding-bottom: 2rem;
}
.pb-5 {
  padding-bottom: 3rem;
}

.register .register-box1 .container {
  padding: 50px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.register .register-box1 .container .right {
  width: 350px;
}

.register .register-box2 .container {
  padding: 50px 0;
}

.register .register-box2 .container .list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.register .register-box2 .container .list .item {
  width: calc(50% - 8px);
}

.register .register-box3 .container {
  padding: 50px 0;
  display: flex;
  align-items: center;
  gap: 30px;
}

.register .register-box3 .container .right {
  width: 338px;
}

/* 首页组件样式 */
.hero-section {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Game Categories */
.game-categories-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.category-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Trending Games */
.trending-games-section {
  padding: 80px 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.game-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
}

.game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.game-info {
  padding: 1.5rem;
  text-align: center;
}

.game-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Rewards Section */
.rewards-section {
  padding: 80px 0;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.reward-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.reward-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Steps Section */
.steps-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

/* Mobile App Section */
.mobile-app-section {
  padding: 80px 0;
}

.app-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.app-text {
  flex: 1;
}

.app-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-image {
  flex: 1;
}

.app-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
}

/* Support Section */
.support-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.support-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.support-method {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.support-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Footer */
.footer-content {
  background: #333;
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: #ff6b35;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-section ul li a:hover {
  color: #ff6b35;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #ff6b35;
}

/* 页面特定样式 */
.about-content,
.download-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.about-content .left,
.download-section {
  flex: 1;
}

.about-content .right,
.download-image {
  flex: 1;
}

.about-content img,
.download-image img {
  width: 100%;
  border-radius: 16px;
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.promotion-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.promotion-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.promotion-content {
  padding: 1.5rem;
}

.slots-banner,
.card-games-banner,
.fishing-banner {
  margin-bottom: 3rem;
  text-align: center;
}

.slots-banner img,
.card-games-banner img,
.fishing-banner img {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.slot-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.slot-card:hover {
  transform: translateY(-5px);
}

.slot-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.slot-info {
  padding: 1rem;
  text-align: center;
}

.slot-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.card-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card-game-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.fishing-features,
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature,
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.live-casino-banner {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 3rem;
}

.casino-games {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.game-category {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.download-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .app-content,
  .about-content,
  .download-content {
    flex-direction: column;
    text-align: center;
  }

  .categories-grid,
  .games-grid,
  .rewards-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .support-methods {
    grid-template-columns: 1fr;
  }

  .social-links {
    justify-content: center;
  }

  .download-buttons {
    justify-content: center;
  }

  .nav-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

/* 链接样式 */
a {
  color: #ff6b35;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  /* color: #f7931e; */
}

/* 图片样式 */
img {
  max-width: 100%;
  height: auto;
}

/* 高亮卡片 */

.game-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
}

.game-list .img-item {
  width: calc(16.66% - 15px);
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease-in;
}

.game-list .img-item:hover {
  transform: translateY(-8px);
  filter: brightness(1.2);
}

.game-list .img-item .title {
  position: absolute;
  bottom: 54px;
  left: 50%;
  display: block;
  overflow: hidden;
  width: 85%;
  color: #fff;
  text-align: center;
  text-transform: capitalize;
  text-wrap: wrap;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.16);
  font-weight: 700;
  font-size: 20px;
  transform: translateX(-50%);
  line-height: 22px;
}

.game-list .img-item .img {
  width: 100%;
  line-height: 0;
}

.game-list .img-item .logo {
  position: absolute;
  bottom: 14px;
  left: 50%;
  height: 40px;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .game-list .img-item {
    width: calc(50% - 8px) !important;
    padding: 5px !important;
  }

  .game-list .img-item .logo {
    position: absolute;
    bottom: 14px;
    width: 80px;
  }
  .game-list .img-item .title {
    position: absolute;
    bottom: 50px;
    font-size: 18px;
  }
}
