@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;
}

/* Breadcrumbs */
.breadcrumbs {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(17, 17, 17, 0.98) 100%);
  padding: 15px 80px;
  border-bottom: 1px solid rgba(168, 61, 239, 0.2);
}

.breadcrumb-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.breadcrumb-item {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item:hover {
  color: #FFFFFF;
}

.breadcrumb-separator {
  color: var(--text-secondary);
}

.breadcrumb-current {
  color: #FFFFFF;
  font-weight: 500;
}

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(168, 61, 239, 0.85) 0%, rgba(204, 61, 238, 0.90) 50%, rgba(0, 0, 0, 0.70) 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: 1000px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 1s ease-out 0.3s both;
}

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

.hero-content h1 {
  font-size: 3.5rem;
  color: #FFFFFF !important;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 3px 3px 25px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 255, 255, 0.3);
}

.hero-content .hero-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.95;
}

.hero-content h1 {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  text-shadow: 3px 3px 25px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 255, 255, 0.3) !important;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin: 30px auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  display: block;
  transition: transform 0.3s ease;
  animation: heroImageFloat 3s ease-in-out infinite;
}

@keyframes heroImageFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-image:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(168, 61, 239, 0.4);
}

.hero-content .hero-description {
  font-size: 1.2rem;
  margin: 25px auto 40px;
  color: #FFFFFF;
  line-height: 2;
  text-align: justify;
  text-align-last: center;
  max-width: 900px;
  text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.8);
  margin-left: auto;
  margin-right: auto;
}

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

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

.casino-features-header {
  position: relative;
  height: 400px;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 80px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.85) 0%, rgba(204, 61, 238, 0.80) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px;
}

.header-overlay h2 {
  font-size: 3rem;
  color: #FFFFFF;
  margin-bottom: 15px;
  text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.7);
}

.header-overlay .intro-subtitle {
  font-size: 1.8rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 600;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.7);
}

.header-overlay .intro-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  line-height: 1.8;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.feature-item {
  position: relative;
  margin-bottom: 50px;
  padding: 30px 50px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(17, 17, 17, 0.85) 100%);
  border-radius: 20px;
  border: 2px solid rgba(168, 61, 239, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  gap: 30px;
  overflow: hidden;
}

.feature-item::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.8s;
}

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

.feature-item:hover {
  border-color: rgba(168, 61, 239, 0.7);
  box-shadow: 0 15px 40px rgba(168, 61, 239, 0.4), var(--glow-effect);
  transform: translateY(-5px);
}

.feature-number {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 20px rgba(168, 61, 239, 0.5);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-number {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 8px 30px rgba(168, 61, 239, 0.8);
}

.feature-content {
  flex: 1;
}

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

.feature-header .feature-icon {
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-header .feature-icon {
  transform: scale(1.3) rotate(15deg);
}

.feature-content h3 {
  font-size: 1.8rem;
  color: #FFFFFF;
  margin: 0;
  font-weight: 600;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.feature-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.feature-highlight {
  margin-top: 15px;
  padding: 15px 20px;
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.15) 0%, rgba(204, 61, 238, 0.1) 100%);
  border-left: 4px solid var(--accent-primary);
  border-radius: 8px;
}

.feature-highlight strong {
  color: var(--accent-primary);
  font-weight: 600;
}

.pro-tips {
  margin: 60px 0;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.pro-tips-header {
  position: relative;
  height: 350px;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.tips-header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tips-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.90) 0%, rgba(204, 61, 238, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px;
}

.tips-overlay h2 {
  font-size: 2.8rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.7);
}

.tips-intro {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 900px;
  line-height: 1.8;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}

.tips-content-wrapper {
  max-width: 1300px;
  margin: 0 auto 50px;
  padding: 40px 35px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(17, 17, 17, 0.9) 100%);
  border-radius: 25px;
  border: 2px solid rgba(168, 61, 239, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.tips-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
}

.tips-row {
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.tips-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--gradient-secondary);
  transition: width 0.5s ease;
  z-index: 0;
}

.tips-row:hover::before {
  width: 5px;
}

.tips-row:nth-child(even) {
  background: rgba(168, 61, 239, 0.04);
}

.tips-row:hover {
  background: rgba(168, 61, 239, 0.1);
}

.tips-row:not(:last-child) {
  border-bottom: 1px solid rgba(168, 61, 239, 0.2);
}

.tip-number-cell {
  width: 60px;
  padding: 25px 20px;
  vertical-align: middle;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(168, 61, 239, 0.6);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.tips-row:hover .tip-number-cell {
  color: var(--accent-primary);
  transform: scale(1.2);
}

.tip-icon-cell {
  width: 120px;
  padding: 25px 20px;
  vertical-align: middle;
  text-align: center;
  font-size: 3.5rem;
  background: linear-gradient(180deg, rgba(168, 61, 239, 0.15) 0%, rgba(204, 61, 238, 0.08) 100%);
  border-right: 2px solid rgba(168, 61, 239, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.tip-icon-cell::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 2px;
  background: var(--gradient-secondary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tips-row:hover .tip-icon-cell::after {
  opacity: 1;
}

.tips-row:hover .tip-icon-cell {
  background: var(--gradient-secondary);
  transform: scale(1.08);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.15);
}

.tip-text-cell {
  padding: 25px 35px;
  vertical-align: middle;
  position: relative;
  z-index: 1;
}

.tip-text-cell h3 {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin: 0 0 8px 0;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tips-row:hover .tip-text-cell h3 {
  color: var(--accent-primary);
  transform: translateX(5px);
}

.tip-text-cell p {
  font-size: 1.05rem;
  color: #CCCCCC;
  line-height: 1.8;
  margin: 0;
  transition: color 0.3s ease;
}

.tips-row:hover .tip-text-cell p {
  color: #FFFFFF;
}

.tips-conclusion {
  max-width: 1100px;
  margin: 0 auto 50px;
}

.conclusion-card {
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.2) 0%, rgba(204, 61, 238, 0.15) 100%);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid rgba(168, 61, 239, 0.5);
  text-align: center;
  box-shadow: 0 10px 40px rgba(168, 61, 239, 0.3);
}

.conclusion-card p {
  font-size: 1.3rem;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.8;
}

.conclusion-card strong {
  color: var(--accent-primary);
  font-weight: 600;
}

.tips-carousel {
  max-width: 1100px;
  margin: 0 auto;
}

.tips-carousel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-radius: 20px;
  overflow: hidden;
}

.tips-carousel-grid a {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(168, 61, 239, 0.3);
  transition: all 0.3s ease;
}

.tips-carousel-grid a:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(168, 61, 239, 0.7);
  box-shadow: 0 15px 50px rgba(168, 61, 239, 0.5), var(--glow-effect);
}

.tips-carousel-grid img {
  width: 100%;
  height: auto;
  display: block;
}

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

.why-choose-content {
  max-width: 1300px;
  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: 25px;
  border: 2px solid rgba(168, 61, 239, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

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

.why-choose-intro {
  font-size: 1.3rem;
  text-align: center;
  color: var(--text-secondary);
  max-width: 1000px;
  margin: 0 auto 50px;
  line-height: 1.9;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.why-choose-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(17, 17, 17, 0.75) 100%);
  padding: 35px 25px;
  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;
}

.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.15), transparent);
  transition: left 0.6s;
}

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

.why-choose-card: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%);
}

.why-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));
}

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

.why-choose-card h3 {
  font-size: 1.3rem;
  color: #FFFFFF;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.why-choose-card:hover h3 {
  color: var(--accent-primary);
}

.why-choose-card p {
  font-size: 1rem;
  color: #CCCCCC;
  line-height: 1.8;
  margin: 0;
  transition: color 0.3s ease;
}

.why-choose-card:hover p {
  color: #FFFFFF;
}

.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.6s 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);
}

.game-card h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin: 0;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

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

.geo-targeting-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 50px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(17, 17, 17, 0.9) 100%);
  border-radius: 25px;
  border: 2px solid rgba(168, 61, 239, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

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

.geo-intro {
  font-size: 1.3rem;
  text-align: center;
  color: var(--text-secondary);
  max-width: 1100px;
  margin: 0 auto 50px;
  line-height: 1.9;
}

.geo-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.geo-feature {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(17, 17, 17, 0.75) 100%);
  padding: 40px 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;
  text-align: center;
}

.geo-feature::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;
}

.geo-feature:hover::before {
  left: 100%;
}

.geo-feature: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%);
}

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

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

.geo-feature h3 {
  font-size: 1.4rem;
  color: #FFFFFF;
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.geo-feature:hover h3 {
  color: var(--accent-primary);
}

.geo-feature p {
  font-size: 1rem;
  color: #CCCCCC;
  line-height: 1.8;
  margin: 0;
  transition: color 0.3s ease;
}

.geo-feature:hover p {
  color: #FFFFFF;
}

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

.safety-checklist-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 50px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(17, 17, 17, 0.9) 100%);
  border-radius: 25px;
  border: 2px solid rgba(168, 61, 239, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

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

.safety-intro {
  font-size: 1.3rem;
  text-align: center;
  color: var(--text-secondary);
  max-width: 1000px;
  margin: 0 auto 40px;
  line-height: 1.9;
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 25px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(17, 17, 17, 0.75) 100%);
  padding: 30px 35px;
  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;
}

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

.checklist-item:hover::before {
  width: 100%;
}

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

.check-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 5px 20px rgba(168, 61, 239, 0.4);
  transition: all 0.4s ease;
  z-index: 2;
}

.checklist-item:hover .check-number {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 8px 30px rgba(168, 61, 239, 0.6);
}

.check-content {
  flex: 1;
  z-index: 2;
}

.check-content h3 {
  font-size: 1.3rem;
  color: #FFFFFF;
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.3s ease;
}

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

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

.safety-conclusion p {
  font-size: 1.4rem;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.6;
}

.safety-conclusion strong {
  color: var(--accent-primary);
  font-size: 1.6rem;
  text-shadow: 0 2px 15px rgba(168, 61, 239, 0.5);
}

.live-activity {
  margin: 60px 0;
  animation: fadeInUp 0.8s ease-out 1.1s both;
}

.live-activity-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 50px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(17, 17, 17, 0.9) 100%);
  border-radius: 25px;
  border: 2px solid rgba(168, 61, 239, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.live-activity-container h2 {
  font-size: 2.8rem;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 30px;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.live-intro {
  font-size: 1.3rem;
  text-align: center;
  color: var(--text-secondary);
  max-width: 1000px;
  margin: 0 auto 50px;
  line-height: 1.9;
}

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

.activity-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(17, 17, 17, 0.75) 100%);
  padding: 25px 30px;
  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;
}

.activity-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;
}

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

.activity-item:hover {
  border-color: rgba(168, 61, 239, 0.6);
  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%);
}

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

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

.activity-content {
  flex: 1;
}

.activity-text {
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 8px;
  font-weight: 400;
  line-height: 1.5;
}

.activity-text strong {
  color: #FFFFFF;
  font-weight: 600;
}

.activity-text .highlight {
  color: #4ade80;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(74, 222, 128, 0.4);
}

.activity-time {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.activity-badge {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: fadeIn 0.5s ease;
}

.activity-item:nth-child(1) .activity-badge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.activity-item:nth-child(2) .activity-badge {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.activity-item:nth-child(3) .activity-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.activity-item:nth-child(4) .activity-badge {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.activity-item:nth-child(5) .activity-badge {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.activity-item:nth-child(6) .activity-badge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.live-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.1) 0%, rgba(204, 61, 238, 0.05) 100%);
  border-radius: 15px;
  border: 2px solid rgba(168, 61, 239, 0.3);
}

.live-indicator span {
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 600;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  background: #4ade80;
  border-radius: 50%;
  position: relative;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

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

.stats-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 50px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(17, 17, 17, 0.9) 100%);
  border-radius: 25px;
  border: 2px solid rgba(168, 61, 239, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

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

.stats-intro {
  font-size: 1.3rem;
  text-align: center;
  color: var(--text-secondary);
  max-width: 1000px;
  margin: 0 auto 50px;
  line-height: 1.9;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.stat-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(17, 17, 17, 0.75) 100%);
  padding: 40px 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);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-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;
}

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

.stat-card:hover {
  border-color: rgba(168, 61, 239, 0.7);
  transform: translateY(-10px) scale(1.05);
  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%);
}

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

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  transition: color 0.3s ease;
  text-shadow: 0 2px 10px rgba(168, 61, 239, 0.5);
}

.stat-card:hover .stat-number {
  color: var(--accent-primary);
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
  color: #FFFFFF;
}

.recent-wins {
  margin-bottom: 50px;
}

.recent-wins h3 {
  font-size: 2rem;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 35px;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

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

.win-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(17, 17, 17, 0.75) 100%);
  padding: 35px 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;
}

.win-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.6s;
}

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

.win-card:hover {
  border-color: rgba(168, 61, 239, 0.7);
  transform: translateY(-8px);
  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%);
}

.win-info {
  position: relative;
  z-index: 2;
}

.player-name {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-weight: 500;
}

.win-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #4ade80;
  margin-bottom: 12px;
  text-shadow: 0 2px 15px rgba(74, 222, 128, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.game-name {
  font-size: 1.2rem;
  color: #FFFFFF;
  font-weight: 600;
}

.action-cta {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(168, 61, 239, 0.15) 0%, rgba(204, 61, 238, 0.08) 100%);
  border-radius: 20px;
  border: 2px solid rgba(168, 61, 239, 0.4);
}

.action-cta h3 {
  font-size: 2.3rem;
  color: #FFFFFF;
  margin-bottom: 15px;
  text-shadow: 0 2px 20px rgba(168, 61, 239, 0.5);
}

.action-cta p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.8;
}

.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 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);
  }
}

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

  .casino-features-header {
    height: 350px;
    margin-bottom: 60px;
  }

  .header-overlay h2 {
    font-size: 2.5rem;
  }

  .header-overlay .intro-subtitle {
    font-size: 1.6rem;
  }

  .feature-item {
    padding: 25px 35px;
    gap: 25px;
  }

  .feature-number {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
  }

  .pro-tips-header {
    height: 300px;
    margin-bottom: 50px;
  }

  .tips-overlay h2 {
    font-size: 2.3rem;
  }

  .tips-intro {
    font-size: 1.2rem;
  }

  .tips-content-wrapper {
    padding: 30px 25px;
  }

  .tip-number-cell {
    width: 50px;
    padding: 20px 15px;
    font-size: 1.5rem;
  }

  .tip-icon-cell {
    width: 100px;
    padding: 20px 15px;
    font-size: 3rem;
  }

  .tip-text-cell {
    padding: 20px 25px;
  }

  .tip-text-cell h3 {
    font-size: 1.3rem;
  }

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

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

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

  .why-choose-content h2 {
    font-size: 2.3rem;
  }

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

  .why-choose-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .why-choose-card {
    padding: 30px 22px;
  }

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

  .why-choose-card h3 {
    font-size: 1.2rem;
  }

  .why-choose-card p {
    font-size: 0.95rem;
  }

  .geo-targeting-content {
    padding: 45px 35px;
  }

  .geo-targeting-content h2 {
    font-size: 2.3rem;
  }

  .geo-intro {
    font-size: 1.2rem;
  }

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

  .geo-feature {
    padding: 35px 28px;
  }

  .geo-icon {
    font-size: 4rem;
  }

  .geo-feature h3 {
    font-size: 1.3rem;
  }

  .safety-checklist-content {
    padding: 45px 35px;
  }

  .safety-checklist-content h2 {
    font-size: 2.3rem;
  }

  .safety-intro {
    font-size: 1.2rem;
  }

  .checklist-item {
    padding: 25px 30px;
  }

  .check-number {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
  }

  .check-content h3 {
    font-size: 1.2rem;
  }

  .safety-conclusion p {
    font-size: 1.2rem;
  }

  .safety-conclusion strong {
    font-size: 1.4rem;
  }

  .live-activity {
    margin: 50px 0;
  }

  .live-activity-container {
    padding: 45px 35px;
  }

  .live-activity-container h2 {
    font-size: 2.3rem;
  }

  .live-intro {
    font-size: 1.2rem;
  }

  .activity-item {
    padding: 22px 25px;
  }

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

  .activity-text {
    font-size: 1.1rem;
  }

  .activity-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .community-stats {
    margin: 50px 0;
  }

  .stats-container {
    padding: 45px 35px;
  }

  .stats-container h2 {
    font-size: 2.3rem;
  }

  .stats-intro {
    font-size: 1.2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
  }

  .stat-card {
    padding: 35px 28px;
  }

  .stat-icon {
    font-size: 4rem;
  }

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

  .recent-wins h3 {
    font-size: 1.8rem;
  }

  .wins-grid {
    gap: 20px;
  }

  .win-card {
    padding: 30px 25px;
  }

  .action-cta {
    padding: 35px 30px;
  }

  .action-cta h3 {
    font-size: 2rem;
  }

  .action-cta p {
    font-size: 1.1rem;
  }

  .tips-content-wrapper {
    padding: 30px 25px;
  }

  .tip-number-cell {
    width: 50px;
    padding: 20px 15px;
    font-size: 1.5rem;
  }

  .tip-icon-cell {
    width: 100px;
    padding: 20px 15px;
    font-size: 3rem;
  }

  .tip-text-cell {
    padding: 20px 25px;
  }

  .tip-text-cell h3 {
    font-size: 1.3rem;
  }

  .bonus-conclusion p {
    font-size: 1.2rem;
  }

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

@media (max-width: 768px) {
  .breadcrumbs {
    padding: 12px 30px;
  }

  .breadcrumb-container {
    font-size: 0.85rem;
    gap: 8px;
  }

  .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;
    text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 255, 255, 0.2) !important;
  }

  .hero-content .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-image {
    margin: 20px auto;
    border-radius: 12px;
  }

  .hero-content .hero-description {
    font-size: 1.1rem;
    text-align: left;
    text-align-last: left;
  }

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

  .casino-features-header {
    height: 300px;
    margin-bottom: 50px;
  }

  .header-overlay {
    padding: 30px 25px;
  }

  .header-overlay h2 {
    font-size: 2rem;
  }

  .header-overlay .intro-subtitle {
    font-size: 1.3rem;
  }

  .header-overlay .intro-description {
    font-size: 1rem;
  }

  .feature-item {
    padding: 20px 25px;
    gap: 20px;
    margin-bottom: 30px;
  }

  .feature-number {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .feature-content h3 {
    font-size: 1.3rem;
  }

  .feature-content p {
    font-size: 0.95rem;
  }

  .feature-header .feature-icon {
    font-size: 1.8rem;
  }

  .pro-tips-header {
    height: 280px;
    margin-bottom: 40px;
  }

  .tips-overlay {
    padding: 35px 25px;
  }

  .tips-overlay h2 {
    font-size: 2rem;
  }

  .tips-intro {
    font-size: 1.1rem;
  }

  .tips-content-wrapper {
    padding: 25px 20px;
  }

  .tip-number-cell {
    display: block;
    width: 100%;
    padding: 20px 0 10px;
    font-size: 1.3rem;
  }

  .tips-row:hover .tip-number-cell {
    transform: none;
  }

  .tip-icon-cell {
    display: block;
    width: 100%;
    padding: 15px 0;
    border-right: none;
    border-bottom: 2px solid rgba(168, 61, 239, 0.3);
    font-size: 3.2rem;
  }

  .tips-row:hover .tip-icon-cell {
    transform: none;
    box-shadow: none;
  }

  .tips-row::before {
    display: none;
  }

  .tip-text-cell {
    display: block;
    width: 100%;
    padding: 20px 0;
    text-align: center;
  }

  .tip-text-cell h3 {
    font-size: 1.2rem;
  }

  .tips-row:hover .tip-text-cell h3 {
    transform: none;
  }

  .tip-text-cell p {
    font-size: 0.95rem;
  }

  .conclusion-card {
    padding: 30px 25px;
  }

  .conclusion-card p {
    font-size: 1.1rem;
  }

  .tips-carousel-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

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

  .bonus-conclusion {
    padding: 30px 25px;
  }

  .bonus-conclusion p {
    font-size: 1.1rem;
  }

  .games {
    padding: 40px 30px;
  }

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

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

  .community-stats {
    margin: 50px 0;
  }

  .stats-container {
    padding: 40px 30px;
  }

  .stats-container h2 {
    font-size: 2rem;
  }

  .stats-intro {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .stat-card {
    padding: 25px 22px;
  }

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

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.95rem;
  }

  .recent-wins h3 {
    font-size: 1.7rem;
    margin-bottom: 30px;
  }

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

  .win-card {
    padding: 25px 22px;
  }

  .win-amount {
    font-size: 1.8rem;
  }

  .action-cta {
    padding: 30px 25px;
  }

  .action-cta h3 {
    font-size: 1.7rem;
  }

  .action-cta p {
    font-size: 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) {
  .breadcrumbs {
    padding: 10px 20px;
  }

  .breadcrumb-container {
    font-size: 0.8rem;
    gap: 6px;
  }
  .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;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 255, 255, 0.2) !important;
  }

  .hero-content .hero-subtitle {
    font-size: 0.85rem;
  }

  .hero-image {
    margin: 15px auto;
    border-radius: 10px;
  }

  .hero-content .hero-description {
    font-size: 1rem;
    text-align: left;
    text-align-last: left;
    margin-bottom: 30px;
  }

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

  .casino-features-header {
    height: 250px;
    margin-bottom: 40px;
  }

  .header-overlay {
    padding: 25px 20px;
  }

  .header-overlay h2 {
    font-size: 1.7rem;
  }

  .header-overlay .intro-subtitle {
    font-size: 1.1rem;
  }

  .header-overlay .intro-description {
    font-size: 0.9rem;
  }

  .feature-item {
    padding: 18px 20px;
    gap: 15px;
    margin-bottom: 25px;
  }

  .feature-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .feature-content h3 {
    font-size: 1.1rem;
  }

  .feature-content p {
    font-size: 0.9rem;
  }

  .feature-header .feature-icon {
    font-size: 1.5rem;
  }

  .feature-header {
    gap: 10px;
    margin-bottom: 12px;
  }

  .pro-tips-header {
    height: 250px;
    margin-bottom: 35px;
  }

  .tips-overlay {
    padding: 25px 20px;
  }

  .tips-overlay h2 {
    font-size: 1.8rem;
  }

  .tips-intro {
    font-size: 1rem;
  }

  .tips-content-wrapper {
    padding: 25px 20px;
  }

  .tip-number-cell {
    font-size: 1.2rem;
  }

  .tip-icon-cell {
    font-size: 2.8rem;
  }

  .tip-text-cell h3 {
    font-size: 1.1rem;
  }

  .tip-text-cell p {
    font-size: 0.9rem;
  }

  .conclusion-card {
    padding: 25px 20px;
  }

  .conclusion-card p {
    font-size: 1rem;
  }

  .tips-carousel-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .games {
    padding: 30px 20px;
  }

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

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

  .stats-container {
    padding: 35px 25px;
  }

  .stats-container h2 {
    font-size: 1.7rem;
  }

  .stats-intro {
    font-size: 1rem;
    margin-bottom: 35px;
  }

  .stats-grid {
    gap: 18px;
    margin-bottom: 35px;
  }

  .stat-card {
    padding: 20px 18px;
  }

  .stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .recent-wins h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .win-card {
    padding: 20px 18px;
  }

  .player-name {
    font-size: 1rem;
  }

  .win-amount {
    font-size: 1.5rem;
  }

  .game-name {
    font-size: 1.1rem;
  }

  .action-cta {
    padding: 25px 20px;
  }

  .action-cta h3 {
    font-size: 1.5rem;
  }

  .action-cta p {
    font-size: 0.95rem;
  }

  .live-activity {
    margin: 50px 0;
  }

  .live-activity-container {
    padding: 40px 30px;
  }

  .live-activity-container h2 {
    font-size: 2rem;
  }

  .live-intro {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .activity-item {
    padding: 20px 22px;
    gap: 15px;
  }

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

  .activity-text {
    font-size: 1rem;
  }

  .activity-time {
    font-size: 0.9rem;
  }

  .activity-badge {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .live-activity-container {
    padding: 35px 25px;
  }

  .live-activity-container h2 {
    font-size: 1.7rem;
  }

  .live-intro {
    font-size: 1rem;
    margin-bottom: 35px;
  }

  .activity-item {
    padding: 18px 20px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .activity-icon {
    font-size: 2rem;
  }

  .activity-content {
    min-width: 0;
    flex: 1 1 100%;
  }

  .activity-text {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .activity-time {
    font-size: 0.85rem;
  }

  .activity-badge {
    padding: 5px 10px;
    font-size: 0.7rem;
    flex: 0 0 auto;
  }

  .live-indicator span {
    font-size: 0.9rem;
  }

  .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;
  }
}