* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-red: #e74c3c;
  --dark-red: #c0392b;
  --light-red: #ff6b6b;
  --orange-red: #ff4757;
  --dark-orange: #ff3742;
  --light-orange: #ffa502;
}

body {
  font-family: "Poppins", sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* Floating Header */
.floating-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(231, 76, 60, 0.3);
  border-radius: 50px;
  padding: 10px 30px;
  transition: all 0.3s ease;
  width: calc(100% - 40px);
  max-width: 1200px;
}

.floating-header.mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: none;
  border-radius: 0;
  padding: 15px 20px;
  width: 100%;
  max-width: none;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #e74c3c, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-country {
  font-size: 10px;
  color: #888;
  font-weight: 500;
}

.main-nav {
  display: flex;
  gap: 30px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 25px;
}

.nav-item:hover {
  background: rgba(231, 76, 60, 0.15);
  color: #ff6b6b;
}

.nav-item span {
  white-space: nowrap;
}

.header-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.login-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  white-space: nowrap;
}

.login-btn:hover {
  border-color: #e74c3c;
  color: #ff6b6b;
}

.register-btn {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
  white-space: nowrap;
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(231, 76, 60, 0.3);
  border-top: none;
  border-radius: 0 0 25px 25px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 500px;
}

.mobile-menu-content {
  padding: 20px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  padding: 15px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
  background: rgba(231, 76, 60, 0.15);
  color: #ff6b6b;
}

.mobile-nav-item i:first-child {
  width: 20px;
  text-align: center;
  font-size: 16px;
}

.mobile-nav-item span {
  flex: 1;
  font-size: 16px;
}

.mobile-nav-item i:last-child {
  opacity: 0.5;
  font-size: 12px;
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-login-btn,
.mobile-register-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 16px;
}

.mobile-login-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.mobile-login-btn:hover,
.mobile-login-btn:active {
  border-color: #e74c3c;
  color: #ff6b6b;
  background: rgba(231, 76, 60, 0.1);
}

.mobile-register-btn {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
  border: none;
}

.mobile-register-btn:hover,
.mobile-register-btn:active {
  background: linear-gradient(135deg, #ff6b6b, #e74c3c);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 20px 50px;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, #1a0d0d 0%, #000000 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(231, 76, 60, 0.08) 0%, rgba(192, 57, 43, 0.08) 100%);
}

.floating-elements {
  position: absolute;
  inset: 0;
}

.floating-coin {
  position: absolute;
  font-size: 30px;
  animation: float 6s ease-in-out infinite;
}

.coin-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.coin-2 {
  top: 30%;
  right: 15%;
  animation-delay: 1s;
}
.coin-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 2s;
}
.coin-4 {
  bottom: 20%;
  right: 10%;
  animation-delay: 3s;
}
.coin-5 {
  top: 50%;
  left: 5%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 30px;
  animation: pulse 2s infinite;
  color: #fff;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 30px;
}

.title-line-1 {
  display: block;
  color: #fff;
  font-size: 0.6em;
}

.title-line-2 {
  display: block;
  background: linear-gradient(135deg, #e74c3c, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 50px rgba(231, 76, 60, 0.3);
}

.title-line-3 {
  display: block;
  color: #fff;
  font-size: 0.5em;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.cta-primary {
  position: relative;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border: none;
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
  background: linear-gradient(135deg, #ff6b6b, #e74c3c);
}

.btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
  100% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
}

.cta-secondary {
  background: transparent;
  border: 2px solid #e74c3c;
  color: #ff6b6b;
  padding: 16px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  min-width: 180px;
  justify-content: center;
}

.cta-secondary:hover {
  background: #e74c3c;
  color: #fff;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 8vw, 60px);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

.stat-number {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ff6b6b;
  display: block;
}

.stat-label {
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  color: #888;
  margin-top: 5px;
}

/* Bonus Wheel */
.bonus-wheel-container {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 3;
}

.bonus-wheel {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: transform 4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 6px solid #fff;
  box-shadow: 0 0 40px rgba(231, 76, 60, 0.4);
  background: #fff;
}

.wheel-svg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.wheel-segment {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.wheel-segment:hover {
  opacity: 0.8;
}

.segment-text {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 14px;
  fill: #fff;
  text-anchor: middle;
  dominant-baseline: middle;
}

.segment-text.dark {
  fill: #000;
}

.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #000, #333);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ff6b6b;
  font-weight: 700;
  font-size: 16px;
  border: 4px solid #e74c3c;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.wheel-center:hover {
  background: linear-gradient(135deg, #111, #444);
  transform: translate(-50%, -50%) scale(1.05);
}

.wheel-center i {
  font-size: 20px;
  margin-bottom: 4px;
}

.wheel-pointer {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 35px solid #fff;
  z-index: 5;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

.bonus-wheel.spinning {
  pointer-events: none;
}

.bonus-wheel.spinning .wheel-center {
  pointer-events: none;
}

/* Text Content Section */
.text-content-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #111111 0%, #1a1a1a 100%);
}

.text-content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.content-block {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.05) 0%, rgba(192, 57, 43, 0.05) 100%);
  border: 1px solid rgba(231, 76, 60, 0.2);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
margin: 40px 0;
}

.content-block:hover {
  transform: translateY(-5px);
  border-color: #e74c3c;
  box-shadow: 0 15px 40px rgba(231, 76, 60, 0.1);
}

.content-block h2 {
  color: #ff6b6b;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
}

.content-block h3 {
  color: #ff6b6b;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.content-block h4 {
  color: #ff4757;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.content-block p {
  color: #ccc;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 20px;
}

.content-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.content-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #ccc;
  font-size: clamp(1rem, 2vw, 1.1rem);
  margin-bottom: 15px;
  padding: 10px 0;
}

.content-list li i {
  color: #ff6b6b;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.content-image {
  margin-top: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.content-image:hover img {
  transform: scale(1.05);
}

.content-highlight {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-radius: 15px;
  padding: 25px;
  margin-top: 30px;
  border: 2px solid #ff6b6b;
  box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
}

.content-highlight h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.content-highlight p {
  color: #fff;
  margin-bottom: 0;
  font-size: 1rem;
}

.content-full-width {
  margin-top: 40px;
}

.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.03) 0%, rgba(192, 57, 43, 0.03) 100%);
  border: 1px solid rgba(231, 76, 60, 0.15);
  border-radius: 25px;
  padding: 50px;
  transition: all 0.3s ease;
}

.content-with-image:hover {
  transform: translateY(-5px);
  border-color: #e74c3c;
  box-shadow: 0 20px 50px rgba(231, 76, 60, 0.1);
}

.content-text h3 {
  color: #ff6b6b;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.content-text p {
  color: #ccc;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 20px;
}

.content-image-large {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.content-image-large img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.content-image-large:hover img {
  transform: scale(1.05);
}

/* Games Showcase */
.games-showcase {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.title-icon {
  font-size: clamp(2rem, 5vw, 3rem);
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #888;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto 50px;
}

.game-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(231, 76, 60, 0.2);
}

.game-card.featured {
  grid-column: span 2;
}

.game-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
  transform: scale(1.1);
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: linear-gradient(135deg, #ff6b6b, #e74c3c);
}

.mobile-play-btn {
  position: absolute !important;
  bottom: 15px;
  right: 15px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.mobile-play-btn:hover,
.mobile-play-btn:active {
  background: linear-gradient(135deg, #ff6b6b, #e74c3c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

@media (max-width: 1024px) {
  .mobile-play-btn {
    display: flex;
  }

  .game-overlay {
    opacity: 0 !important;
  }

  .play-btn {
    display: none !important;
  }
}

@media (hover: none) and (pointer: coarse) {
  .mobile-play-btn {
    display: flex;
  }

  .game-overlay {
    opacity: 0 !important;
  }

  .play-btn {
    display: none !important;
  }
}

.game-info {
  margin-top: auto;
}

.game-info h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.game-rating {
  display: flex;
  gap: 5px;
}

.game-rating i {
  color: #ff6b6b;
}

.game-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 5;
}

.game-badge.hot {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
}

.game-badge.new {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.game-badge.live {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  animation: pulse 2s infinite;
}

.games-cta {
  text-align: center;
}

.view-all-games {
  background: transparent;
  border: 2px solid #e74c3c;
  color: #ff6b6b;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.view-all-games:hover {
  background: #e74c3c;
  color: #fff;
}

/* Bonus CTA Section */
.bonus-cta-section {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  inset: 0;
}

.cta-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 13, 13, 0.9) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
}

.title-small {
  display: block;
  font-size: 0.5em;
  color: #ff6b6b;
}

.title-big {
  display: block;
  font-size: 1.2em;
  background: linear-gradient(135deg, #e74c3c, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

.bonus-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.feature-item i {
  color: #ff6b6b;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.bonus-card {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(192, 57, 43, 0.1) 100%);
  border: 2px solid #e74c3c;
  border-radius: 25px;
  padding: 40px;
  backdrop-filter: blur(20px);
}

.card-header {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff6b6b;
}

.bonus-breakdown {
  margin-bottom: 30px;
}

.bonus-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-item.special {
  border-bottom: none;
  padding-top: 20px;
  margin-top: 10px;
  border-top: 2px solid #e74c3c;
}

.bonus-label {
  color: #ccc;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.bonus-value {
  font-weight: 700;
  color: #ff6b6b;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.claim-bonus-btn {
  width: 100%;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border: none;
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: all 0.3s ease;
  display: inline-flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.claim-bonus-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
  background: linear-gradient(135deg, #ff6b6b, #e74c3c);
}

.btn-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

/* Features Section */
.features-section {
  padding: 80px 20px;
  background: #1a1a1a;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.05) 0%, rgba(192, 57, 43, 0.05) 100%);
  border: 1px solid rgba(231, 76, 60, 0.2);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #e74c3c;
  box-shadow: 0 15px 40px rgba(231, 76, 60, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
}

.feature-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: #ff6b6b;
}

.feature-card p {
  color: #ccc;
  line-height: 1.6;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Final CTA Section */
.final-cta-section {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;
}

.final-cta-background {
  position: absolute;
  inset: 0;
}

.final-cta-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 13, 13, 0.8) 100%);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 50px;
}

.final-cta-title .highlight {
  background: linear-gradient(135deg, #e74c3c, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.primary-cta-btn {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border: none;
  color: #fff;
  padding: 20px 50px;
  border-radius: 50px;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  min-width: 250px;
  justify-content: center;
}

.primary-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(231, 76, 60, 0.4);
  background: linear-gradient(135deg, #ff6b6b, #e74c3c);
}

.secondary-cta-btn {
  background: #25d366;
  border: none;
  color: #fff;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  min-width: 220px;
  justify-content: center;
}

.secondary-cta-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 5vw, 50px);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.trust-item i {
  color: #ff6b6b;
  font-size: 1.3rem;
}

/* Footer */
.main-footer {
  background: #000;
  padding: 60px 20px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: #ff6b6b;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ff6b6b;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-section p {
  color: #888;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #666;
}

/* Enhanced Wheel Popup */
.wheel-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.popup-content {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  max-width: 450px;
  width: 90%;
  animation: slideIn 0.5s ease;
  border: 3px solid #ff6b6b;
  box-shadow: 0 20px 60px rgba(231, 76, 60, 0.3);
}

.popup-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: bounce 1s infinite;
}

.popup-content h3 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 800;
}

.popup-content p {
  font-size: 1.3rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.prize-display {
  font-size: 3rem;
  font-weight: 900;
  color: #ff6b6b;
  margin: 20px 0 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  background: rgba(255, 107, 107, 0.1);
  padding: 15px 25px;
  border-radius: 15px;
  border: 2px solid #ff6b6b;
}

.claim-btn {
  background: linear-gradient(135deg, #ff6b6b, #ff4757);
  color: #000;
  border: none;
  padding: 18px 35px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.claim-btn:hover {
  background: linear-gradient(135deg, #ff4757, #e74c3c);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .bonus-wheel-container {
    right: 2%;
  }

  .bonus-wheel {
    width: 220px;
    height: 220px;
  }

  .wheel-center {
    width: 70px;
    height: 70px;
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .floating-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    border-radius: 0;
    padding: 15px 20px;
    width: 100%;
    max-width: none;
  }

  .header-container {
    gap: 15px;
  }

  .main-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .bonus-wheel-container {
    display: none;
  }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-stats {
    gap: 30px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .content-with-image {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .content-block {
    padding: 30px;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .game-card.featured {
    grid-column: span 1;
  }

  .mobile-play-btn {
    display: flex !important;
  }

  .game-overlay {
    opacity: 0 !important;
  }

  .play-btn {
    display: none !important;
  }
}

@media (max-width: 768px) {
.header-actions {
display: none!important;
}
.content-list li {
flex-wrap: wrap;
}
  .hero-section {
    padding: 120px 20px 50px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .section-title {
    flex-direction: column;
    gap: 10px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .primary-cta-btn,
  .secondary-cta-btn {
    width: 100%;
    max-width: 300px;
  }

  .trust-indicators {
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .content-with-image {
    padding: 30px;
  }

  .content-block {
    padding: 25px;
  }

  .bonus-card {
    padding: 30px;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .floating-header {
    padding: 10px 15px;
  }

  .hero-section {
    padding: 100px 15px 40px;
  }

  .content-with-image {
    padding: 20px;
  }

  .content-block {
    padding: 20px;
  }

  .bonus-card {
    padding: 20px;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 15px;
  }

  .popup-content {
    padding: 30px 20px;
    margin: 20px;
  }

  .popup-content h3 {
    font-size: 2rem;
  }

  .prize-display {
    font-size: 2.5rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .mobile-play-btn {
    display: flex;
  }

  .game-overlay {
    opacity: 0;
  }

  .play-btn {
    display: none;
  }

  .game-card:hover {
    transform: none;
    box-shadow: none;
  }

  .game-card:active {
    transform: scale(0.98);
  }

  .content-image:hover img,
  .content-image-large:hover img {
    transform: none;
  }

  .feature-card:hover,
  .content-block:hover,
  .content-with-image:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .game-image img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .floating-coin {
    animation: none;
  }

  .hero-badge {
    animation: none;
  }

  .btn-glow {
    animation: none;
  }
}
