/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-gold: #ffd700;
  --secondary-gold: #ffa500;
  --dark-bg: #0a1428;
  --darker-bg: #030817;
  --light-text: #ffffff;
  --gray-text: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.08);
  --border-color: rgba(255, 215, 0, 0.3);
}

html {
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial,
    sans-serif;
  background: var(--dark-bg);
  color: var(--light-text);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(120deg);
  }
  66% {
    transform: translateY(30px) rotate(240deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes orbit-rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes coin-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 20, 40, 0.95);
  backdrop-filter: blur(15px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-main {
  height: 45px;
  transition: transform 0.3s ease;
}

.logo-main:hover {
  transform: scale(1.05);
}

.navbar {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 5px;
  border-radius: 30px;
}

.nav-item {
  padding: 10px 25px;
  color: var(--light-text);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-item:hover {
  color: var(--primary-gold);
  background: rgba(255, 215, 0, 0.1);
}

.nav-item.active {
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--secondary-gold)
  );
  color: var(--dark-bg);
}

.header-actions {
  display: flex;
  gap: 15px;
}

.btn-header {
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-header.login {
  background: transparent;
  color: var(--light-text);
  border: 2px solid var(--primary-gold);
}

.btn-header.login:hover {
  background: var(--primary-gold);
  color: var(--dark-bg);
}

.btn-header.register {
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--secondary-gold)
  );
  color: var(--dark-bg);
}

.btn-header.register:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* ===== SECTION 1: ROULETTE ===== */
.section-1 {
  min-height: 100vh;
  background: url("../img/pc/第一屏/背景1.png") no-repeat center center,
    linear-gradient(135deg, #0a1428 0%, #1e3c72 50%, #2a5298 100%);
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Background Decorations */
.bg-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.floating-chips {
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(
    circle,
    var(--primary-gold),
    var(--secondary-gold)
  );
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite;
}

.chip-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.chip-2 {
  top: 20%;
  right: 15%;
  animation-delay: 5s;
}
.chip-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 10s;
}
.chip-4 {
  bottom: 10%;
  right: 10%;
  animation-delay: 15s;
}

/* Roulette Wrapper */
.roulette-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Title Area */
.section-title {
  text-align: center;
  animation: fadeInDown 1s ease-out;
}

.main-title {
  font-size: 60px;
  margin-bottom: 15px;
}

.golden-text {
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--secondary-gold)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  font-weight: 800;
  letter-spacing: 3px;
}

.subtitle {
  display: block;
  font-size: 24px;
  color: var(--light-text);
  font-weight: 400;
  margin-top: 10px;
}

.description {
  font-size: 18px;
  color: var(--gray-text);
  margin-top: 10px;
}

/* Roulette Container */
.roulette-container {
  position: relative;
  width: 500px;
  height: 500px;
  animation: fadeInScale 1.5s ease-out;
  background-image: url("../img/pc/第一屏/线条.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Roulette Glow Effect */
.roulette-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.3) 0%,
    rgba(255, 215, 0, 0.1) 40%,
    transparent 70%
  );
  filter: blur(20px);
  animation: pulse 3s ease-in-out infinite;
  pointer-events: none;
}

/* Roulette Rings */
.roulette-outer-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: spin 20s linear infinite;
  pointer-events: none;
}

.roulette-middle-ring {
  position: absolute;
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  border-radius: 50%;
  animation: spin-reverse 15s linear infinite;
  pointer-events: none;
}

.roulette-inner-ring {
  position: absolute;
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: pointer;
}

.center-logo {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* Game Icons Orbit */
.game-icons-orbit {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.inner-ring {
  width: 240px;
  height: 240px;
  animation: orbit-rotate 15s linear infinite;
}

.middle-ring {
  width: 340px;
  height: 340px;
  animation: orbit-rotate 20s linear infinite reverse;
}

.outer-ring {
  width: 440px;
  height: 440px;
  animation: orbit-rotate 25s linear infinite;
}

/* Roulette Decorative Text */
.roulette-text {
  position: absolute;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.roulette-text.top {
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.roulette-text.right {
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
}

.roulette-text.bottom {
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.roulette-text.left {
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
  animation: fadeInUp 1.5s ease-out;
}

.btn-cta {
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-cta.primary {
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--secondary-gold)
  );
  color: var(--dark-bg);
}

.btn-cta.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

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

.btn-cta.secondary:hover {
  background: var(--primary-gold);
  color: var(--dark-bg);
}

/* Game Icon Wrapper */
.game-icon-wrapper {
  pointer-events: auto !important;
  cursor: pointer;
  z-index: 10;
}

.game-icon-wrapper:hover {
  z-index: 20;
}

/* ===== SECTION 2: PRESENTERS ===== */
.section-2 {
  height: 100vh;
  background-image: url("../img/pc/第二屏/背景2.png");
  background-size: cover;
  padding: 100px 0;
  padding-top: 120px;
  position: relative;
  background-position: center;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

/* Info Cards */
.info-card {
  z-index: 1;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-gold);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.card-icon {
  font-size: 36px;
}

.card-header h3 {
  font-size: 18px;
  color: var(--primary-gold);
  line-height: 1.4;
}

.card-body p {
  color: var(--gray-text);
  margin-bottom: 20px;
  line-height: 1.8;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 8px 0;
  color: var(--light-text);
}

/* Presenter Center */
.presenter-center {
  position: relative;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.presenter-center-bg {
  width: 300px;
}

.presenter-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.3) 0%,
    transparent 60%
  );
  filter: blur(30px);
}

.presenter-img {
  max-width: 1000px;
  height: auto;
  position: relative;
  z-index: 1;
}

.presenter-badge {
  position: absolute;
  top: 20px;
  right: -20px;
  background: linear-gradient(135deg, #ff3366, #ff6b6b);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  animation: blink 2s ease-in-out infinite;
}

/* Stats Mini */
.stats-mini {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.stat {
  text-align: center;
}

.stat .number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-gold);
}

.stat .label {
  font-size: 12px;
  color: var(--gray-text);
}

/* Advantages Showcase */
.advantages-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.advantage-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  background: rgba(255, 215, 0, 0.1);
}

.adv-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.advantage-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary-gold);
}

.advantage-item p {
  font-size: 14px;
  color: var(--gray-text);
}

/* ===== SECTION 3: GAMES ===== */
.section-3 {
  height: 100vh;
  background-image: url("../img/pc/第三屏/背景3.png");
  background-size: cover;
  padding: 100px 0;
  padding-top: 120px;
  position: relative;
  background-position: center;
}

.section-3 .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 42px;
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--secondary-gold)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-text);
}

/* Game Tabs */
.game-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.tab {
  padding: 10px 30px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.tab:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--primary-gold);
}

.tab.active {
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--secondary-gold)
  );
  color: var(--dark-bg);
  border-color: transparent;
}

/* Game Carousel */
.games-carousel {
  position: relative;
  margin-bottom: 60px;
  margin-top: 80px;
}

.games-swiper {
  padding: 50px 0;
}

.game-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.game-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.game-card:hover .game-image img {
  transform: scale(1.1);
}

.btn-play {
  padding: 10px 25px;
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--secondary-gold)
  );
  color: var(--dark-bg);
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-play:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.game-info {
  padding: 20px;
}

.game-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.game-info p {
  color: var(--gray-text);
  font-size: 14px;
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-gold);
}

.swiper-pagination-bullet {
  background: var(--gray-text);
}

.swiper-pagination-bullet-active {
  background: var(--primary-gold);
}

/* Game Providers */
.providers-section {
  margin-top: 80px;
  text-align: center;
}

.providers-section h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--primary-gold);
}

.providers-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.provider-item img {
  height: 100px;
}

/* ===== SECTION 4: VIDEO ===== */
.section-4 {
  height: 100vh;
  background: url("../img/pc/第四屏/背景4.png") no-repeat center center,
    linear-gradient(135deg, #1e3c72, #0a1428);
  background-size: cover;
  padding: 100px 0;
}

.section-4 .section-header {
  margin-top: 80px;
  font-size: 28px;
  text-align: center;
  margin-bottom: 50px;
}

.video-row {
  display: flex;
  gap: 20px;
  width: 80%;
  margin: 0 auto;
  justify-content: center;
}

.video-item {
  width: 25%;
  height: 480px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.video-item:hover {
  transform: scale(1.02);
}

.video-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/pc/第四屏/组 21.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.3s ease;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.play-btn {
  transition: all 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.2);
}

/* ===== SECTION 5: DOWNLOAD & PARTNERS ===== */
.section-5 {
  min-height: 100vh;
  background: url("../img/pc/第五屏/背景5.png") no-repeat center center,
    linear-gradient(135deg, #0a1428, #1e3c72);
  background-size: cover;
  position: relative;
  padding-top: 60px;
  overflow: hidden;
}

/* Left Characters */
.characters-left {
  display: flex;
  left: 5%;
  bottom: 0;
  z-index: 2;
}

.main-characters {
  width: 100%;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  object-fit: contain;
  object-position: bottom;
}

/* Download Buttons */
.download-buttons {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  z-index: 3;
}

.download-btn {
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.6);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  padding: 0 15px;
}

.download-btn:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: #ffd700;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.download-icon {
  font-size: 24px;
  margin-right: 10px;
  color: #fff;
}

.download-text {
  text-align: left;
}

.download-label {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* Special Button Colors */
.download-btn.app-store .download-icon {
  color: #000;
  background: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.download-btn.google-play .download-icon {
  color: #4285f4;
}

.download-btn.telegram .download-icon {
  color: #0088cc;
}

.download-btn.facebook .download-icon {
  color: #1877f2;
  background: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}

/* Partners Area */
.partners-container {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 1;
}

.partners-grid {
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid rgba(255, 215, 0, 0.6);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(15px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 650px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.partner-logo {
  height: 50px;
  width: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
  filter: brightness(1.2);
  cursor: pointer;
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.15);
  filter: brightness(1.4) drop-shadow(0 5px 15px rgba(255, 215, 0, 0.3));
}

/* Bottom Coin Decorations */
.golden-coins {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 0;
  overflow: hidden;
}

.coin {
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #ffd700, #b8860b);
  border-radius: 50%;
  bottom: -30px;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2),
    0 5px 15px rgba(255, 215, 0, 0.3);
  animation: coin-float 3s ease-in-out infinite;
}

.coin::before {
  content: "¥";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #8b6914;
  font-size: 24px;
  font-weight: bold;
}

/* Coin Positions */
.coin-1 {
  left: 5%;
  animation-delay: 0s;
}
.coin-2 {
  left: 15%;
  animation-delay: 0.3s;
}
.coin-3 {
  left: 25%;
  animation-delay: 0.6s;
}
.coin-4 {
  left: 35%;
  animation-delay: 0.9s;
}
.coin-5 {
  left: 45%;
  animation-delay: 1.2s;
}
.coin-6 {
  left: 55%;
  animation-delay: 1.5s;
}
.coin-7 {
  left: 65%;
  animation-delay: 1.8s;
}
.coin-8 {
  left: 75%;
  animation-delay: 2.1s;
}
.coin-9 {
  left: 85%;
  animation-delay: 2.4s;
}
.coin-10 {
  left: 95%;
  animation-delay: 2.7s;
}

/* Character Visibility Classes */
.characters-left-pc {
  display: flex !important;
}
.characters-left-mobile {
  display: none !important;
}

#carousel {
  height: 400px;
}
/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .roulette-container {
    width: 400px;
    height: 400px;
  }

  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .presenter-center {
    order: -1;
  }

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

  .download-buttons {
    right: 50px;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .partners-grid {
    width: 600px;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px;
  }

  .main-characters {
    height: 400px;
  }
}

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

  .main-title {
    font-size: 36px;
  }

  .game-icons-orbit {
    transform: scale(0.7);
  }

  #carousel {
    height: 280px;
  }

  .providers-section {
    margin-top: 40px;
  }

  .provider-item {
    display: grid;
    gap: 20px 40px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .section-5 {
    flex-direction: column;
  }

  .characters-left-pc {
    display: none !important;
  }

  .characters-left-mobile {
    display: flex !important;
  }

  .presenter-center {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }

  .presenter-img {
    max-width: 180%;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .roulette-container {
    width: 360px;
    height: 360px;
  }

  .advantages-row {
    grid-template-columns: 1fr;
  }

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

  .section-4 .section-header {
    margin-top: 40px;
    font-size: 24px;
  }

  .video-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .video-item {
    width: 100%;
    height: 240px;
  }

  .game-tabs {
    flex-wrap: wrap;
  }

  .bottom-characters {
    display: none;
  }

  .section-5 {
    padding-top: 100px;
    gap: 0 !important;
  }

  .characters-left {
    left: -50px;
  }

  .right-card {
    display: none;
  }

  .main-characters {
    height: 300px;
  }

  .download-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    top: 0px;
    right: 0px;
  }

  .download-label {
    font-size: 10px;
  }

  .partners-grid {
    width: 90%;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
  }

  .partner-logo {
    height: 40px;
  }
}

@media (max-width: 500px) {
  .navbar {
    display: none;
  }

  .section-4 .section-header {
    margin-top: 40px;
    font-size: 18px;
  }

  .section-2 {
    padding-top: 100px;
  }
  .video-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .video-item {
    width: 100%;
    height: 200px;
  }

  .games-carousel {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .provider-item {
    display: grid;
    gap: 10px 20px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .provider-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
  }

  .main-title {
    font-size: 36px;
  }

  .game-icons-orbit {
    transform: scale(0.7);
  }

  #carousel {
    height: 200px;
  }

  .presenter-center {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }

  .presenter-img {
    max-width: 110vw;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .roulette-container {
    width: 360px;
    height: 360px;
  }

  .advantages-row {
    grid-template-columns: 1fr;
  }

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

  .game-tabs {
    flex-wrap: wrap;
  }

  .bottom-characters {
    display: none;
  }
}
