@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');

:root {
  --primary-color: #a83def;
  --secondary-color: #000000;
  --third-color: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --accent-primary: #CC3DEE;
  --gradient-primary: linear-gradient(135deg, #CC3DEE 0%, #a83def 50%, #111111 100%);
  --gradient-secondary: linear-gradient(135deg, #a83def 0%, #CC3DEE 100%);
  --glow-effect: 0 0 20px rgba(168, 61, 239, 0.5);
  --glow-effect-strong: 0 0 30px rgba(168, 61, 239, 0.8);
}

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

body {
  font-family: 'Ubuntu', sans-serif;
  background: linear-gradient(to bottom, #000000 0%, #111111 50%, #000000 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}


a {
  text-decoration: none;
  color: var(--accent-primary);
  transition: all 0.3s ease;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.btn {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(17, 17, 17, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

.navbar {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(17, 17, 17, 0.98) 100%);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(168, 61, 239, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar .logo img {
  height: 55px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(168, 61, 239, 0.3));
}

.navbar .logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(168, 61, 239, 0.6));
}

.navbar-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.navbar-menu li a {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-secondary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-menu li a:hover {
  color: var(--accent-primary);
}

.navbar-menu li a:hover::after {
  width: 70%;
}

.navbar .auth-buttons {
  display: flex;
  gap: 15px;
}

.btn-login {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: var(--secondary-color);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-login:hover {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
  box-shadow: var(--glow-effect);
  transform: translateY(-2px);
}

.btn-register {
  background: var(--gradient-secondary);
  color: var(--text-primary);
  border: 2px solid transparent;
  box-shadow: var(--glow-effect);
}

.btn-register:hover {
  background: var(--gradient-primary);
  box-shadow: var(--glow-effect-strong);
  transform: translateY(-3px) scale(1.05);
}

main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  animation: fadeInUp 0.8s ease-out;
}

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

.hero {
  position: relative;
  background: var(--gradient-primary);
  padding: 80px 60px;
  margin-bottom: 50px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), var(--glow-effect);
  animation: heroPulse 3s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), var(--glow-effect);
  }
  50% {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), var(--glow-effect-strong);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInLeft 1s ease-out 0.3s both;
  text-align: center;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #FFFFFF 0%, #CC3DEE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin: 30px auto 40px;
  max-width: 900px;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-description {
  margin-top: 50px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-intro {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.hero-intro h2 {
  font-size: 2.3rem;
  color: #FFFFFF;
  margin-bottom: 30px;
  text-shadow: 3px 3px 25px rgba(0, 0, 0, 0.9), 0 0 40px rgba(168, 61, 239, 0.5);
  font-weight: 700;
  line-height: 1.3;
}

.hero-intro p {
  font-size: 1.2rem;
  color: #FFFFFF;
  line-height: 1.9;
  margin-bottom: 25px;
  text-align: center;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
}

.hero-intro p:first-of-type {
  margin-top: 0;
}

.golden-rule {
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.2) 0%, rgba(204, 61, 238, 0.15) 100%);
  border: 2px solid rgba(168, 61, 239, 0.4);
  border-radius: 20px;
  padding: 40px 50px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: 0 10px 40px rgba(168, 61, 239, 0.2);
  position: relative;
  overflow: hidden;
}

.golden-rule::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(168, 61, 239, 0.15), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

.golden-rule p {
  font-size: 1.8rem;
  color: #FFFFFF;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  text-shadow: 0 2px 20px rgba(168, 61, 239, 0.5);
  position: relative;
  z-index: 2;
}

.hero-content .btn {
  padding: 18px 45px;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.bonus-offers {
  margin: 60px 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.bonus-offers-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(17, 17, 17, 0.9) 100%);
  border-radius: 20px;
  border: 2px solid rgba(168, 61, 239, 0.3);
  backdrop-filter: blur(10px);
}

.bonus-offers-container h2 {
  font-size: 2.8rem;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.bonus-header-image {
  margin-bottom: 50px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.bonus-header-image:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 50px rgba(168, 61, 239, 0.4);
}

.bonus-header-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bonus-item {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(17, 17, 17, 0.75) 100%);
  padding: 0;
  border-radius: 20px;
  border: 2px solid rgba(168, 61, 239, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bonus-item-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.bonus-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bonus-item:hover .bonus-item-image img {
  transform: scale(1.15);
}

.bonus-item-content {
  padding: 40px;
}

.bonus-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(168, 61, 239, 0.15), transparent);
  transition: left 0.6s;
}

.bonus-item:hover::before {
  left: 100%;
}

.bonus-item:hover {
  border-color: rgba(168, 61, 239, 0.7);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(168, 61, 239, 0.3);
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.15) 0%, rgba(204, 61, 238, 0.08) 100%);
}

.bonus-item-content {
  padding: 40px;
}

.bonus-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.bonus-icon-box {
  font-size: 3.5rem;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.2) 0%, rgba(204, 61, 238, 0.15) 100%);
  border-radius: 20px;
  border: 3px solid rgba(168, 61, 239, 0.4);
  box-shadow: 0 8px 30px rgba(168, 61, 239, 0.3), 
              inset 0 2px 10px rgba(168, 61, 239, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  transform-style: preserve-3d;
}

.bonus-icon-box::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.3) 0%, rgba(204, 61, 238, 0.2) 100%);
  border-radius: 20px;
  transform: translate(-50%, -50%) translateZ(-10px);
  transition: transform 0.4s ease;
  opacity: 0;
}

.bonus-item:hover .bonus-icon-box::before {
  transform: translate(-50%, -50%) translateZ(0);
  opacity: 1;
}

.bonus-item:hover .bonus-icon-box {
  transform: rotateY(15deg) rotateX(5deg) scale(1.1);
  box-shadow: 0 15px 50px rgba(168, 61, 239, 0.5), 
              inset 0 2px 15px rgba(168, 61, 239, 0.3),
              0 0 30px rgba(168, 61, 239, 0.4);
  border-color: rgba(168, 61, 239, 0.7);
}

.bonus-icon-box::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.4s ease;
}

.bonus-item:hover .bonus-icon-box::after {
  opacity: 0.6;
}

.bonus-header h3 {
  font-size: 1.8rem;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.3;
  font-weight: 700;
}

.bonus-intro {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.bonus-item:hover .bonus-intro {
  color: #FFFFFF;
}

.bonus-breakdown {
  margin: 30px 0;
  position: relative;
  z-index: 2;
}

.bonus-breakdown h4 {
  font-size: 1.4rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 600;
}

.breakdown-item {
  font-size: 1.1rem;
  color: #FFFFFF;
  line-height: 1.9;
  margin-bottom: 12px;
  padding: 12px 15px;
  background: rgba(168, 61, 239, 0.1);
  border-radius: 10px;
  border-left: 3px solid var(--accent-primary);
  transition: all 0.3s ease;
}

.bonus-item:hover .breakdown-item {
  background: rgba(168, 61, 239, 0.2);
  transform: translateX(5px);
}

.bonus-schedule {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px 0;
}

.schedule-item {
  padding: 18px 25px;
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.15) 0%, rgba(204, 61, 238, 0.08) 100%);
  border-radius: 12px;
  border: 2px solid rgba(168, 61, 239, 0.3);
  font-size: 1.1rem;
  color: #FFFFFF;
  line-height: 1.6;
  font-weight: 500;
}

.bonus-note {
  margin-top: 25px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.2) 0%, rgba(204, 61, 238, 0.15) 100%);
  border-radius: 15px;
  border: 2px solid rgba(168, 61, 239, 0.4);
  position: relative;
  z-index: 2;
}

.bonus-note p {
  font-size: 1.15rem;
  color: #FFFFFF;
  line-height: 1.7;
  margin: 0;
}

.bonus-note strong {
  color: var(--accent-primary);
  font-weight: 700;
}

.vip-table {
  display: grid;
  gap: 15px;
  margin: 30px 0;
}

.vip-row {
  display: grid;
  grid-template-columns: 120px 150px 1fr;
  gap: 20px;
  padding: 18px 25px;
  background: rgba(168, 61, 239, 0.1);
  border-radius: 12px;
  border: 2px solid rgba(168, 61, 239, 0.2);
  transition: all 0.3s ease;
}

.vip-row:first-child {
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.2) 0%, rgba(204, 61, 238, 0.15) 100%);
  border-color: rgba(168, 61, 239, 0.4);
  font-weight: 700;
}

.vip-row:not(:first-child):hover {
  background: rgba(168, 61, 239, 0.2);
  transform: translateX(5px);
  border-color: rgba(168, 61, 239, 0.4);
}

.vip-tier, .vip-points, .vip-reward {
  color: #FFFFFF;
  font-size: 1.05rem;
  line-height: 1.5;
}

.vip-tier {
  font-weight: 600;
}

.why-choose-card {
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.1) 0%, rgba(204, 61, 238, 0.05) 100%);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(168, 61, 239, 0.2);
  position: relative;
  overflow: hidden;
}

.why-choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(168, 61, 239, 0.2), transparent);
  transition: left 0.5s;
}

.why-choose-card:hover::before {
  left: 100%;
}

.why-choose-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(168, 61, 239, 0.6);
  box-shadow: 0 15px 35px rgba(168, 61, 239, 0.4);
}

.why-choose-card h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.why-choose-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.why-choose-card i {
  display: block;
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--accent-primary);
  filter: drop-shadow(0 0 10px rgba(204, 61, 238, 0.5));
  transition: all 0.3s ease;
}

.why-choose-card:hover i {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 0 20px rgba(204, 61, 238, 0.8));
}

.games {
  margin: 60px 0;
  padding: 50px 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(17, 17, 17, 0.9) 100%);
  border: 2px solid rgba(168, 61, 239, 0.3);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease-out 0.4s both;
  transition: all 0.3s ease;
}

.games:hover {
  border-color: rgba(168, 61, 239, 0.6);
  box-shadow: var(--glow-effect);
}

.games-intro {
  text-align: center;
  margin-bottom: 40px;
}

.games-intro h3 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.games-intro p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.game-card {
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.1) 0%, rgba(204, 61, 238, 0.05) 100%);
  border-radius: 20px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(168, 61, 239, 0.2);
  position: relative;
}

.game-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-secondary);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.game-card:hover::after {
  opacity: 0.1;
}

.game-card:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: rgba(168, 61, 239, 0.6);
  box-shadow: 0 20px 50px rgba(168, 61, 239, 0.4);
}

.game-card img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  filter: brightness(0.9);
}

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

.btn-play {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 35px;
  background: var(--gradient-secondary);
  color: var(--text-primary);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: var(--glow-effect);
  border: 2px solid transparent;
  position: relative;
  z-index: 1;
}

.btn-play:hover {
  background: var(--gradient-primary);
  box-shadow: var(--glow-effect-strong);
  transform: translateY(-3px) scale(1.05);
}

.final-thoughts {
  margin: 60px 0;
  animation: fadeInUp 0.8s ease-out 0.6s both;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-thoughts-banner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.final-thoughts-banner:hover {
  transform: scale(1.02);
}

.final-thoughts-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.final-thoughts-banner:hover img {
  transform: scale(1.1);
}

.final-thoughts-intro {
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(17, 17, 17, 0.9) 100%);
  border-radius: 20px;
  border: 2px solid rgba(168, 61, 239, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.final-thoughts-intro:hover {
  border-color: rgba(168, 61, 239, 0.6);
  box-shadow: var(--glow-effect);
}

.final-thoughts-intro h3 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 25px;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-thoughts-intro p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

.bonus-terms-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(17, 17, 17, 0.9) 100%);
  border-radius: 20px;
  border: 2px solid rgba(168, 61, 239, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.bonus-terms-content:hover {
  border-color: rgba(168, 61, 239, 0.6);
  box-shadow: var(--glow-effect);
}

.bonus-terms-content h2 {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.terms-banner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
  height: 200px;
}

.terms-banner:hover {
  transform: scale(1.02);
}

.terms-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.terms-banner:hover img {
  transform: scale(1.1);
}

.terms-intro {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.9;
  text-align: center;
  margin-bottom: 40px;
}

.terms-table-wrapper {
  overflow-x: auto;
  margin: 0 auto 40px;
  max-width: 1200px;
}

.terms-table {
  display: grid;
  gap: 15px;
  min-width: 900px;
  margin: 0 auto;
}

.terms-row {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr 1.5fr;
  gap: 20px;
  padding: 20px 25px;
  background: rgba(168, 61, 239, 0.1);
  border-radius: 12px;
  border: 2px solid rgba(168, 61, 239, 0.2);
  transition: all 0.3s ease;
}

.terms-row.header-row {
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.2) 0%, rgba(204, 61, 238, 0.15) 100%);
  border-color: rgba(168, 61, 239, 0.4);
  font-weight: 700;
}

.terms-row:not(.header-row):hover {
  background: rgba(168, 61, 239, 0.2);
  transform: translateX(5px);
  border-color: rgba(168, 61, 239, 0.4);
}

.terms-col {
  color: #FFFFFF;
  font-size: 1.05rem;
  line-height: 1.6;
}

.pro-tip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.2) 0%, rgba(204, 61, 238, 0.15) 100%);
  border-radius: 15px;
  border: 2px solid rgba(168, 61, 239, 0.4);
  max-width: 1000px;
  margin: 0 auto;
}

.tip-icon {
  font-size: 3rem;
  flex-shrink: 0;
  filter: drop-shadow(0 5px 15px rgba(168, 61, 239, 0.4));
}

.tip-content {
  flex: 1;
}

.tip-content p {
  font-size: 1.2rem;
  color: #FFFFFF;
  line-height: 1.7;
  margin: 0;
}

.tip-content strong {
  color: var(--accent-primary);
  font-weight: 700;
}

.claim-bonus {
  margin: 60px 0;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.claim-bonus-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(17, 17, 17, 0.9) 100%);
  border-radius: 20px;
  border: 2px solid rgba(168, 61, 239, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.claim-bonus-content:hover {
  border-color: rgba(168, 61, 239, 0.6);
  box-shadow: var(--glow-effect);
}

.claim-bonus-content h2 {
  font-size: 2.5rem;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(17, 17, 17, 0.75) 100%);
  border-radius: 15px;
  border: 2px solid rgba(168, 61, 239, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.step-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.step-item:hover::before {
  transform: scaleY(1);
}

.step-item:hover {
  border-color: rgba(168, 61, 239, 0.7);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(168, 61, 239, 0.3);
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.15) 0%, rgba(204, 61, 238, 0.08) 100%);
}

.step-number {
  font-size: 3rem;
  flex-shrink: 0;
  transition: all 0.4s ease;
  filter: drop-shadow(0 5px 15px rgba(168, 61, 239, 0.4));
}

.step-item:hover .step-number {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 8px 25px rgba(168, 61, 239, 0.6));
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.6rem;
  color: #FFFFFF;
  margin-bottom: 8px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.step-item:hover .step-content h3 {
  color: var(--accent-primary);
}

.step-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.step-item:hover .step-content p {
  color: #FFFFFF;
}

.rews-dashboard {
  padding: 30px;
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.2) 0%, rgba(204, 61, 238, 0.15) 100%);
  border-radius: 15px;
  border: 2px solid rgba(168, 61, 239, 0.4);
  text-align: center;
}

.rews-dashboard p {
  font-size: 1.2rem;
  color: #FFFFFF;
  line-height: 1.8;
  margin: 0;
}

.rews-dashboard strong {
  color: var(--accent-primary);
  font-weight: 700;
}

.why-different {
  margin: 60px 0;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.why-different-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(17, 17, 17, 0.9) 100%);
  border-radius: 20px;
  border: 2px solid rgba(168, 61, 239, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.why-different-content:hover {
  border-color: rgba(168, 61, 239, 0.6);
  box-shadow: var(--glow-effect);
}

.why-different-content h2 {
  font-size: 2.5rem;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.difference-item {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(17, 17, 17, 0.75) 100%);
  padding: 35px;
  border-radius: 20px;
  border: 2px solid rgba(168, 61, 239, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.difference-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(168, 61, 239, 0.15), transparent);
  transition: left 0.6s;
}

.difference-item:hover::before {
  left: 100%;
}

.difference-item:hover {
  border-color: rgba(168, 61, 239, 0.7);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(168, 61, 239, 0.4), var(--glow-effect);
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.15) 0%, rgba(204, 61, 238, 0.08) 100%);
}

.diff-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  display: block;
  filter: drop-shadow(0 5px 15px rgba(168, 61, 239, 0.4));
}

.difference-item:hover .diff-icon {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 8px 25px rgba(168, 61, 239, 0.6));
}

.difference-item h3 {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 15px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.difference-item:hover h3 {
  color: var(--accent-primary);
}

.difference-item p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  transition: color 0.3s ease;
}

.difference-item:hover p {
  color: #FFFFFF;
}

.player-testimonials {
  margin: 60px 0;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.testimonials-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(17, 17, 17, 0.9) 100%);
  border-radius: 20px;
  border: 2px solid rgba(168, 61, 239, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.testimonials-content:hover {
  border-color: rgba(168, 61, 239, 0.6);
  box-shadow: var(--glow-effect);
}

.testimonials-content h2 {
  font-size: 2.5rem;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(17, 17, 17, 0.75) 100%);
  padding: 30px;
  border-radius: 20px;
  border: 2px solid rgba(168, 61, 239, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(168, 61, 239, 0.15), transparent);
  transition: left 0.6s;
}

.testimonial-card:hover::before {
  left: 100%;
}

.testimonial-card:hover {
  border-color: rgba(168, 61, 239, 0.7);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(168, 61, 239, 0.4);
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.15) 0%, rgba(204, 61, 238, 0.08) 100%);
}

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

.testimonial-avatar {
  font-size: 3rem;
  filter: drop-shadow(0 5px 15px rgba(168, 61, 239, 0.4));
  transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 8px 25px rgba(168, 61, 239, 0.6));
}

.testimonial-author h4 {
  font-size: 1.3rem;
  color: #FFFFFF;
  margin: 0 0 5px 0;
  font-weight: 600;
  transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-author h4 {
  color: var(--accent-primary);
}

.testimonial-author span {
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-author span {
  color: #FFFFFF;
}

.testimonial-rating {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fbbf24;
  text-shadow: 0 2px 10px rgba(251, 191, 36, 0.5);
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-text {
  color: #FFFFFF;
}

.testimonial-bonus {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.3) 0%, rgba(204, 61, 238, 0.2) 100%);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--accent-primary);
  font-weight: 600;
  border: 2px solid rgba(168, 61, 239, 0.4);
}

.bonus-comparison {
  margin: 60px 0;
  animation: fadeInUp 0.8s ease-out 1.4s both;
}

.comparison-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(17, 17, 17, 0.9) 100%);
  border-radius: 20px;
  border: 2px solid rgba(168, 61, 239, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.comparison-content:hover {
  border-color: rgba(168, 61, 239, 0.6);
  box-shadow: var(--glow-effect);
}

.comparison-content h2 {
  font-size: 2.5rem;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.comparison-intro {
  font-size: 1.2rem;
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.comparison-table {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
  padding: 20px 25px;
  background: rgba(168, 61, 239, 0.1);
  border-radius: 12px;
  border: 2px solid rgba(168, 61, 239, 0.2);
  transition: all 0.3s ease;
}

.comparison-row.header {
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.2) 0%, rgba(204, 61, 238, 0.15) 100%);
  border-color: rgba(168, 61, 239, 0.4);
  font-weight: 700;
}

.comparison-row:not(.header):hover {
  background: rgba(168, 61, 239, 0.2);
  transform: translateX(5px);
  border-color: rgba(168, 61, 239, 0.4);
}

.comparison-col {
  color: #FFFFFF;
  font-size: 1.05rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
}

.comparison-col.other {
  color: var(--text-secondary);
  text-align: center;
}

.comparison-col.cuntspin {
  color: #4ade80;
  text-align: center;
  font-weight: 600;
}

.comparison-col.highlight {
  color: var(--accent-primary);
  font-weight: 700;
  text-shadow: 0 2px 15px rgba(168, 61, 239, 0.5);
}

.comparison-cta {
  text-align: center;
  padding: 30px;
}

.comparison-cta .btn {
  font-size: 1.3rem;
  padding: 20px 50px;
}

.faq {
  margin: 60px 0;
  padding: 50px 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(17, 17, 17, 0.9) 100%);
  border: 2px solid rgba(168, 61, 239, 0.3);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.faq h2 {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 35px;
  text-align: center;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.faq h3 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 35px;
  text-align: center;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-item {
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.1) 0%, rgba(204, 61, 238, 0.05) 100%);
  border-radius: 15px;
  padding: 25px 30px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(168, 61, 239, 0.2);
  position: relative;
}

.faq-item::before {
  content: '▼';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: var(--accent-primary);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(168, 61, 239, 0.5);
  box-shadow: 0 8px 25px rgba(168, 61, 239, 0.2);
  transform: translateX(10px);
}

.faq-item.active {
  border-color: rgba(168, 61, 239, 0.6);
  box-shadow: 0 8px 25px rgba(168, 61, 239, 0.3);
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.15) 0%, rgba(204, 61, 238, 0.08) 100%);
}

.faq-item.active::before {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0;
  margin-right: 40px;
  font-weight: 600;
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  padding-top: 0;
}

.faq-item.active p {
  max-height: 500px;
  opacity: 1;
  padding-top: 20px;
}

.footer {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(17, 17, 17, 0.98) 100%);
  padding: 60px 20px 40px;
  margin-top: 80px;
  border-top: 2px solid rgba(168, 61, 239, 0.3);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.footer-logo img {
  height: 60px;
  filter: drop-shadow(0 0 15px rgba(168, 61, 239, 0.3));
  transition: all 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 25px rgba(168, 61, 239, 0.6));
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 8px;
}

.footer-links a:hover {
  color: var(--accent-primary);
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.1) 0%, rgba(204, 61, 238, 0.05) 100%);
  transform: translateY(-2px);
}

.footer-copy {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(168, 61, 239, 0.2);
  width: 100%;
}

.footer-copy p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
  }

  .final-thoughts {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    gap: 15px;
  }

  .navbar .auth-buttons {
    margin-top: 10px;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .navbar-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .navbar-menu li a {
    font-size: 1rem;
    padding: 8px 15px;
  }

  .hero {
    padding: 50px 30px;
    margin-bottom: 40px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    margin: 25px auto 30px;
  }

  .hero-description {
    margin-top: 40px;
  }

  .hero-intro h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-shadow: 3px 3px 25px rgba(0, 0, 0, 0.9), 0 0 40px rgba(168, 61, 239, 0.5);
  }

  .hero-intro p {
    font-size: 1.1rem;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
  }

  .golden-rule {
    padding: 30px 35px;
    margin: 30px auto;
  }

  .golden-rule p {
    font-size: 1.4rem;
  }

  .hero-content .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
  }

  .why-choose-details {
    padding: 40px 30px;
  }

  .why-choose-intro h2 {
    font-size: 2rem;
  }

  .why-choose-intro p {
    font-size: 1rem;
  }

  .games {
    padding: 40px 30px;
  }

  .games-intro h3 {
    font-size: 2rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bonus-header-image {
    height: 200px;
  }

  .bonus-item-image {
    height: 200px;
  }

  .bonus-icon-box {
    width: 70px;
    height: 70px;
    font-size: 3rem;
  }

  .bonus-item-content {
    padding: 30px 25px;
  }

  .bonus-header h3 {
    font-size: 1.5rem;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .final-thoughts-intro {
    padding: 35px 25px;
  }

  .final-thoughts-intro h3 {
    font-size: 2rem;
  }

  .bonus-terms-content {
    padding: 35px 25px;
  }

  .bonus-terms-content h2 {
    font-size: 2rem;
  }

  .terms-banner {
    height: 180px;
    margin-bottom: 25px;
  }

  .terms-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .terms-table {
    min-width: 700px;
  }

  .terms-row {
    grid-template-columns: 1.1fr 1.6fr 1.4fr;
    gap: 15px;
    padding: 15px 20px;
  }

  .terms-col {
    font-size: 0.95rem;
  }

  .pro-tip {
    padding: 25px 20px;
    gap: 15px;
  }

  .tip-icon {
    font-size: 2.5rem;
  }

  .tip-content p {
    font-size: 1.1rem;
  }

  .faq {
    padding: 40px 30px;
  }

  .faq h3 {
    font-size: 2rem;
  }

  .faq-item h4 {
    font-size: 1.1rem;
  }

  .footer-container {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 15px;
  }

  .navbar .logo img {
    height: 45px;
  }

  .navbar-menu {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }

  .hero {
    padding: 40px 20px;
    margin-bottom: 30px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin: 20px auto 25px;
  }

  .hero-description {
    margin-top: 35px;
  }

  .hero-intro h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 3px 3px 25px rgba(0, 0, 0, 0.9), 0 0 40px rgba(168, 61, 239, 0.5);
  }

  .hero-intro p {
    font-size: 1rem;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
  }

  .golden-rule {
    padding: 25px 25px;
    margin: 25px auto;
  }

  .golden-rule p {
    font-size: 1.2rem;
  }

  .hero-content .btn {
    padding: 14px 30px;
    font-size: 1rem;
  }

  .why-choose-details {
    padding: 30px 20px;
  }

  .why-choose-intro h2 {
    font-size: 1.7rem;
  }

  .why-choose-card {
    padding: 25px 15px;
  }

  .why-choose-card i {
    font-size: 3rem;
  }

  .games {
    padding: 30px 20px;
  }

  .games-intro h3 {
    font-size: 1.7rem;
  }

  .games-intro p {
    font-size: 1rem;
  }

  .btn-play {
    padding: 10px 30px;
    font-size: 0.95rem;
  }

  .final-thoughts-intro {
    padding: 25px 20px;
  }

  .final-thoughts-intro h3 {
    font-size: 1.7rem;
  }

  .bonus-terms-content {
    padding: 25px 20px;
  }

  .bonus-terms-content h2 {
    font-size: 1.7rem;
  }

  .terms-banner {
    height: 150px;
    margin-bottom: 20px;
  }

  .terms-intro {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .terms-table {
    min-width: 600px;
  }

  .terms-row {
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 12px;
    padding: 12px 15px;
  }

  .terms-col {
    font-size: 0.9rem;
  }

  .pro-tip {
    padding: 20px 18px;
    gap: 12px;
    flex-direction: column;
    text-align: center;
  }

  .tip-icon {
    font-size: 2.2rem;
  }

  .tip-content p {
    font-size: 1rem;
  }

  .claim-bonus-content {
    padding: 35px 25px;
  }

  .claim-bonus-content h2 {
    font-size: 2rem;
  }

  .step-item {
    padding: 25px;
    gap: 20px;
  }

  .step-number {
    font-size: 2.5rem;
  }

  .step-content h3 {
    font-size: 1.4rem;
  }

  .step-content p {
    font-size: 1rem;
  }

  .rews-dashboard {
    padding: 25px 20px;
  }

  .rews-dashboard p {
    font-size: 1.1rem;
  }

  .why-different-content {
    padding: 35px 25px;
  }

  .why-different-content h2 {
    font-size: 2rem;
  }

  .difference-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }

  .difference-item {
    padding: 30px;
  }

  .diff-icon {
    font-size: 3.5rem;
  }

  .testimonials-content {
    padding: 30px 20px;
  }

  .testimonials-content h2 {
    font-size: 1.7rem;
  }

  .testimonials-grid {
    gap: 20px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-avatar {
    font-size: 2.2rem;
  }

  .testimonial-author h4 {
    font-size: 1.1rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .comparison-content {
    padding: 30px 20px;
  }

  .comparison-content h2 {
    font-size: 1.7rem;
  }

  .comparison-row {
    grid-template-columns: 1fr 0.8fr 0.8fr;
    padding: 15px 18px;
    gap: 12px;
  }

  .comparison-col {
    font-size: 0.9rem;
  }

  .comparison-cta .btn {
    font-size: 1.1rem;
    padding: 15px 35px;
  }

  .faq {
    padding: 30px 20px;
  }

  .faq h3 {
    font-size: 1.7rem;
  }

  .faq-item {
    padding: 20px;
  }

  .faq-item h4 {
    font-size: 1rem;
    margin-right: 30px;
  }

  .footer {
    padding: 40px 15px 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .footer-logo img {
    height: 50px;
  }
}
