@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('bootstrap-icons.css');

:root {
  --primary-color: #E2C666;
  --secondary-color: #000000;
  --third-color: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --accent-primary: #CD9F36;
}

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

body {
  font-family: 'Ubuntu', sans-serif;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/background.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-primary);
  line-height: 1.6;
}


a {
  text-decoration: none;
  color: var(--accent-primary);
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  transition: background 0.3s ease;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.navbar {
  background-color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
}

.navbar .logo img {
  height: 50px;
  align-items: center;
}

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

.navbar-menu li a {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

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

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

.btn-login {
  background-color: var(--text-primary);
  color: var(--secondary-color);
  border: 2px solid var(--text-primary);
}

.btn-register {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.btn-login:hover {
  background-color: transparent;
  color: var(--text-primary);
}

.btn-register:hover {
  background-color: var(--text-primary);
  color: var(--secondary-color);
}

.internal-link {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.internal-link:hover {
  color: var(--third-color);
  border-bottom-color: var(--third-color);
  transform: translateY(-1px);
}

.path-link {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: var(--accent-primary);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.path-link:hover {
  background: var(--third-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--third-color) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 50px;
  top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-image {
  flex: 1;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.1);
}

.hero-badge {
  margin-bottom: 20px;
}

.badge-text {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #ffd700 100%);
  color: var(--secondary-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(226, 198, 102, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 15px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, var(--primary-color) 0%, #ffd700 50%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--accent-primary);
  margin-bottom: 25px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 35px;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  max-width: 600px;
}

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

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 35px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 16px;
  border-radius: 25px;
  border: 1px solid rgba(226, 198, 102, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(226, 198, 102, 0.2);
  border-color: rgba(226, 198, 102, 0.4);
}

.feature-icon {
  font-size: 1.2rem;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #ffd700 100%);
  color: var(--secondary-color);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 15px 35px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(226, 198, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::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-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(226, 198, 102, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--accent-primary);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--accent-primary);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(226, 198, 102, 0.3);
}

.hero-trust {
  margin-top: 20px;
}

.trust-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-align: center;
  opacity: 0.9;
}

.hero-image {
  position: relative;
}

.hero-image-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 3;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 0, 0, 0.9);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
  animation: blink 1.5s infinite;
}

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

.live-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse-dot 1s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.player-count {
  background: rgba(0, 0, 0, 0.8);
  color: var(--text-primary);
  padding: 10px 15px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 198, 102, 0.2);
}

.count-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.count-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.introduction {
  margin-top: 60px;
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(226, 198, 102, 0.2);
  position: relative;
  overflow: hidden;
}

.introduction::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(226, 198, 102, 0.05) 0%, transparent 50%, rgba(226, 198, 102, 0.05) 100%);
  pointer-events: none;
}

.intro-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.intro-header h2 {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: 800;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  background: linear-gradient(135deg, var(--primary-color) 0%, #ffd700 50%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.intro-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.badge-licensed,
.badge-award,
.badge-security {
  display: inline-block;
  background: rgba(0, 0, 0, 0.4);
  color: var(--text-primary);
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(226, 198, 102, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.badge-licensed:hover,
.badge-award:hover,
.badge-security:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(226, 198, 102, 0.2);
  border-color: rgba(226, 198, 102, 0.5);
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 30px 20px;
  border-radius: 15px;
  border: 1px solid rgba(226, 198, 102, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(226, 198, 102, 0.2);
  border-color: rgba(226, 198, 102, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.intro-text h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.intro-text p {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 25px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.expertise-section {
  background: rgba(0, 0, 0, 0.4);
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid var(--accent-primary);
  margin-top: 30px;
}

.expertise-section h4 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.expertise-list {
  list-style: none;
  padding: 0;
}

.expertise-list li {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.expertise-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: bold;
  font-size: 1.1rem;
}

.expertise-list strong {
  color: var(--text-primary);
  font-weight: 600;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.feature-card {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(226, 198, 102, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(226, 198, 102, 0.2);
  border-color: rgba(226, 198, 102, 0.3);
}

.feature-card .feature-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
}

.feature-card h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.intro-cta {
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(226, 198, 102, 0.2);
  position: relative;
  z-index: 2;
}

.cta-text {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 30px;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #ffd700 100%);
  color: var(--secondary-color);
  box-shadow: 0 8px 25px rgba(226, 198, 102, 0.4);
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(226, 198, 102, 0.6);
}

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

.cta-buttons .btn-secondary:hover {
  background: var(--accent-primary);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(226, 198, 102, 0.3);
}

.about-us {
  margin-top: 60px;
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(226, 198, 102, 0.2);
  position: relative;
  overflow: hidden;
}

.about-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(226, 198, 102, 0.05) 0%, transparent 50%, rgba(226, 198, 102, 0.05) 100%);
  pointer-events: none;
}

.about-us-content {
  width: 100%;
  position: relative;
  z-index: 2;
}

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

.about-header h2 {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  background: linear-gradient(135deg, var(--primary-color) 0%, #ffd700 50%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.about-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
  align-items: center;
}

.story-content h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.story-content p {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 25px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

.achievement-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(226, 198, 102, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.achievement-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(226, 198, 102, 0.2);
  border-color: rgba(226, 198, 102, 0.3);
}

.achievement-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.achievement-text h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 5px;
  font-weight: 600;
}

.achievement-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.story-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

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

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 20px 20px;
}

.overlay-stats {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.stat {
  text-align: center;
  color: var(--text-primary);
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-expertise {
  margin-bottom: 60px;
}

.about-expertise h3 {
  font-size: 2.2rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.expertise-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.expertise-text h4 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.expertise-text p {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 30px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.expertise-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(226, 198, 102, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(226, 198, 102, 0.2);
  border-color: rgba(226, 198, 102, 0.3);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-content h5 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.feature-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.expertise-stats h4 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: 600;
  text-align: center;
}

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

.stat-card {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 20px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(226, 198, 102, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(226, 198, 102, 0.2);
  border-color: rgba(226, 198, 102, 0.3);
}

.stat-card .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-card .stat-label {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-card .stat-description {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.about-games {
  margin-bottom: 60px;
}

.about-games h3 {
  font-size: 2.2rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.games-intro {
  font-size: 1.1rem;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.8;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.games-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.game-category {
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(226, 198, 102, 0.1);
  backdrop-filter: blur(10px);
}

.game-category h4 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.game-category p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.popular-slots,
.table-games {
  list-style: none;
  padding: 0;
}

.popular-slots li,
.table-games li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.popular-slots li::before,
.table-games li::before {
  content: "•";
  color: var(--accent-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.popular-slots strong,
.table-games strong {
  color: var(--text-primary);
  font-weight: 600;
}

.about-cta {
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 50px 40px;
  border-radius: 20px;
  border: 1px solid rgba(226, 198, 102, 0.2);
}

.about-cta h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about-cta p {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 30px;
  line-height: 1.7;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #ffd700 100%);
  color: var(--secondary-color);
  box-shadow: 0 8px 25px rgba(226, 198, 102, 0.4);
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(226, 198, 102, 0.6);
}

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

.cta-buttons .btn-secondary:hover {
  background: var(--accent-primary);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(226, 198, 102, 0.3);
}

/* ===== BONUS SECTION STYLES ===== */
/* ===== BONUS SECTION - NEW DESIGN ===== */
.bonus {
  padding: 80px 40px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(17, 17, 17, 0.98) 50%, rgba(0, 0, 0, 0.95) 100%);
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.bonus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(226, 198, 102, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(205, 159, 54, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.bonus-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

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

.bonus-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.bonus-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.badge-new, .badge-exclusive, .badge-trusted {
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-new {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  animation: pulse 2s infinite;
}

.badge-exclusive {
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  color: var(--secondary-color);
}

.badge-trusted {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.bonus-card {
  background: linear-gradient(145deg, var(--third-color), #1a1a1a);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(226, 198, 102, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-primary));
}

.bonus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(226, 198, 102, 0.2);
  border-color: var(--primary-color);
}

.bonus-card.featured {
  border: 2px solid var(--primary-color);
  box-shadow: 0 10px 30px rgba(226, 198, 102, 0.3);
  transform: scale(1.02);
}

.bonus-card.featured::before {
  height: 6px;
  background: linear-gradient(90deg, var(--primary-color), #ffd700, var(--accent-primary));
}

.bonus-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.bonus-icon {
  font-size: 2rem;
  margin-right: 10px;
}

.bonus-type {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.bonus-badge {
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  color: var(--secondary-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.bonus-amount {
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
}

.bonus-amount .amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.bonus-amount .currency {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-left: 5px;
  font-weight: 500;
}

.bonus-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.bonus-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.bonus-features {
  list-style: none;
  margin-bottom: 20px;
}

.bonus-features li {
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.bonus-features li::before {
  content: '✅';
  margin-right: 8px;
  font-size: 0.8rem;
}

.bonus-terms {
  background: rgba(0, 0, 0, 0.3);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.bonus-terms p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

.bonus-cta {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-primary));
  color: var(--secondary-color);
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.bonus-cta:hover {
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(226, 198, 102, 0.4);
  color: var(--secondary-color);
}

.bonus-info {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid rgba(226, 198, 102, 0.1);
}

.info-section h3 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(17, 17, 17, 0.6);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(17, 17, 17, 0.8);
  transform: translateY(-3px);
}

.info-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.info-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.bonus-terms-section h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.terms-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-bottom: 20px;
}

.terms-column h4 {
  font-size: 1.1rem;
  color: var(--accent-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.terms-column ul {
  list-style: none;
  padding: 0;
}

.terms-column li {
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-size: 0.9rem;
  padding-left: 15px;
  position: relative;
}

.terms-column li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.terms-note {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.bonus-cta-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(226, 198, 102, 0.1), rgba(205, 159, 54, 0.1));
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(226, 198, 102, 0.2);
}

.bonus-cta-section h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.bonus-cta-section p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-primary));
  color: var(--secondary-color);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(226, 198, 102, 0.4);
  color: var(--secondary-color);
}

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

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(226, 198, 102, 0.3);
}

/* ===== LIVE DEALER SECTION STYLES ===== */
.live-dealer {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(17, 17, 17, 0.98) 50%, rgba(0, 0, 0, 0.95) 100%);
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.live-dealer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(226, 198, 102, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.live-dealer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.live-dealer-header {
  text-align: center;
  margin-bottom: 60px;
}

.live-dealer-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary-color), #ff6b6b, var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.live-dealer-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.live-dealer-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.badge-live, .badge-hd, .badge-australian {
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse 2s infinite;
}

.badge-live {
  background: linear-gradient(135deg, #ff0000, #cc0000);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.badge-hd {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-primary));
  color: var(--secondary-color);
  box-shadow: 0 4px 15px rgba(226, 198, 102, 0.3);
}

.badge-australian {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.live-dealer-showcase {
  margin-bottom: 60px;
}

.live-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(226, 198, 102, 0.2);
  backdrop-filter: blur(10px);
}

.live-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(17, 17, 17, 0.6);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.live-stat:hover {
  transform: translateY(-5px);
  background: rgba(17, 17, 17, 0.8);
  box-shadow: 0 10px 30px rgba(226, 198, 102, 0.2);
}

.stat-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.live-dealer-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.live-features-section h3,
.live-games-section h3,
.live-providers-section h3,
.live-benefits-section h3 {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: linear-gradient(145deg, var(--third-color), #1a1a1a);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(226, 198, 102, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-primary));
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(226, 198, 102, 0.2);
  border-color: var(--primary-color);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

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

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

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.game-card {
  background: linear-gradient(145deg, var(--third-color), #1a1a1a);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(226, 198, 102, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(226, 198, 102, 0.3);
  border-color: var(--primary-color);
}

.game-card.featured {
  border: 2px solid var(--primary-color);
  box-shadow: 0 15px 35px rgba(226, 198, 102, 0.4);
  transform: scale(1.02);
}

.game-image {
  height: 200px;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.game-card:hover .game-provider-image {
  transform: scale(1.05);
}

.live-indicator {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff0000, #cc0000);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse-dot 1s infinite;
}

.game-content {
  padding: 25px;
}

.game-content h4 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 700;
}

.game-provider {
  color: var(--accent-primary);
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.game-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.game-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.feature-tag {
  background: rgba(226, 198, 102, 0.2);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.stat {
  text-align: center;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 5px;
}

.stat-value {
  font-size: 1.1rem;
  color: var(--accent-primary);
  font-weight: 700;
}

.game-cta {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-primary));
  color: var(--secondary-color);
  text-align: center;
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.game-cta:hover {
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(226, 198, 102, 0.4);
  color: var(--secondary-color);
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.provider-card {
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(226, 198, 102, 0.1);
  transition: all 0.3s ease;
}

.provider-card:hover {
  transform: translateY(-5px);
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(226, 198, 102, 0.3);
}

.provider-logo {
  font-size: 1.3rem;
  color: var(--accent-primary);
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(17, 17, 17, 0.6);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(17, 17, 17, 0.8);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(226, 198, 102, 0.2);
}

.benefit-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-weight: 600;
}

.benefit-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.live-cta-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(226, 198, 102, 0.1), rgba(255, 107, 107, 0.1));
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(226, 198, 102, 0.2);
}

.live-cta-section h3 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.live-cta-section p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 18px 35px;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-primary));
  color: var(--secondary-color);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(226, 198, 102, 0.4);
  color: var(--secondary-color);
}

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

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(226, 198, 102, 0.3);
}

/* ===== HIGHLIGHTS SECTION STYLES ===== */
.expertise-highlights {
  margin-top: 30px;
}

.expertise-highlights h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4ecdc4;
    margin-bottom: 20px;
    text-align: center;
}

.highlights-list {
  display: flex;
  flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(78, 205, 196, 0.1);
  border-radius: 10px;
    border-left: 4px solid #4ecdc4;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(78, 205, 196, 0.15);
    transform: translateX(5px);
}

.highlight-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.highlight-text {
    color: #ffffff;
    font-weight: 600;
    line-height: 1.4;
}

.image-overlay .overlay-content {
    text-align: center;
    color: white;
}

.image-overlay .overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.image-overlay .overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* ===== GAMES SECTION STYLES ===== */
.games {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.03"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.games-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.games-header {
    text-align: center;
    margin-bottom: 60px;
}

.games-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.games-subtitle {
    font-size: 1.2rem;
    color: #b8c5d6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.games-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.badge-games, .badge-providers, .badge-mobile {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.badge-providers {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.badge-mobile {
    background: linear-gradient(135deg, #a8e6cf, #7fcdcd);
    color: #2c3e50;
    box-shadow: 0 4px 15px rgba(168, 230, 207, 0.3);
}

.games-showcase {
    margin-bottom: 60px;
}

.games-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.games-stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.games-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #a8e6cf);
}

.games-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
  margin-bottom: 15px;
    display: block;
}

.stat-content {
    color: #ffffff;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #4ecdc4;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #b8c5d6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.games-content {
    margin-top: 60px;
}

.game-categories-section h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(78, 205, 196, 0.3);
}

.category-card.featured {
    border: 2px solid #4ecdc4;
    box-shadow: 0 0 30px rgba(78, 205, 196, 0.2);
}

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

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

.category-card:hover .category-img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.category-content {
    padding: 25px;
}

.category-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.category-provider {
    color: #4ecdc4;
    font-size: 0.9rem;
  font-weight: 600;
    margin-bottom: 12px;
}

.category-description {
    color: #b8c5d6;
    line-height: 1.6;
  margin-bottom: 20px;
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
  font-weight: 600;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.category-stats {
    display: flex;
    justify-content: space-between;
  margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.stat {
    text-align: center;
}

.stat-label {
    font-size: 0.8rem;
    color: #b8c5d6;
    display: block;
    margin-bottom: 5px;
}

.stat-value {
  font-size: 1rem;
    font-weight: 700;
    color: #4ecdc4;
}

.category-cta {
    display: inline-block;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.category-cta:hover {
    background: linear-gradient(135deg, #44a08d, #4ecdc4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

.providers-section {
    margin: 80px 0;
    text-align: center;
}

.providers-section h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.provider-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(78, 205, 196, 0.3);
}

.provider-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4ecdc4;
    margin-bottom: 15px;
}

.provider-card p {
    color: #b8c5d6;
  line-height: 1.6;
}

.games-benefits-section {
    margin: 80px 0;
}

.games-benefits-section h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(78, 205, 196, 0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.benefit-content p {
    color: #b8c5d6;
    line-height: 1.6;
}

.games-cta-section {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.games-cta-section h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.games-cta-section p {
    font-size: 1.1rem;
    color: #b8c5d6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #44a08d, #4ecdc4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #4ecdc4;
    border: 2px solid #4ecdc4;
}

.btn-secondary:hover {
    background: #4ecdc4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

/* ===== BREADCRUMBS STYLES ===== */
.breadcrumbs {
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.breadcrumb-item:not(:last-child)::after {
  content: '›';
  margin: 0 10px;
  color: #b8c5d6;
  font-size: 1.2rem;
}

.breadcrumb-link {
  color: #b8c5d6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: #E2C666;
}

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

/* ===== SUCCESS STORIES SECTION STYLES ===== */
.success-stories {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.success-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="success-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffd700" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffd700" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffd700" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ffd700" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ffd700" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23success-grain)"/></svg>');
    pointer-events: none;
}

.success-stories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.success-header {
    text-align: center;
    margin-bottom: 60px;
}

.success-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.success-subtitle {
    font-size: 1.2rem;
    color: #b8c5d6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.success-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.badge-verified, .badge-live, .badge-trusted {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.badge-live {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.badge-trusted {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.winners-showcase {
    margin-bottom: 60px;
}

.big-wins-section, .testimonials-section, .stats-section {
    margin-bottom: 50px;
}

.big-wins-section h3, .testimonials-section h3, .stats-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.big-wins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.win-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.win-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.win-card.featured {
    border: 2px solid #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    transform: scale(1.02);
}

.win-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.win-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.win-game {
    font-size: 1.1rem;
    color: #4ecdc4;
    font-weight: 600;
    margin-bottom: 20px;
}

.winner-info {
  display: flex;
  align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.winner-avatar {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.winner-details {
    text-align: left;
}

.winner-name {
  font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.win-time {
    font-size: 0.9rem;
    color: #b8c5d6;
}

.win-verification {
    font-size: 0.8rem;
    color: #4ecdc4;
    font-weight: 600;
    background: rgba(78, 205, 196, 0.1);
    padding: 5px 10px;
    border-radius: 15px;
    display: inline-block;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(78, 205, 196, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    margin-bottom: 20px;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.testimonial-content p {
    color: #b8c5d6;
    line-height: 1.6;
  font-style: italic;
    margin: 0;
}

.testimonial-author {
  display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(78, 205, 196, 0.3);
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3px;
}

.author-location {
    font-size: 0.9rem;
    color: #b8c5d6;
    margin-bottom: 3px;
}

.author-verified {
    font-size: 0.8rem;
    color: #4ecdc4;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #4ecdc4);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: #b8c5d6;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.success-cta {
    text-align: center;
    margin-top: 60px;
    padding: 60px 40px;
    background: rgba(255, 215, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
}

.success-cta h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.success-cta p {
    font-size: 1.1rem;
    color: #b8c5d6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #4ecdc4;
    border: 2px solid #4ecdc4;
}

.btn-secondary:hover {
    background: #4ecdc4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

/* ===== SUCCESS STORIES RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .success-header h2 {
        font-size: 2.2rem;
    }
    
    .success-subtitle {
        font-size: 1rem;
    }
    
    .success-badges {
        gap: 10px;
    }
    
    .badge-verified, .badge-live, .badge-trusted {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .big-wins-grid {
        grid-template-columns: 1fr;
  gap: 20px;
    }
    
    .win-card {
        padding: 20px;
    }
    
    .win-amount {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .success-cta {
        padding: 40px 20px;
    }
    
    .success-cta h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .success-stories {
        padding: 60px 0;
    }
    
    .success-header h2 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .big-wins-section h3, .testimonials-section h3, .stats-section h3 {
        font-size: 1.5rem;
    }
}

/* ===== FAQ SECTION STYLES ===== */
.faq {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.02"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.02"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-grain)"/></svg>');
    pointer-events: none;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #b8c5d6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.faq-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.badge-faq {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.faq-content {
    margin-top: 40px;
}

.faq-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.faq-category h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4ecdc4;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(78, 205, 196, 0.3);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(78, 205, 196, 0.3);
}

.faq-question {
    padding: 25px;
    display: flex;
  justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
  flex: 1;
    padding-right: 20px;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4ecdc4;
    transition: all 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #ff6b6b;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 25px 25px;
}

.faq-answer p {
    color: #b8c5d6;
    line-height: 1.6;
    margin: 0;
    padding-top: 15px;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.faq-cta h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-cta p {
  font-size: 1.1rem;
    color: #b8c5d6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ===== GAMES SECTION RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .games-header h2 {
        font-size: 2.2rem;
    }
    
    .games-subtitle {
        font-size: 1rem;
    }
    
    .games-badges {
        gap: 10px;
    }
    
    .badge-games, .badge-providers, .badge-mobile {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .games-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .games-stat {
        padding: 20px 15px;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card {
        margin-bottom: 20px;
    }
    
    .category-image {
        height: 150px;
    }
    
    .category-content {
        padding: 20px;
    }
    
    .category-content h4 {
        font-size: 1.2rem;
    }
    
    .category-stats {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .games-cta-section {
        padding: 40px 20px;
    }
    
    .games-cta-section h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .games {
        padding: 60px 0;
    }
    
    .games-header h2 {
        font-size: 1.8rem;
    }
    
    .games-stats {
        grid-template-columns: 1fr;
    }
    
    .game-categories-section h3 {
        font-size: 1.8rem;
    }
    
    .providers-section h3 {
        font-size: 1.8rem;
    }
    
    .games-benefits-section h3 {
        font-size: 1.8rem;
    }
}

/* ===== FAQ SECTION RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2.2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-badges {
        gap: 10px;
    }
    
    .badge-faq {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .faq-categories {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-category h3 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-toggle {
        font-size: 1.2rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-cta {
        padding: 40px 20px;
    }
    
    .faq-cta h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-header h2 {
        font-size: 1.8rem;
    }
    
    .faq-category h3 {
        font-size: 1.3rem;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h4 {
        font-size: 0.9rem;
    }
}

/* ===== VIDEO POKER SECTION STYLES ===== */
.video-poker {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(17, 17, 17, 0.98) 50%, rgba(0, 0, 0, 0.95) 100%);
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.video-poker::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(226, 198, 102, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 75% 75%, rgba(205, 159, 54, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.video-poker-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.video-poker-header {
  text-align: center;
  margin-bottom: 60px;
}

.video-poker-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary-color), #ff6b6b, var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.video-poker-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.video-poker-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.badge-skill, .badge-rtp, .badge-strategy {
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse 2s infinite;
}

.badge-skill {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
  color: white;
  box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
}

.badge-rtp {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-primary));
  color: var(--secondary-color);
  box-shadow: 0 4px 15px rgba(226, 198, 102, 0.3);
}

.badge-strategy {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.video-poker-showcase {
  margin-bottom: 60px;
}

.poker-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(226, 198, 102, 0.2);
  backdrop-filter: blur(10px);
}

.poker-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(17, 17, 17, 0.6);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.poker-stat:hover {
  transform: translateY(-5px);
  background: rgba(17, 17, 17, 0.8);
  box-shadow: 0 10px 30px rgba(226, 198, 102, 0.2);
}

.stat-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.video-poker-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.poker-features-section h3,
.poker-games-section h3,
.poker-strategy-section h3,
.poker-benefits-section h3 {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: linear-gradient(145deg, var(--third-color), #1a1a1a);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(226, 198, 102, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-primary));
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(226, 198, 102, 0.2);
  border-color: var(--primary-color);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

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

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

.poker-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.poker-game-card {
  background: linear-gradient(145deg, var(--third-color), #1a1a1a);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(226, 198, 102, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.poker-game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(226, 198, 102, 0.3);
  border-color: var(--primary-color);
}

.poker-game-card.featured {
  border: 2px solid var(--primary-color);
  box-shadow: 0 15px 35px rgba(226, 198, 102, 0.4);
  transform: scale(1.02);
}

.game-image {
  height: 200px;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.poker-indicator {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
  animation: pulse 2s infinite;
}

.poker-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse-dot 1s infinite;
}

.game-content {
  padding: 25px;
}

.game-content h4 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 700;
}

.game-provider {
  color: var(--accent-primary);
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.game-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.game-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.feature-tag {
  background: rgba(226, 198, 102, 0.2);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.stat {
  text-align: center;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 5px;
}

.stat-value {
  font-size: 1.1rem;
  color: var(--accent-primary);
  font-weight: 700;
}

.game-cta {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-primary));
  color: var(--secondary-color);
  text-align: center;
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.game-cta:hover {
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(226, 198, 102, 0.4);
  color: var(--secondary-color);
}

.poker-strategy-section {
  background: rgba(0, 0, 0, 0.4);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(226, 198, 102, 0.1);
}

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

.strategy-tips h4,
.strategy-rules h4 {
  font-size: 1.5rem;
  color: var(--accent-primary);
  margin-bottom: 25px;
  font-weight: 600;
}

.strategy-list {
  list-style: none;
  padding: 0;
}

.strategy-list li {
  color: var(--text-primary);
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
}

.strategy-list li::before {
  content: '✅';
  margin-right: 12px;
  font-size: 1.1rem;
}

.hand-rankings {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hand-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(17, 17, 17, 0.6);
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.hand-item:hover {
  background: rgba(17, 17, 17, 0.8);
  transform: translateX(5px);
}

.hand-name {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.hand-payout {
  font-size: 1.1rem;
  color: var(--accent-primary);
  font-weight: 700;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(17, 17, 17, 0.6);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(17, 17, 17, 0.8);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(226, 198, 102, 0.2);
}

.benefit-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-weight: 600;
}

.benefit-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.poker-cta-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(226, 198, 102, 0.1), rgba(155, 89, 182, 0.1));
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(226, 198, 102, 0.2);
}

.poker-cta-section h3 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.poker-cta-section p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 18px 35px;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-primary));
  color: var(--secondary-color);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(226, 198, 102, 0.4);
  color: var(--secondary-color);
}

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

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(226, 198, 102, 0.3);
}

.games {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--secondary-color);
}

.games-intro h2 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

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

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.game-card {
  background-color: var(--third-color);
  border-radius: 10px;
  overflow: hidden;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
}

.game-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.game-card h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin: 10px 0 8px 0;
  font-weight: 600;
}

.game-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.final-thoughts {
  margin-top: 40px;
  padding: 60px 40px;
  background: linear-gradient(145deg, var(--secondary-color) 0%, #1a1a1a 100%);
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.final-thoughts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(226, 198, 102, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.final-thoughts-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-thoughts-header {
  text-align: center;
  margin-bottom: 50px;
}

.final-thoughts-header h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.final-thoughts-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 300;
}

.game-paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.game-path {
  background: linear-gradient(145deg, rgba(17, 17, 17, 0.8) 0%, rgba(34, 34, 34, 0.6) 100%);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  backdrop-filter: blur(10px);
}

.game-path:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--accent-primary);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(226, 198, 102, 0.3);
}

.path-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px auto;
  display: block;
}

.game-path h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin: 0 0 10px 0;
  font-weight: 600;
}

.game-path p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0 0 15px 0;
  line-height: 1.5;
}

.path-arrow {
  font-size: 1.5rem;
  color: var(--accent-primary);
  font-weight: bold;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.game-path:hover .path-arrow {
  opacity: 1;
  transform: translateX(0);
}

.final-message {
  text-align: center;
  margin-bottom: 40px;
  padding: 25px;
  background: rgba(17, 17, 17, 0.5);
  border-radius: 15px;
  border: 1px solid rgba(226, 198, 102, 0.3);
}

.final-message p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
  font-style: italic;
}

.cta-section {
  text-align: center;
}

.main-cta {
  display: inline-block;
  padding: 20px 50px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #ffd700 100%);
  color: var(--secondary-color);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 
    0 10px 30px rgba(226, 198, 102, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.main-cta::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;
}

.main-cta:hover::before {
  left: 100%;
}

.main-cta:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 15px 40px rgba(226, 198, 102, 0.6),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.cta-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 20px;
  font-weight: 400;
}

.faq {
  margin-top: 30px;
  padding: 50px 30px;
  background: linear-gradient(135deg, #1a1a1a 0%, var(--secondary-color) 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-weight: 600;
}

.faq-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin: 0;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: var(--third-color);
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  border-color: var(--accent-primary);
  transform: translateX(5px);
}

.faq-item.active {
  border-color: var(--accent-primary);
  background-color: rgba(226, 198, 102, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
  flex: 1;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--accent-primary);
  font-weight: bold;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(226, 198, 102, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background-color: var(--accent-primary);
  color: var(--secondary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 25px 25px 25px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.footer {
  background-color: var(--secondary-color);
  padding: 40px 20px;
  margin-top: 40px;
  border-top: 1px solid var(--);
}

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

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

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

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-copy p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
}

.trust-signals {
  margin-top: 40px;
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(226, 198, 102, 0.2);
}

.trust-signals-content {
  max-width: 1200px;
  margin: 0 auto;
}

.trust-signals h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.trust-item {
  background: rgba(0, 0, 0, 0.4);
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(226, 198, 102, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(226, 198, 102, 0.2);
  border-color: rgba(226, 198, 102, 0.3);
}

.trust-item h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.trust-item p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

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

  .about-us {
    padding: 40px 30px;
  }

  .about-header h2 {
    font-size: 2.2rem;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .achievement-item {
    padding: 15px;
  }

  .expertise-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

  .game-category {
    padding: 20px;
  }

  .about-cta {
    padding: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .bonus {
    flex-direction: column;
  }

  .bonus-banner,
  .bonus-details {
    max-width: 100%;
  }

  .games {
    padding: 20px;
  }

  .final-thoughts {
    padding: 40px 25px;
  }

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

  .game-paths {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .game-path {
    padding: 25px 15px;
  }

  .main-cta {
    padding: 18px 40px;
    font-size: 1.2rem;
  }

  .live-dealer {
    padding: 20px;
  }

  .live-dealer-section {
    padding: 20px;
  }

  .video-poker {
    padding: 20px;
  }

  .video-poker-section {
    padding: 20px;
  }

  .faq {
    padding: 40px 20px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }

  .introduction {
    padding: 40px 30px;
  }

  .intro-header h2 {
    font-size: 2.2rem;
  }

  .intro-badges {
    gap: 15px;
  }

  .badge-licensed,
  .badge-award,
  .badge-security {
    padding: 10px 16px;
    font-size: 0.8rem;
  }

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

  .stat-item {
    padding: 25px 15px;
  }

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

  .intro-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .intro-text h3 {
    font-size: 1.5rem;
  }

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

  .expertise-section {
    padding: 20px;
  }

  .intro-features {
    gap: 20px;
  }

  .feature-card {
    padding: 20px;
  }

  .intro-cta {
    padding: 30px;
  }

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

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

/* ===== INTRODUCTION CONTENT STYLES ===== */
.introduction-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.introduction-content h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

.introduction-content p {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== ABOUT US CONTENT STYLES ===== */
.about-us-content h2 {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.h2-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.slots-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}

.about-us-banner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-us-banner img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.about-us-banner img:hover {
  transform: scale(1.05);
}

.slots-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.slots-section {
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(226, 198, 102, 0.2);
  backdrop-filter: blur(10px);
}

.slots-section h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.slots-features,
.slot-titles {
  list-style: none;
  padding: 0;
  margin: 0;
}

.slots-features li,
.slot-titles li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.slots-features li:last-child,
.slot-titles li:last-child {
  border-bottom: none;
}

.slots-features li strong,
.slot-titles li strong {
  color: var(--primary-color);
  font-weight: 600;
}

.closing-text {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== BONUS SECTION STYLES ===== */
.bonus-details {
  max-width: 1200px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

.bonus-intro {
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(226, 198, 102, 0.2);
  backdrop-filter: blur(10px);
}

.bonus-intro h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}

.bonus-intro h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 25px;
  font-weight: 600;
  text-align: center;
}

.table-games-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.table-games-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border: 1px solid rgba(226, 198, 102, 0.1);
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.6;
  transition: all 0.3s ease;
}

.table-games-list li:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(226, 198, 102, 0.2);
}

.table-games-list li strong {
  color: var(--primary-color);
  font-weight: 600;
}

.table-games-description {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.8;
  text-align: center;
  margin-top: 25px;
}

/* ===== LIVE DEALER SECTION STYLES ===== */
.live-dealer-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.live-dealer-content h2 {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.live-dealer-section {
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(226, 198, 102, 0.2);
  backdrop-filter: blur(10px);
  margin-bottom: 30px;
}

.live-dealer-section h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.live-features,
.live-games-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.live-features li,
.live-games-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.live-features li:last-child,
.live-games-list li:last-child {
  border-bottom: none;
}

.live-games-list li strong {
  color: var(--primary-color);
  font-weight: 600;
}

.live-description {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin-top: 20px;
}

/* ===== VIDEO POKER SECTION STYLES ===== */
.video-poker-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.video-poker-content h2 {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.video-poker-section {
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(226, 198, 102, 0.2);
  backdrop-filter: blur(10px);
}

.video-poker-section h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.video-poker-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.video-poker-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.video-poker-list li:last-child {
  border-bottom: none;
}

.video-poker-list li strong {
  color: var(--primary-color);
  font-weight: 600;
}

.video-poker-description {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin-top: 20px;
}

/* ===== INTERNAL LINK STYLES ===== */
.internal-link {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 500;
  transition: all 0.3s ease;
}

.internal-link:hover {
  color: var(--accent-primary);
  text-decoration: none;
}

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

  .navbar .auth-buttons {
    margin-top: 10px;
    width: 100%;
    gap: 20px;
    justify-content: center;
  }

  .navbar-menu {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .hero {
    padding: 30px;
  }

  .hero-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-features {
    gap: 15px;
  }

  .feature-item {
    padding: 8px 12px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .hero-image-overlay {
    top: 15px;
    right: 15px;
  }

  .live-indicator {
    padding: 6px 12px;
    font-size: 0.7rem;
  }

  .player-count {
    padding: 8px 12px;
  }

  .count-number {
    font-size: 1rem;
  }

  .count-text {
    font-size: 0.7rem;
  }

  .about-us-content h2 {
    font-size: 1.4rem;
  }

  .slots-section h3 {
    font-size: 1.2rem;
  }

  .introduction {
    padding: 30px 20px;
    margin-top: 40px;
  }

  .intro-header h2 {
    font-size: 1.8rem;
  }

  .intro-badges {
    flex-direction: column;
    gap: 10px;
  }

  .badge-licensed,
  .badge-award,
  .badge-security {
    padding: 8px 12px;
    font-size: 0.75rem;
  }

  .intro-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-item {
    padding: 20px 15px;
  }

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

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

  .intro-content {
    gap: 25px;
  }

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

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

  .expertise-section {
    padding: 15px;
  }

  .expertise-section h4 {
    font-size: 1.1rem;
  }

  .expertise-list li {
    font-size: 0.9rem;
  }

  .intro-features {
    gap: 15px;
  }

  .feature-card {
    padding: 15px;
  }

  .feature-card h4 {
    font-size: 1.1rem;
  }

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

  .intro-cta {
    padding: 25px 15px;
  }

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

  .cta-buttons .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .games-intro h2 {
    font-size: 1.4rem;
  }

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

  .faq-question h3 {
    font-size: 1.1rem;
  }

  .footer-container {
    gap: 20px;
  }

  /* Video Poker Section Mobile Styles */
  .video-poker {
    padding: 50px 0;
  }

  .video-poker-container {
    padding: 0 15px;
  }

  .video-poker-header h2 {
    font-size: 2.2rem;
  }

  .video-poker-subtitle {
    font-size: 1.1rem;
  }

  .video-poker-badges {
    gap: 15px;
  }

  .badge-skill, .badge-rtp, .badge-strategy {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .poker-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px 20px;
  }

  .poker-stat {
    padding: 15px;
  }

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

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

  .video-poker-content {
    gap: 40px;
  }

  .poker-features-section h3,
  .poker-games-section h3,
  .poker-strategy-section h3,
  .poker-benefits-section h3 {
    font-size: 1.8rem;
  }

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

  .feature-card {
    padding: 20px;
  }

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

  .feature-card h4 {
    font-size: 1.2rem;
  }

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

  .poker-game-card.featured {
    transform: none;
  }

  .game-image {
    height: 150px;
  }

  .game-content {
    padding: 20px;
  }

  .game-content h4 {
    font-size: 1.3rem;
  }

  .game-stats {
    flex-direction: column;
    gap: 10px;
  }

  .poker-strategy-section {
    padding: 30px 20px;
  }

  .strategy-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .strategy-tips h4,
  .strategy-rules h4 {
    font-size: 1.3rem;
  }

  .hand-item {
    padding: 12px 15px;
  }

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

  .benefit-item {
    padding: 20px;
  }

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

  .poker-cta-section {
    padding: 30px 20px;
  }

  .poker-cta-section h3 {
    font-size: 1.8rem;
  }

  .poker-cta-section p {
    font-size: 1rem;
  }
}

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

  .hero {
    padding: 20px;
  }

  .hero-container {
    gap: 20px;
  }

  .hero-image img {
    max-height: 300px;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-features {
    gap: 10px;
    justify-content: center;
  }

  .feature-item {
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .hero-cta {
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .hero-image-overlay {
    top: 10px;
    right: 10px;
    gap: 10px;
  }

  .live-indicator {
    padding: 5px 10px;
    font-size: 0.6rem;
  }

  .player-count {
    padding: 6px 10px;
  }

  .count-number {
    font-size: 0.9rem;
  }

  .count-text {
    font-size: 0.6rem;
  }

  .badge-text {
    font-size: 0.8rem;
    padding: 6px 15px;
  }

  .about-us-content {
    padding: 15px;
  }

  .about-us-content h2 {
    font-size: 1.3rem;
  }

  .h2-description {
    font-size: 1rem;
  }

  .slots-section h3 {
    font-size: 1.1rem;
  }

  .slots-container {
    flex-direction: column;
    gap: 20px;
  }

  .about-us-banner {
    max-width: 320px;
    margin: 0 auto;
  }

  .slots-section {
    padding: 18px;
  }

  .slots-section h3 {
    font-size: 1.2rem;
  }

  .bonus-details {
    padding: 20px;
  }

  .games {
    padding: 15px;
  }

  .final-thoughts {
    padding: 20px;
  }

  .final-thoughts-content h2 {
    font-size: 1.4rem;
  }

  .final-thoughts {
    padding: 30px 20px;
  }

  .final-thoughts-header h2 {
    font-size: 1.8rem;
  }

  .game-paths {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
  }

  .game-path {
    padding: 20px 15px;
  }

  .path-icon {
    width: 45px;
    height: 45px;
  }

  .game-path h3 {
    font-size: 1.2rem;
  }

  .main-cta {
    padding: 16px 35px;
    font-size: 1.1rem;
    letter-spacing: 1px;
  }

  .live-dealer {
    padding: 15px;
  }

  .live-dealer-section {
    padding: 18px;
  }

  .live-dealer-section h3 {
    font-size: 1.2rem;
  }

  .video-poker {
    padding: 15px;
  }

  .video-poker-section {
    padding: 18px;
  }

  .video-poker-section h3 {
    font-size: 1.2rem;
  }

  .faq {
    padding: 30px 15px;
  }

  .faq-header h2 {
    font-size: 1.5rem;
  }

  .faq-question {
    padding: 18px;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-toggle {
    width: 25px;
    height: 25px;
    font-size: 1.3rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 18px 18px 18px;
  }

  .introduction {
    padding: 20px;
    margin-top: 25px;
  }

  .introduction-content h2 {
    font-size: 1.2rem;
  }

  .footer {
    padding: 30px 15px;
  }

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

  .trust-signals {
    padding: 40px 20px;
  }

  .trust-signals h2 {
    font-size: 2rem;
  }

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

  .trust-item {
    padding: 25px 20px;
  }

  .trust-item h3 {
    font-size: 1.2rem;
  }

  /* Bonus Section Mobile Styles */
  .bonus {
    padding: 40px 0;
  }

  .bonus-container {
    padding: 0 15px;
  }

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

  .bonus-subtitle {
    font-size: 1rem;
  }

  .bonus-badges {
    gap: 10px;
  }

  .badge-new, .badge-exclusive, .badge-trusted {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

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

  .bonus-card {
    padding: 20px;
  }

  .bonus-card.featured {
    transform: none;
  }

  .bonus-amount .amount {
    font-size: 2rem;
  }

  .bonus-title {
    font-size: 1.1rem;
  }

  .bonus-description {
    font-size: 0.9rem;
  }

  .bonus-features li {
    font-size: 0.85rem;
  }

  .bonus-info {
    padding: 25px 20px;
  }

  .info-section h3 {
    font-size: 1.5rem;
  }

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

  .info-item {
    padding: 15px;
  }

  .info-content h4 {
    font-size: 1rem;
  }

  .info-content p {
    font-size: 0.85rem;
  }

  .bonus-terms-section h3 {
    font-size: 1.3rem;
  }

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

  .bonus-cta-section {
    padding: 30px 20px;
  }

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

  .bonus-cta-section p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary, .btn-secondary {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  /* Live Dealer Section Mobile Styles */
  .live-dealer {
    padding: 50px 0;
  }

  .live-dealer-container {
    padding: 0 15px;
  }

  .live-dealer-header h2 {
    font-size: 2.2rem;
  }

  .live-dealer-subtitle {
    font-size: 1.1rem;
  }

  .live-dealer-badges {
    gap: 15px;
  }

  .badge-live, .badge-hd, .badge-australian {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .live-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px 20px;
  }

  .live-stat {
    padding: 15px;
  }

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

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

  .live-dealer-content {
    gap: 40px;
  }

  .live-features-section h3,
  .live-games-section h3,
  .live-providers-section h3,
  .live-benefits-section h3 {
    font-size: 1.8rem;
  }

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

  .feature-card {
    padding: 20px;
  }

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

  .feature-card h4 {
    font-size: 1.2rem;
  }

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

  .game-card.featured {
    transform: none;
  }

  .game-image {
    height: 150px;
  }

  .game-provider-image {
    object-fit: cover;
    object-position: center;
  }

  .game-content {
    padding: 20px;
  }

  .game-content h4 {
    font-size: 1.3rem;
  }

  .game-stats {
    flex-direction: column;
    gap: 10px;
  }

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

  .provider-card {
    padding: 20px;
  }

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

  .benefit-item {
    padding: 20px;
  }

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

  .live-cta-section {
    padding: 30px 20px;
  }

  .live-cta-section h3 {
    font-size: 1.8rem;
  }

  .live-cta-section p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Responsive styles for new sections */
  .introduction-content h2 {
    font-size: 2rem;
  }

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

  .about-us-content h2 {
    font-size: 2.2rem;
  }

  .h2-description {
    font-size: 1.1rem;
  }

  .slots-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .slots-section {
    padding: 20px;
  }

  .slots-section h3 {
    font-size: 1.5rem;
  }

  .bonus-intro {
    padding: 25px;
  }

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

  .bonus-intro h3 {
    font-size: 1.3rem;
  }

  .table-games-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .live-dealer-content h2 {
    font-size: 2.2rem;
  }

  .live-dealer-section {
    padding: 25px;
  }

  .live-dealer-section h3 {
    font-size: 1.5rem;
  }

  .video-poker-content h2 {
    font-size: 2.2rem;
  }

  .video-poker-section {
    padding: 25px;
  }

  .video-poker-section h3 {
    font-size: 1.5rem;
  }
}

/* ===== 3D ICONS STYLING ===== */
.icon-3d {
  display: inline-block;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.icon-3d::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, rgba(226, 198, 102, 0.2), rgba(205, 159, 54, 0.2));
  border-radius: 50%;
  transform: translateZ(-5px);
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.2),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.icon-3d:hover {
  transform: translateY(-5px) rotateY(15deg) rotateX(5deg) scale(1.15);
  filter: drop-shadow(0 8px 16px rgba(226, 198, 102, 0.6));
}

.icon-3d:hover::before {
  box-shadow: 
    0 12px 24px rgba(226, 198, 102, 0.5),
    inset 0 3px 6px rgba(255, 255, 255, 0.3),
    inset 0 -3px 6px rgba(0, 0, 0, 0.4);
}

/* Section Header Icons */
.section-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.section-icon-wrapper .icon-3d {
  width: 100px;
  height: 100px;
  font-size: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(226, 198, 102, 0.2), rgba(205, 159, 54, 0.2));
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  box-shadow: 
    0 10px 30px rgba(226, 198, 102, 0.4),
    inset 0 2px 5px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.section-icon-wrapper .icon-3d {
  color: var(--primary-color);
  position: relative;
  z-index: 2;
}

.section-icon-wrapper .icon-3d::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 20%;
  width: 30%;
  height: 30%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  filter: blur(10px);
  z-index: 0;
}

/* Promo Item Icons */
.promo-item {
  position: relative;
}

.promo-icon-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(226, 198, 102, 0.9), rgba(205, 159, 54, 0.9));
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  box-shadow: 
    0 5px 15px rgba(0, 0, 0, 0.5),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.promo-icon-overlay .icon-3d {
  font-size: 1.5rem;
  color: var(--secondary-color);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.promo-icon-overlay .icon-3d::before {
  display: none;
}

.promo-item:hover .promo-icon-overlay {
  transform: scale(1.2) rotate(15deg);
  box-shadow: 
    0 8px 20px rgba(226, 198, 102, 0.6),
    inset 0 2px 4px rgba(255, 255, 255, 0.4);
}


/* ===== NEW BONUS SECTION DESIGN ===== */
.bonus-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.bonus-header-section h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(226, 198, 102, 0.3);
  margin-top: 20px;
}

.bonus-header-section h3 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 25px;
  font-weight: 500;
}

.table-games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.table-game-card {
  background: linear-gradient(145deg, rgba(17, 17, 17, 0.9), rgba(0, 0, 0, 0.9));
  border: 2px solid rgba(226, 198, 102, 0.2);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.table-game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(226, 198, 102, 0.1), transparent);
  transition: left 0.5s;
}

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

.table-game-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(226, 198, 102, 0.4);
}

.table-game-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(226, 198, 102, 0.2), rgba(205, 159, 54, 0.2));
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.table-game-icon .icon-3d {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.table-game-card h4 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.table-game-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.bonus-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.promo-item {
  border-radius: 15px;
  overflow: visible;
  transition: transform 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(226, 198, 102, 0.1);
  position: relative;
}

.promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(226, 198, 102, 0.3);
}

.promo-item img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.promo-item:hover img {
  transform: scale(1.05);
}

.bonus-main-banner {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

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

.bonus-main-banner img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  display: block;
}

/* ===== NEW LIVE DEALER SECTION DESIGN ===== */
.live-dealer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.live-dealer-header {
  text-align: center;
  margin-bottom: 60px;
}

.live-dealer-header h2 {
  font-size: 3.2rem;
  color: var(--primary-color);
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(226, 198, 102, 0.3);
  margin-bottom: 20px;
  margin-top: 20px;
  background: linear-gradient(135deg, var(--primary-color), #ff6b6b, var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.live-dealer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.live-feature-box,
.live-games-box {
  background: linear-gradient(145deg, rgba(17, 17, 17, 0.95), rgba(0, 0, 0, 0.95));
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 25px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.live-feature-box::before,
.live-games-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff0000, #ff6b6b, #ff0000);
}

.live-feature-box h3,
.live-games-box h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
}

.live-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.live-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  border-left: 4px solid #ff6b6b;
  transition: all 0.3s ease;
}

.live-feature-item:hover {
  transform: translateX(10px);
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 5px 20px rgba(255, 107, 107, 0.2);
}

.live-feature-item .icon-3d {
  font-size: 2.5rem;
  color: #ff6b6b;
  flex-shrink: 0;
}

.live-feature-item h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.live-feature-item p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.live-games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.live-game-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 0, 0, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
}

.live-game-item:hover {
  background: rgba(255, 0, 0, 0.2);
  transform: translateX(10px);
  border-color: #ff6b6b;
}

.live-game-item .icon-3d {
  font-size: 2rem;
  color: #ff6b6b;
  flex-shrink: 0;
}

.live-game-item strong {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 600;
}

/* ===== NEW VIDEO POKER SECTION DESIGN ===== */
.video-poker-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.video-poker-header {
  text-align: center;
  margin-bottom: 60px;
}

.video-poker-header h2 {
  font-size: 3.2rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 25px;
  margin-top: 20px;
  text-shadow: 0 2px 8px rgba(226, 198, 102, 0.3);
  background: linear-gradient(135deg, var(--primary-color), #9b59b6, var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-poker-intro {
  font-size: 1.2rem;
  color: var(--text-primary);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.video-poker-variants {
  background: linear-gradient(145deg, rgba(17, 17, 17, 0.95), rgba(0, 0, 0, 0.95));
  border: 2px solid rgba(155, 89, 182, 0.3);
  border-radius: 25px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.video-poker-variants::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #9b59b6, #8e44ad, #9b59b6);
}

.video-poker-variants h3 {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 40px;
  font-weight: 600;
  text-align: center;
}

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

.poker-variant-card {
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.6), rgba(17, 17, 17, 0.6));
  border: 2px solid rgba(155, 89, 182, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.poker-variant-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(155, 89, 182, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.poker-variant-card:hover::after {
  opacity: 1;
}

.poker-variant-card:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: #9b59b6;
  box-shadow: 0 20px 50px rgba(155, 89, 182, 0.4);
}

.poker-variant-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.2), rgba(142, 68, 173, 0.2));
  border-radius: 50%;
  border: 3px solid #9b59b6;
  position: relative;
  z-index: 1;
}

.poker-variant-icon .icon-3d {
  font-size: 3rem;
  color: #9b59b6;
}

.poker-variant-card h4 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.poker-variant-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Responsive styles for new sections */
@media (max-width: 1024px) {
  .table-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .live-dealer-main {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .bonus-header-section h2 {
    font-size: 2.2rem;
  }

  .table-games-grid {
    grid-template-columns: 1fr;
  }

  .bonus-promo-grid {
    grid-template-columns: 1fr;
  }

  .live-dealer-header h2 {
    font-size: 2.2rem;
  }

  .video-poker-header h2 {
    font-size: 2.2rem;
  }

  .poker-variants-grid {
    grid-template-columns: 1fr;
  }

  .video-poker-variants {
    padding: 30px 20px;
  }
}