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

/* Breadcrumbs */
.breadcrumbs {
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(157, 0, 255, 0.2);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.9rem;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.breadcrumb-list li::after {
  content: '›';
  color: var(--joker-green);
  font-size: 1.2rem;
  margin-left: 12px;
}

.breadcrumb-list li:last-child::after {
  display: none;
}

.breadcrumb-list a {
  color: var(--joker-green);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-list a:hover {
  color: var(--joker-gold);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.breadcrumb-list span {
  color: rgba(255, 255, 255, 0.8);
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.95) 0%, rgba(0, 255, 136, 0.15) 100%);
  border-bottom: 2px solid rgba(0, 255, 136, 0.3);
  padding: 14px 40px;
  position: relative;
  overflow: hidden;
  z-index: 100;
}

.announcement-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--joker-purple), var(--joker-green), var(--joker-purple));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.announcement-bar.hidden {
  display: none;
}

.announcement-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.announcement-icon {
  font-size: 1.5rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 10px var(--joker-green));
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.announcement-text {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.announcement-highlight {
  color: var(--joker-green);
  font-weight: 700;
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

.announcement-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--joker-green) 0%, #00cc70 100%);
  color: #000000;
  border-radius: 25px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.5);
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: 2px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.announcement-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.7);
  background: linear-gradient(135deg, #00cc70 0%, var(--joker-green) 100%);
  color: #000000;
  border-color: rgba(0, 0, 0, 0.3);
}

.announcement-close {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.announcement-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--joker-green);
  color: var(--joker-green);
  transform: rotate(90deg);
}

.announcement-close i {
  font-size: 1.1rem;
}

:root {
  --primary-color: #FBB1F7;
  --secondary-color: #000000;
  --third-color: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --accent-primary: #740083;
  --joker-purple: #9D00FF;
  --joker-green: #00FF88;
  --joker-red: #FF0040;
  --joker-gold: #FFD700;
  --joker-dark: #1a0033;
}

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

body {
  font-family: 'Ubuntu', sans-serif;
  background-image: linear-gradient(rgba(26, 0, 51, 0.85), rgba(0, 0, 0, 0.9)), url(../images/background.gif);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-primary);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(157, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

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

.btn {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.3) 0%, rgba(0, 255, 136, 0.2) 100%);
  z-index: 1;
}

.navbar {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(157, 0, 255, 0.3);
  border-bottom: 2px solid var(--joker-purple);
}

.navbar .logo img {
  height: 55px;
  align-items: center;
  filter: drop-shadow(0 0 10px var(--joker-purple));
  transition: transform 0.3s ease;
}

.navbar .logo img:hover {
  transform: scale(1.05);
}

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

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

.navbar-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--joker-purple), var(--joker-green));
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.navbar-menu li a:hover {
  color: var(--joker-green);
  background: rgba(157, 0, 255, 0.1);
}

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

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

.btn-login {
  background: linear-gradient(135deg, var(--text-primary) 0%, #e0e0e0 100%);
  color: #000000;
  border: 2px solid var(--text-primary);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
  font-weight: 800;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  letter-spacing: 1.2px;
}

.btn-login:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(224, 224, 224, 0.95) 100%);
  color: #000000;
  box-shadow: 0 6px 25px rgba(157, 0, 255, 0.6), 0 0 30px rgba(157, 0, 255, 0.4);
  border-color: var(--joker-purple);
  transform: translateY(-2px) scale(1.02);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.btn-register {
  background: linear-gradient(135deg, var(--joker-purple) 0%, var(--accent-primary) 100%);
  color: #FFFFFF;
  border: 2px solid var(--joker-purple);
  box-shadow: 0 4px 20px rgba(157, 0, 255, 0.5), 0 0 30px rgba(157, 0, 255, 0.3);
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7), 0 0 15px rgba(157, 0, 255, 0.5);
  letter-spacing: 1.2px;
}

.btn-register:hover {
  background: linear-gradient(135deg, var(--joker-green) 0%, #00cc70 100%);
  border-color: var(--joker-green);
  box-shadow: 0 8px 35px rgba(0, 255, 136, 0.7), 0 0 40px rgba(0, 255, 136, 0.5);
  transform: translateY(-3px) scale(1.03);
  color: #FFFFFF;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 255, 136, 0.6);
}

main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--joker-purple) 0%, var(--joker-dark) 50%, var(--third-color) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  padding: 80px 60px;
  margin-top: 30px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(157, 0, 255, 0.4), inset 0 0 60px rgba(0, 255, 136, 0.1);
  border: 2px solid transparent;
  background-clip: padding-box;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero::before {
  content: '♠️♥️♦️♣️';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.8s ease;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.4) 0%, rgba(0, 255, 136, 0.3) 100%);
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 30px;
  border: 2px solid rgba(157, 0, 255, 0.5);
  backdrop-filter: blur(10px);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.8s ease 0.2s both;
  box-shadow: 0 4px 15px rgba(157, 0, 255, 0.4);
}

.badge-icon {
  font-size: 1.2rem;
  color: var(--joker-green);
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 10px rgba(0, 255, 136, 0.8));
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  transform: perspective(100px) rotateX(-5deg);
  animation: rotate 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

@keyframes rotate {
  0%, 100% { transform: perspective(100px) rotateX(-5deg) rotate(0deg); }
  25% { transform: perspective(100px) rotateX(-5deg) rotate(-10deg); }
  75% { transform: perspective(100px) rotateX(-5deg) rotate(10deg); }
}

.hero-content h1 {
  font-size: 2.8rem;
  color: #FFFFFF;
  margin-bottom: 30px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(157, 0, 255, 0.6);
  line-height: 1.4;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-description {
  margin-bottom: 40px;
  color: #FFFFFF;
  font-size: 1.4rem;
  line-height: 1.9;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 0.8s ease 0.4s both;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  padding: 25px 30px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.5s both;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.15) 0%, rgba(17, 17, 17, 0.6) 100%);
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid rgba(157, 0, 255, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.hero-feature-item:hover {
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.25) 0%, rgba(17, 17, 17, 0.8) 100%);
  border-color: var(--joker-green);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(157, 0, 255, 0.4);
}

.hero-feature-item i {
  font-size: 1.5rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 8px var(--joker-green));
  transition: transform 0.3s ease;
}

.hero-feature-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

.hero-feature-item span {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  color: #FFFFFF;
  border: 2px solid rgba(157, 0, 255, 0.6);
  backdrop-filter: blur(10px);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 0 15px rgba(157, 0, 255, 0.4);
  font-weight: 800;
  letter-spacing: 1.2px;
  box-shadow: 0 4px 15px rgba(157, 0, 255, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.5) 0%, rgba(0, 255, 136, 0.4) 100%);
  border-color: var(--joker-green);
  color: #FFFFFF;
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.6), 0 0 35px rgba(0, 255, 136, 0.4);
  transform: translateY(-3px) scale(1.02);
  text-shadow: 0 3px 15px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 255, 136, 0.6);
}

/* Editorial Credentials Section - E-E-A-T Boost */
.editorial-credentials {
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.6) 0%, rgba(17, 17, 17, 0.9) 100%);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(157, 0, 255, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.editorial-credentials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--joker-purple), var(--joker-green), var(--joker-purple));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.credentials-container {
  display: flex;
  flex-direction: column;
  gap: 35px;
  position: relative;
  z-index: 1;
}

.credentials-main {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.credentials-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.3) 0%, rgba(0, 255, 136, 0.3) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--joker-green);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
}

.credentials-icon i {
  font-size: 2.5rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 15px var(--joker-green));
}

.credentials-content {
  flex: 1;
}

.credentials-content h3 {
  font-size: 2rem;
  color: #FFFFFF;
  margin-bottom: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--joker-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.credentials-intro {
  color: #E8E8E8;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 28px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.credentials-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 22px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border-left: 4px solid var(--joker-purple);
  transition: all 0.3s ease;
}

.credential-item:hover {
  background: rgba(0, 0, 0, 0.4);
  border-left-color: var(--joker-green);
  transform: translateX(5px);
}

.credential-item i {
  font-size: 1.4rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 8px var(--joker-green));
  flex-shrink: 0;
  margin-top: 2px;
}

.credential-item div {
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.7;
  flex: 1;
}

.credential-item strong {
  color: var(--joker-green);
  font-weight: 700;
  margin-right: 6px;
}

.credential-item time {
  color: var(--joker-green);
  font-weight: 600;
}

.credentials-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 25px;
  border-top: 2px solid rgba(157, 0, 255, 0.2);
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  border: 2px solid rgba(157, 0, 255, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.badge-item:hover {
  border-color: var(--joker-green);
  background: rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.badge-item i {
  font-size: 2rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 12px var(--joker-green));
}

.badge-item span {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Editorial Disclosure */
.credentials-disclosure {
  margin-top: 35px;
  padding: 25px 30px;
  background: rgba(157, 0, 255, 0.15);
  border: 2px solid rgba(157, 0, 255, 0.3);
  border-radius: 15px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.credentials-disclosure:hover {
  border-color: var(--joker-green);
  background: rgba(157, 0, 255, 0.2);
}

.disclosure-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.4) 0%, rgba(0, 255, 136, 0.4) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--joker-green);
}

.disclosure-icon i {
  font-size: 1.5rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 10px var(--joker-green));
}

.disclosure-content {
  flex: 1;
}

.disclosure-content h4 {
  color: var(--joker-gold);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.disclosure-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.disclosure-content p:last-child {
  margin-bottom: 0;
}

.disclosure-content strong {
  color: var(--joker-green);
  font-weight: 700;
}

.credentials-content a,
.disclosure-content a,
.credential-item a {
  color: var(--joker-green);
  text-decoration: underline;
  transition: all 0.3s ease;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
  background: rgba(0, 255, 136, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
}

.credentials-content a:hover,
.disclosure-content a:hover,
.credential-item a:hover {
  color: var(--joker-gold);
  background: rgba(255, 215, 0, 0.2);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.bonus-understanding {
  margin-top: 60px;
  position: relative;
}

.bonus-understanding-wrapper {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.6) 0%, rgba(17, 17, 17, 0.8) 100%);
  padding: 50px 45px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 0 60px rgba(157, 0, 255, 0.1);
  border: 1px solid rgba(157, 0, 255, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.bonus-understanding-wrapper::before {
  content: '🎰💰🎁';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  opacity: 0.08;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

.bonus-understanding-intro {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
  z-index: 1;
}

.bonus-understanding-intro h2 {
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  line-height: 1.4;
  text-align: center;
}

.bonus-understanding-description {
  font-size: 1.15rem;
  color: #FFFFFF;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
  font-weight: 400;
}

.bonus-understanding-content {
  position: relative;
  z-index: 1;
}

.bonus-info-section {
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.15) 0%, rgba(17, 17, 17, 0.7) 100%);
  padding: 40px;
  border-radius: 18px;
  border: 2px solid rgba(157, 0, 255, 0.4);
  box-shadow: 0 8px 30px rgba(157, 0, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.bonus-info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--joker-purple) 0%, var(--joker-green) 100%);
  opacity: 0.8;
}

.bonus-info-section:hover {
  border-color: var(--joker-green);
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.3);
  transform: translateY(-3px);
}

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

.bonus-info-header i {
  font-size: 2.2rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 12px var(--joker-green));
  animation: pulse 2s ease-in-out infinite;
}

.bonus-info-header h3 {
  font-size: 1.8rem;
  color: #FFFFFF;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin: 0;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--joker-green) 50%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.bonus-info-description {
  font-size: 1.1rem;
  color: #FFFFFF;
  line-height: 1.8;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border-left: 3px solid var(--joker-green);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.bonus-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bonus-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.1) 0%, rgba(17, 17, 17, 0.5) 100%);
  border-radius: 12px;
  border: 1px solid rgba(157, 0, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.bonus-info-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--joker-purple) 0%, var(--joker-green) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bonus-info-list li:hover {
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.2) 0%, rgba(17, 17, 17, 0.7) 100%);
  border-color: var(--joker-green);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(157, 0, 255, 0.3);
}

.bonus-info-list li:hover::before {
  opacity: 1;
}

.bonus-info-list .list-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--joker-green);
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 12px rgba(0, 255, 136, 0.8));
  animation: bounce 2s ease-in-out infinite;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  transform: perspective(100px) rotateX(-5deg);
  transition: transform 0.3s ease;
}

.bonus-info-list li:hover .list-icon {
  transform: perspective(100px) rotateX(0deg) scale(1.15);
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 16px rgba(0, 255, 136, 1));
}

@keyframes bounce {
  0%, 100% { transform: perspective(100px) rotateX(-5deg) translateY(0); }
  50% { transform: perspective(100px) rotateX(-5deg) translateY(-5px); }
}

.bonus-info-list li span:not(.list-icon) {
  color: #FFFFFF;
  font-size: 1.05rem;
  line-height: 1.7;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  flex: 1;
}

.bonus-keywords {
  margin-top: 30px;
  padding: 20px 25px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--joker-gold);
  font-size: 0.95rem;
  line-height: 1.8;
  color: #FFFFFF;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.bonus-keywords strong {
  color: var(--joker-gold);
  font-weight: 700;
  font-size: 1rem;
  margin-right: 8px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.games {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 50px 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.5) 0%, rgba(17, 17, 17, 0.8) 100%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(157, 0, 255, 0.3);
  backdrop-filter: blur(10px);
}

.games-intro {
  text-align: center;
}

.games-intro h2 {
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  line-height: 1.4;
  text-align: center;
}

.games-intro-description {
  color: #E8E8E8;
  font-size: 1.15rem;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  text-align: center;
}

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

.game-card {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.6) 0%, rgba(17, 17, 17, 0.9) 100%);
  border-radius: 15px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(157, 0, 255, 0.3);
  position: relative;
}

.game-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.2) 0%, rgba(0, 255, 136, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.game-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 50px rgba(157, 0, 255, 0.6);
  border-color: var(--joker-green);
}

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

.game-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
  display: block;
}

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

.btn-play {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 35px;
  background: linear-gradient(135deg, var(--joker-purple) 0%, var(--accent-primary) 100%);
  color: #FFFFFF;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: relative;
  z-index: 2;
  border: 2px solid var(--joker-purple);
  box-shadow: 0 4px 20px rgba(157, 0, 255, 0.5), 0 0 30px rgba(157, 0, 255, 0.3);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7), 0 0 15px rgba(157, 0, 255, 0.5);
}

.btn-play:hover {
  background: linear-gradient(135deg, var(--joker-green) 0%, #00cc70 100%);
  border-color: var(--joker-green);
  box-shadow: 0 8px 35px rgba(0, 255, 136, 0.7), 0 0 40px rgba(0, 255, 136, 0.5);
  transform: translateY(-3px) scale(1.05);
  color: #FFFFFF;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 255, 136, 0.6);
}

.welcome-bonus {
  margin-top: 60px;
  position: relative;
}

.welcome-bonus-wrapper {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.6) 0%, rgba(17, 17, 17, 0.8) 100%);
  padding: 50px 45px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 0 60px rgba(157, 0, 255, 0.1);
  border: 1px solid rgba(157, 0, 255, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.welcome-bonus-wrapper::before {
  content: '🎁💰🎰';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  opacity: 0.08;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

.welcome-bonus-intro {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.welcome-bonus-intro h2 {
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  line-height: 1.4;
  text-align: center;
}

.welcome-bonus-description {
  color: #E8E8E8;
  font-size: 1.15rem;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.welcome-bonus-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.welcome-bonus-section {
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.15) 0%, rgba(17, 17, 17, 0.7) 100%);
  padding: 35px;
  border-radius: 18px;
  border: 2px solid rgba(157, 0, 255, 0.4);
  box-shadow: 0 8px 30px rgba(157, 0, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.welcome-bonus-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--joker-purple) 0%, var(--joker-green) 100%);
  opacity: 0.8;
}

.welcome-bonus-section:hover {
  border-color: var(--joker-green);
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.3);
  transform: translateY(-5px);
}

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

.welcome-bonus-header i {
  font-size: 2rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 12px var(--joker-green));
  animation: pulse 2s ease-in-out infinite;
}

.welcome-bonus-header h3 {
  font-size: 1.7rem;
  color: #FFFFFF;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin: 0;
}

.welcome-bonus-section-description {
  font-size: 1.05rem;
  color: #E8E8E8;
  line-height: 1.7;
  margin-bottom: 25px;
  padding: 15px 18px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border-left: 3px solid var(--joker-green);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.welcome-bonus-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.welcome-bonus-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.1) 0%, rgba(17, 17, 17, 0.5) 100%);
  border-radius: 12px;
  border: 1px solid rgba(157, 0, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.welcome-bonus-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--joker-purple) 0%, var(--joker-green) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.welcome-bonus-list li:hover {
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.2) 0%, rgba(17, 17, 17, 0.7) 100%);
  border-color: var(--joker-green);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(157, 0, 255, 0.3);
}

.welcome-bonus-list li:hover::before {
  opacity: 1;
}

.welcome-bonus-list .list-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  color: var(--joker-green);
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 12px rgba(0, 255, 136, 0.8));
  animation: bounce 2s ease-in-out infinite;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  transform: perspective(100px) rotateX(-5deg);
  transition: transform 0.3s ease;
}

.welcome-bonus-list li:hover .list-icon {
  transform: perspective(100px) rotateX(0deg) scale(1.15);
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 16px rgba(0, 255, 136, 1));
}

.welcome-bonus-list li span:not(.list-icon) {
  color: #FFFFFF;
  font-size: 1.05rem;
  line-height: 1.7;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  flex: 1;
}

/* Live Activity Section - Engagement Boost */
.live-activity-section {
  margin-top: 60px;
  margin-bottom: 60px;
  position: relative;
}

.live-activity-wrapper {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.8) 0%, rgba(17, 17, 17, 0.95) 100%);
  padding: 50px 40px;
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(157, 0, 255, 0.4), inset 0 0 60px rgba(0, 255, 136, 0.1);
  border: 2px solid rgba(157, 0, 255, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.live-activity-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--joker-purple), var(--joker-green), var(--joker-purple));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

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

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 0, 0, 0.2);
  border: 2px solid rgba(255, 0, 0, 0.5);
  border-radius: 25px;
  margin-bottom: 20px;
}

.live-dot {
  width: 10px;
  height: 10px;
  background: #FF0000;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
}

.live-text {
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

.live-header h2 {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 12px;
  font-weight: 700;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  background: linear-gradient(135deg, #FFFFFF 0%, var(--joker-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.live-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.live-feed-container {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 35px;
  border: 1px solid rgba(157, 0, 255, 0.2);
  max-height: 500px;
  overflow-y: auto;
  position: relative;
}

.live-feed-container::-webkit-scrollbar {
  width: 8px;
}

.live-feed-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.live-feed-container::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--joker-purple), var(--joker-green));
  border-radius: 4px;
}

.live-feed {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.live-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border-left: 4px solid var(--joker-green);
  transition: all 0.3s ease;
  animation: slideInRight 0.5s ease-out;
  position: relative;
}

.live-item:hover {
  background: rgba(0, 0, 0, 0.5);
  border-left-color: var(--joker-gold);
  transform: translateX(5px);
  box-shadow: 0 4px 20px rgba(157, 0, 255, 0.3);
}

.live-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--joker-green);
  border-radius: 0 4px 4px 0;
  animation: pulse 2s ease-in-out infinite;
}

.live-item-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.3) 0%, rgba(0, 255, 136, 0.3) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--joker-green);
}

.live-item-icon i {
  font-size: 1.5rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 10px var(--joker-green));
}

.live-item-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.live-player {
  color: var(--joker-gold);
  font-weight: 700;
  font-size: 1.05rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
}

.live-action {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.live-amount {
  color: var(--joker-green);
  font-weight: 700;
  font-size: 1.15rem;
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

.live-time {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  flex-shrink: 0;
}

.live-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 35px;
}

.live-stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 25px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  border: 2px solid rgba(157, 0, 255, 0.3);
  transition: all 0.3s ease;
}

.live-stat-item:hover {
  border-color: var(--joker-green);
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.stat-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.4) 0%, rgba(0, 255, 136, 0.4) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--joker-green);
}

.stat-icon i {
  font-size: 1.8rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 12px var(--joker-green));
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-number {
  color: var(--joker-gold);
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
}

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

.live-cta-btn {
  padding: 18px 45px;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  box-shadow: 0 6px 25px rgba(157, 0, 255, 0.6), 0 0 35px rgba(157, 0, 255, 0.4);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7), 0 0 15px rgba(157, 0, 255, 0.5);
}

.live-cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.7), 0 0 45px rgba(0, 255, 136, 0.5);
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 255, 136, 0.6);
}

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

/* Section 3: Free Spins & No Deposit Bonuses - Card Grid Design */
.free-spins-section {
  margin-top: 60px;
}

.free-spins-wrapper {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.6) 0%, rgba(17, 17, 17, 0.8) 100%);
  padding: 50px 45px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(157, 0, 255, 0.3);
  backdrop-filter: blur(10px);
}

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

.free-spins-intro h2 {
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  line-height: 1.4;
}

.free-spins-description {
  color: #E8E8E8;
  font-size: 1.15rem;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

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

.free-spins-card {
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.15) 0%, rgba(17, 17, 17, 0.7) 100%);
  padding: 30px;
  border-radius: 18px;
  border: 2px solid rgba(157, 0, 255, 0.4);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.free-spins-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--joker-purple) 0%, var(--joker-green) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.free-spins-card:hover::before {
  transform: scaleX(1);
}

.free-spins-card:hover {
  transform: translateY(-8px);
  border-color: var(--joker-green);
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
}

.free-spins-card.accent-card {
  border-color: var(--joker-gold);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(17, 17, 17, 0.7) 100%);
}

.card-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.3) 0%, rgba(0, 255, 136, 0.3) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--joker-green);
}

.card-icon-wrapper i {
  font-size: 2rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 12px var(--joker-green));
}

.free-spins-card h3 {
  font-size: 1.6rem;
  color: #FFFFFF;
  margin-bottom: 18px;
  text-align: center;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.card-highlight {
  font-size: 1.1rem;
  color: var(--joker-green);
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border-left: 3px solid var(--joker-green);
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-list li {
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 5px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.card-list li i {
  color: var(--joker-green);
  margin-top: 4px;
  flex-shrink: 0;
}

/* Section 4: Cashback & Reload Offers - Split Layout Design */
.cashback-section {
  margin-top: 60px;
}

.cashback-wrapper {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.6) 0%, rgba(17, 17, 17, 0.8) 100%);
  padding: 50px 45px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(157, 0, 255, 0.3);
  backdrop-filter: blur(10px);
}

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

.cashback-intro h2 {
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  line-height: 1.4;
}

.cashback-description {
  color: #E8E8E8;
  font-size: 1.15rem;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.cashback-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.cashback-left,
.cashback-right {
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.15) 0%, rgba(17, 17, 17, 0.7) 100%);
  padding: 35px;
  border-radius: 18px;
  border: 2px solid rgba(157, 0, 255, 0.4);
}

.cashback-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(157, 0, 255, 0.3);
}

.cashback-header i {
  font-size: 2rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 12px var(--joker-green));
}

.cashback-header h3 {
  font-size: 1.7rem;
  color: #FFFFFF;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.cashback-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border-left: 3px solid var(--joker-green);
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateX(5px);
}

.detail-item i {
  font-size: 1.5rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 8px var(--joker-green));
  flex-shrink: 0;
}

.detail-item span {
  color: #FFFFFF;
  font-size: 1.05rem;
  line-height: 1.7;
}

.fastspin-advantage {
  margin-top: 30px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(157, 0, 255, 0.15) 100%);
  border-radius: 15px;
  border: 2px solid var(--joker-gold);
  text-align: center;
}

.fastspin-advantage i {
  font-size: 2.5rem;
  color: var(--joker-gold);
  filter: drop-shadow(0 0 15px var(--joker-gold));
  margin-bottom: 15px;
  display: block;
}

.fastspin-advantage h4 {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 12px;
  font-weight: 700;
}

.fastspin-advantage p {
  color: #E8E8E8;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

/* Section 5: VIP & Loyalty Rewards - Large Icon + Card Design */
.vip-section {
  margin-top: 60px;
}

.vip-wrapper {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.6) 0%, rgba(17, 17, 17, 0.8) 100%);
  padding: 50px 45px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(157, 0, 255, 0.3);
  backdrop-filter: blur(10px);
}

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

.vip-intro h2 {
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  line-height: 1.4;
}

.vip-description {
  color: #E8E8E8;
  font-size: 1.15rem;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

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

.vip-icon-large {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(157, 0, 255, 0.3) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--joker-gold);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

.vip-icon-large i {
  font-size: 4rem;
  color: var(--joker-gold);
  filter: drop-shadow(0 0 20px var(--joker-gold));
}

.vip-left h3 {
  font-size: 1.8rem;
  color: #FFFFFF;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 700;
}

.vip-subtitle {
  color: #E8E8E8;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 25px;
}

.vip-perks {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.2) 0%, rgba(17, 17, 17, 0.6) 100%);
  border-radius: 12px;
  border: 1px solid rgba(157, 0, 255, 0.3);
  transition: all 0.3s ease;
}

.perk-item:hover {
  border-color: var(--joker-gold);
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.perk-item i {
  font-size: 1.8rem;
  color: var(--joker-gold);
  filter: drop-shadow(0 0 10px var(--joker-gold));
  flex-shrink: 0;
}

.perk-item span {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 500;
}

.vip-program-card {
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.2) 0%, rgba(17, 17, 17, 0.8) 100%);
  padding: 35px;
  border-radius: 18px;
  border: 2px solid rgba(157, 0, 255, 0.4);
  box-shadow: 0 8px 30px rgba(157, 0, 255, 0.2);
}

.vip-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(157, 0, 255, 0.3);
}

.vip-card-header i {
  font-size: 2.2rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 12px var(--joker-green));
}

.vip-card-header h3 {
  font-size: 1.7rem;
  color: #FFFFFF;
  font-weight: 700;
  margin: 0;
}

.vip-card-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vip-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.vip-feature:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateX(5px);
}

.vip-feature i {
  font-size: 1.5rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 8px var(--joker-green));
  flex-shrink: 0;
  margin-top: 2px;
}

.vip-feature span {
  color: #FFFFFF;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Section 6: Understanding Wagering Requirements - Calculator Style */
.wagering-section {
  margin-top: 60px;
}

.wagering-wrapper {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.6) 0%, rgba(17, 17, 17, 0.8) 100%);
  padding: 50px 45px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(157, 0, 255, 0.3);
  backdrop-filter: blur(10px);
}

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

.wagering-intro h2 {
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  line-height: 1.4;
}

.wagering-description {
  color: #E8E8E8;
  font-size: 1.15rem;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.wagering-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.wagering-example {
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.15) 0%, rgba(17, 17, 17, 0.7) 100%);
  padding: 35px;
  border-radius: 18px;
  border: 2px solid rgba(157, 0, 255, 0.4);
}

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

.example-header i {
  font-size: 2rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 12px var(--joker-green));
}

.example-header h3 {
  font-size: 1.7rem;
  color: #FFFFFF;
  font-weight: 700;
  margin: 0;
}

.example-text {
  color: #E8E8E8;
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.8;
}

.example-box {
  background: rgba(0, 0, 0, 0.5);
  padding: 25px;
  border-radius: 15px;
  border: 2px solid var(--joker-green);
}

.example-label {
  color: var(--joker-green);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-align: center;
}

.example-formula {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 1.3rem;
}

.formula-part {
  color: #FFFFFF;
  font-weight: 600;
  padding: 10px 20px;
  background: rgba(157, 0, 255, 0.3);
  border-radius: 10px;
}

.formula-operator {
  color: var(--joker-green);
  font-size: 1.8rem;
  font-weight: 700;
}

.formula-result {
  color: var(--joker-gold);
  font-weight: 700;
  padding: 10px 20px;
  background: rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  border: 2px solid var(--joker-gold);
}

.wagering-tips {
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.15) 0%, rgba(17, 17, 17, 0.7) 100%);
  padding: 35px;
  border-radius: 18px;
  border: 2px solid rgba(157, 0, 255, 0.4);
}

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

.tips-header i {
  font-size: 2rem;
  color: var(--joker-gold);
  filter: drop-shadow(0 0 12px var(--joker-gold));
}

.tips-header h3 {
  font-size: 1.7rem;
  color: #FFFFFF;
  font-weight: 700;
  margin: 0;
}

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

.tip-card {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(157, 0, 255, 0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
  border-color: var(--joker-green);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.tip-card i {
  font-size: 2rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 10px var(--joker-green));
  margin-bottom: 12px;
  display: block;
}

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

.wagering-transparency {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(17, 17, 17, 0.7) 100%);
  padding: 30px;
  border-radius: 18px;
  border: 2px solid var(--joker-green);
  text-align: center;
}

.transparency-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.transparency-badge i {
  font-size: 2rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 12px var(--joker-green));
}

.transparency-badge h3 {
  font-size: 1.7rem;
  color: #FFFFFF;
  font-weight: 700;
  margin: 0;
}

.wagering-transparency p {
  color: #E8E8E8;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
}

/* Section 7: How to Choose the Right Bonus - Player Types + Checklist */
.choose-bonus-section {
  margin-top: 60px;
}

.choose-bonus-wrapper {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.6) 0%, rgba(17, 17, 17, 0.8) 100%);
  padding: 50px 45px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(157, 0, 255, 0.3);
  backdrop-filter: blur(10px);
}

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

.choose-bonus-intro h2 {
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  line-height: 1.4;
}

.choose-bonus-description {
  color: #E8E8E8;
  font-size: 1.15rem;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.choose-bonus-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 35px;
}

.player-types h3 {
  font-size: 1.6rem;
  color: #FFFFFF;
  margin-bottom: 25px;
  font-weight: 700;
  text-align: center;
}

.player-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.player-card {
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.15) 0%, rgba(17, 17, 17, 0.7) 100%);
  padding: 30px 20px;
  border-radius: 18px;
  border: 2px solid rgba(157, 0, 255, 0.4);
  text-align: center;
  transition: all 0.4s ease;
}

.player-card:hover {
  transform: translateY(-8px);
  border-color: var(--joker-green);
  box-shadow: 0 12px 35px rgba(0, 255, 136, 0.3);
}

.player-card i {
  font-size: 3rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 15px var(--joker-green));
  margin-bottom: 15px;
  display: block;
}

.player-card h4 {
  font-size: 1.4rem;
  color: #FFFFFF;
  margin-bottom: 12px;
  font-weight: 700;
}

.player-card p {
  color: #E8E8E8;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.bonus-checklist {
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.2) 0%, rgba(17, 17, 17, 0.8) 100%);
  padding: 30px;
  border-radius: 18px;
  border: 2px solid rgba(157, 0, 255, 0.4);
  position: sticky;
  top: 100px;
}

.checklist-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(157, 0, 255, 0.3);
}

.checklist-header i {
  font-size: 1.8rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 10px var(--joker-green));
}

.checklist-header h3 {
  font-size: 1.5rem;
  color: #FFFFFF;
  font-weight: 700;
  margin: 0;
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border-left: 3px solid var(--joker-green);
  transition: all 0.3s ease;
}

.checklist-item:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateX(5px);
}

.checklist-item i {
  font-size: 1.3rem;
  color: var(--joker-green);
  flex-shrink: 0;
}

.checklist-item span {
  color: #FFFFFF;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Section 8: Responsible Play - Icon Boxes Design */
.responsible-bonus-section {
  margin-top: 60px;
}

.responsible-bonus-wrapper {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.6) 0%, rgba(17, 17, 17, 0.8) 100%);
  padding: 50px 45px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(0, 255, 136, 0.4);
  backdrop-filter: blur(10px);
}

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

.responsible-bonus-intro h2 {
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  line-height: 1.4;
}

.responsible-bonus-description {
  color: #E8E8E8;
  font-size: 1.15rem;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.responsible-bonus-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.responsible-main,
.responsible-keep-fun {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(17, 17, 17, 0.7) 100%);
  padding: 35px;
  border-radius: 18px;
  border: 2px solid rgba(0, 255, 136, 0.4);
  text-align: center;
}

.responsible-icon-box,
.fun-icon-box {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.3) 0%, rgba(157, 0, 255, 0.3) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--joker-green);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
}

.responsible-icon-box i,
.fun-icon-box i {
  font-size: 3rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 15px var(--joker-green));
}

.responsible-main h3,
.responsible-keep-fun h3 {
  font-size: 1.7rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
}

.responsible-list,
.fun-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.responsible-list li,
.fun-list li {
  color: #FFFFFF;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  padding: 12px 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.responsible-list li:hover,
.fun-list li:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateX(5px);
}

.responsible-list li i {
  color: var(--joker-green);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.fun-list li i {
  color: var(--joker-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Section 9: Bonus Terms Summary - Table Design */
.bonus-terms-section {
  margin-top: 60px;
}

.bonus-terms-wrapper {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.6) 0%, rgba(17, 17, 17, 0.8) 100%);
  padding: 50px 45px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(157, 0, 255, 0.3);
  backdrop-filter: blur(10px);
}

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

.bonus-terms-intro h2 {
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  line-height: 1.4;
}

.bonus-terms-description {
  color: #E8E8E8;
  font-size: 1.15rem;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.terms-table-container {
  overflow-x: auto;
  border-radius: 15px;
  border: 2px solid rgba(157, 0, 255, 0.4);
}

.bonus-terms-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(0, 0, 0, 0.3);
}

.bonus-terms-table thead {
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.3) 0%, rgba(0, 255, 136, 0.2) 100%);
}

.bonus-terms-table th {
  padding: 20px;
  text-align: left;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom: 2px solid rgba(157, 0, 255, 0.5);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.bonus-terms-table tbody tr {
  border-bottom: 1px solid rgba(157, 0, 255, 0.2);
  transition: all 0.3s ease;
}

.bonus-terms-table tbody tr:hover {
  background: rgba(157, 0, 255, 0.1);
}

.bonus-terms-table td {
  padding: 18px 20px;
  color: #FFFFFF;
  font-size: 1.05rem;
  line-height: 1.7;
}

.bonus-terms-table td strong {
  color: var(--joker-green);
  font-weight: 700;
}

.bonus-terms-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.2);
}

/* FAQ Section - Joker Theme Design */
.faq {
  margin-top: 60px;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.5) 0%, rgba(17, 17, 17, 0.8) 100%);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(157, 0, 255, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--joker-purple), var(--joker-green), var(--joker-purple));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

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

.faq-intro h3 {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin: 0;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  background: linear-gradient(135deg, #FFFFFF 0%, var(--joker-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* FAQ Tabs */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(157, 0, 255, 0.2);
  position: relative;
  z-index: 1;
}

.faq-tab {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.6) 0%, rgba(17, 17, 17, 0.9) 100%);
  border: 2px solid rgba(157, 0, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 22px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

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

.faq-tab:hover {
  color: #FFFFFF;
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 4px 15px rgba(157, 0, 255, 0.3);
  transform: translateY(-2px);
}

.faq-tab:hover::before {
  left: 100%;
}

.faq-tab.active {
  color: #FFFFFF;
  border-color: var(--joker-green);
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.3) 0%, rgba(0, 255, 136, 0.2) 100%);
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
}

.faq-tab.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, var(--joker-purple), var(--joker-green));
  border-radius: 2px;
  box-shadow: 0 0 10px var(--joker-green);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 400px;
  position: relative;
  z-index: 1;
}

.faq-segment {
  display: none;
  animation: fadeIn 0.4s ease;
}

.faq-segment.active {
  display: block;
}

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

.faq-segment-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.6) 0%, rgba(17, 17, 17, 0.8) 100%);
  border-radius: 15px;
  border: 2px solid rgba(157, 0, 255, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

.faq-item:hover {
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 8px 25px rgba(157, 0, 255, 0.4);
  transform: translateX(3px);
}

.faq-item.active {
  border-color: var(--joker-green);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
}

.faq-item.active::before {
  transform: scaleY(1);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(157, 0, 255, 0.1);
}

.faq-item.active .faq-question {
  background: rgba(0, 255, 136, 0.1);
}

.faq-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--joker-purple) 0%, var(--joker-green) 100%);
  color: #FFFFFF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(157, 0, 255, 0.5);
  transition: all 0.3s ease;
}

.faq-item.active .faq-number {
  background: linear-gradient(135deg, var(--joker-green) 0%, #00cc70 100%);
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.6);
  transform: scale(1.05);
}

.faq-question h4 {
  flex: 1;
  font-size: 1.3rem;
  color: #FFFFFF;
  margin: 0;
  font-weight: 700;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--joker-green);
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.5));
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--joker-green);
  filter: drop-shadow(0 0 12px rgba(0, 255, 136, 0.8));
}

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

.faq-item.active .faq-answer {
  max-height: 2000px;
  opacity: 1;
  padding: 0 30px 30px 30px;
  padding-left: 110px;
}

.faq-answer p {
  color: #E8E8E8;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.faq-answer p:last-of-type {
  margin-bottom: 20px;
}

.faq-answer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-answer ul li {
  color: #E8E8E8;
  font-size: 1.05rem;
  line-height: 1.7;
  padding-left: 25px;
  position: relative;
}

.faq-answer ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--joker-green) 0%, #00cc70 100%);
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.faq-answer strong {
  color: var(--joker-green);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.faq-keywords {
  margin-top: 24px;
  padding: 18px 22px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  border-left: 3px solid var(--joker-gold);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  color: #E8E8E8;
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.faq-keywords strong {
  color: var(--joker-gold);
  font-size: 1.05rem;
  margin-right: 8px;
  font-style: normal;
  font-weight: 600;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--joker-purple) 0%, var(--joker-green) 100%);
  border: 2px solid var(--joker-green);
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(157, 0, 255, 0.5), 0 0 30px rgba(0, 255, 136, 0.3);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, var(--joker-green) 0%, #00cc70 100%);
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(0, 255, 136, 0.7), 0 0 40px rgba(0, 255, 136, 0.5);
}

.scroll-to-top:active {
  transform: translateY(-2px) scale(0.95);
}

.scroll-to-top i {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
  transform: translateY(-2px);
}

.footer {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
  padding: 50px 20px;
  margin-top: 60px;
  border-top: 2px solid var(--joker-purple);
  box-shadow: 0 -4px 20px rgba(157, 0, 255, 0.3);
}

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

.footer-logo img {
  height: 60px;
  filter: drop-shadow(0 0 15px var(--joker-purple));
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.1);
}

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

.footer-links a {
  color: #E0E0E0;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 20px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.footer-links a:hover {
  color: var(--joker-green);
  background: rgba(157, 0, 255, 0.2);
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

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

.footer-copy a {
  color: var(--joker-green);
  transition: color 0.3s ease;
}

.footer-copy a:hover {
  color: var(--joker-purple);
}

/* Engagement Enhancement - Pulse Animation */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.8);
  }
}

.btn-register {
  animation: pulse 2s ease-in-out infinite;
}

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

  .welcome-bonus-wrapper {
    padding: 40px 30px;
  }

  .welcome-bonus-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .welcome-bonus-section {
    padding: 30px 25px;
  }

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

  .welcome-bonus-header i {
    font-size: 1.7rem;
  }

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

  .games {
    padding: 35px 25px;
  }

  .faq {
    padding: 35px 25px;
  }

  .hero {
    padding: 60px 40px;
  }

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

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

  .announcement-content {
    gap: 15px;
  }

  .announcement-text {
    font-size: 0.9rem;
    gap: 8px;
  }

  .announcement-cta {
    padding: 9px 20px;
    font-size: 0.85rem;
  }

  .editorial-credentials {
    padding: 30px 25px;
  }

  .credentials-main {
    flex-direction: column;
    gap: 20px;
  }

  .credentials-icon {
    width: 60px;
    height: 60px;
  }

  .credentials-content h3 {
    font-size: 1.6rem;
  }

  .credentials-disclosure {
    flex-direction: column;
    gap: 15px;
    padding: 20px 25px;
  }

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

  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

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

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

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

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

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

  .hero-badge {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    padding: 20px 25px;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
  }

  .hero-feature-item {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .hero-feature-item i {
    font-size: 1.3rem;
  }

  .hero-feature-item span {
    font-size: 0.85rem;
  }

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

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .welcome-bonus-wrapper {
    padding: 35px 25px;
  }

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

  .welcome-bonus-description {
    font-size: 1.05rem;
  }

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

  .welcome-bonus-section {
    padding: 25px 20px;
  }

  .bonus-understanding-intro h2,
  .games-intro h2,
  .faq-intro h3 {
    font-size: 1.8rem;
  }

  .faq-tabs {
    gap: 10px;
    margin-bottom: 30px;
  }

  .faq-tab {
    padding: 10px 18px;
    font-size: 0.8rem;
  }

  .faq-container {
    min-height: 350px;
  }

  .faq-question {
    padding: 20px 25px;
    gap: 15px;
  }

  .faq-number {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .faq-question h4 {
    font-size: 1.2rem;
  }

  .faq-icon {
    font-size: 1.3rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 25px 25px 25px;
    padding-left: 100px;
  }

  .faq-answer p {
    font-size: 1rem;
  }

  .games-intro-description {
    font-size: 1.05rem;
    padding: 0 10px;
  }

  /* Live Activity Section */
  .live-activity-wrapper {
    padding: 40px 30px;
  }

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

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

  .live-feed-container {
    padding: 20px;
    max-height: 450px;
  }

  .live-item {
    padding: 15px 18px;
    gap: 15px;
  }

  .live-item-icon {
    width: 45px;
    height: 45px;
  }

  .live-item-icon i {
    font-size: 1.3rem;
  }

  .live-item-content {
    gap: 8px;
    font-size: 0.95rem;
  }

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

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

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

  /* Section 3: Free Spins */
  .free-spins-wrapper {
    padding: 35px 25px;
  }

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

  .free-spins-description {
    font-size: 1.05rem;
  }

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

  /* Section 4: Cashback */
  .cashback-wrapper {
    padding: 35px 25px;
  }

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

  .cashback-description {
    font-size: 1.05rem;
  }

  .cashback-split {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Section 5: VIP */
  .vip-wrapper {
    padding: 35px 25px;
  }

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

  .vip-description {
    font-size: 1.05rem;
  }

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

  /* Section 6: Wagering */
  .wagering-wrapper {
    padding: 35px 25px;
  }

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

  .wagering-description {
    font-size: 1.05rem;
  }

  .tips-list {
    grid-template-columns: 1fr;
  }

  /* Section 7: Choose Bonus */
  .choose-bonus-wrapper {
    padding: 35px 25px;
  }

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

  .choose-bonus-description {
    font-size: 1.05rem;
  }

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

  .player-cards {
    grid-template-columns: 1fr;
  }

  .bonus-checklist {
    position: relative;
    top: 0;
  }

  /* Section 8: Responsible */
  .responsible-bonus-wrapper {
    padding: 35px 25px;
  }

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

  .responsible-bonus-description {
    font-size: 1.05rem;
  }

  .responsible-bonus-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Section 9: Terms Table */
  .bonus-terms-wrapper {
    padding: 35px 25px;
  }

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

  .bonus-terms-description {
    font-size: 1.05rem;
  }

  .bonus-understanding-wrapper {
    padding: 35px 30px;
  }

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

  .bonus-understanding-description {
    font-size: 1.05rem;
  }

  .bonus-info-section {
    padding: 30px 25px;
  }

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

  .bonus-info-header i {
    font-size: 1.8rem;
  }

  .bonus-info-description {
    font-size: 1rem;
    padding: 18px;
  }

  .bonus-info-list li {
    padding: 15px 18px;
  }

  .bonus-info-list li span:not(.list-icon) {
    font-size: 1rem;
  }

  .games {
    padding: 30px 20px;
  }

  .faq {
    padding: 30px 20px;
  }

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

@media (max-width: 480px) {
  .announcement-bar {
    padding: 12px 25px;
  }

  .announcement-content {
    flex-wrap: wrap;
    gap: 12px;
  }

  .announcement-icon {
    font-size: 1.3rem;
  }

  .announcement-text {
    font-size: 0.9rem;
    flex-direction: column;
    text-align: center;
  }

  .announcement-cta {
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  .announcement-close {
    width: 28px;
    height: 28px;
  }
  .navbar {
    padding: 15px;
  }

  .hero {
    padding: 35px 20px;
  }

  .hero-content h1 {
    font-size: 1.7rem;
    line-height: 1.5;
  }

  .hero-badge {
    font-size: 0.85rem;
    padding: 10px 18px;
  }

  .hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    padding: 18px 20px;
  }

  .hero-feature-item span {
    font-size: 0.9rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 25px;
  }

  .hero-feature-item {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .hero-feature-item i {
    font-size: 1.3rem;
  }

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

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .welcome-bonus-wrapper {
    padding: 30px 20px;
  }

  .welcome-bonus-intro h2 {
    font-size: 1.6rem;
  }

  .welcome-bonus-description {
    font-size: 1rem;
  }

  .welcome-bonus-section {
    padding: 22px 18px;
  }

  .welcome-bonus-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

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

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

  .welcome-bonus-section-description {
    font-size: 0.95rem;
    padding: 12px 15px;
  }

  .welcome-bonus-list li {
    padding: 14px 16px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .welcome-bonus-list .list-icon {
    font-size: 1.2rem;
  }

  .welcome-bonus-list li span:not(.list-icon) {
    font-size: 0.95rem;
  }

  .editorial-credentials {
    padding: 25px 20px;
  }

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

  .credentials-disclosure {
    padding: 18px 20px;
    gap: 12px;
  }

  .disclosure-icon {
    width: 40px;
    height: 40px;
  }

  .bonus-understanding-wrapper {
    padding: 30px 20px;
  }

  .bonus-understanding-intro h2 {
    font-size: 1.6rem;
  }

  .bonus-understanding-description {
    font-size: 1rem;
  }

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

  .bonus-info-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

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

  .bonus-info-header i {
    font-size: 1.6rem;
  }

  .bonus-info-description {
    font-size: 0.95rem;
    padding: 15px;
  }

  .bonus-info-list li {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .bonus-info-list .list-icon {
    font-size: 1.3rem;
  }

  .bonus-info-list li span:not(.list-icon) {
    font-size: 0.95rem;
  }

  .bonus-keywords {
    font-size: 0.85rem;
    padding: 15px 18px;
  }

  /* Live Activity Section Mobile */
  .live-activity-wrapper {
    padding: 30px 20px;
  }

  .live-indicator {
    padding: 6px 15px;
    margin-bottom: 15px;
  }

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

  .live-subtitle {
    font-size: 0.95rem;
  }

  .live-feed-container {
    padding: 15px;
    max-height: 400px;
  }

  .live-item {
    padding: 12px 15px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .live-item-icon {
    width: 40px;
    height: 40px;
  }

  .live-item-icon i {
    font-size: 1.2rem;
  }

  .live-item-content {
    font-size: 0.9rem;
    flex: 1;
    min-width: 200px;
  }

  .live-player,
  .live-action,
  .live-amount {
    font-size: 0.95rem;
  }

  .live-time {
    font-size: 0.8rem;
    width: 100%;
    text-align: right;
    padding-top: 5px;
  }

  .live-stats {
    gap: 15px;
  }

  .live-stat-item {
    padding: 18px;
    gap: 15px;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
  }

  .stat-icon i {
    font-size: 1.5rem;
  }

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

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

  .live-cta-btn {
    padding: 14px 30px;
    font-size: 1.05rem;
    width: 100%;
  }

  /* Section 3: Free Spins Mobile */
  .free-spins-wrapper {
    padding: 30px 20px;
  }

  .free-spins-intro h2 {
    font-size: 1.6rem;
  }

  .free-spins-description {
    font-size: 1rem;
  }

  .free-spins-card {
    padding: 25px 20px;
  }

  .card-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .card-icon-wrapper i {
    font-size: 1.5rem;
  }

  /* Section 4: Cashback Mobile */
  .cashback-wrapper {
    padding: 30px 20px;
  }

  .cashback-intro h2 {
    font-size: 1.6rem;
  }

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

  .cashback-left,
  .cashback-right {
    padding: 25px 20px;
  }

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

  /* Section 5: VIP Mobile */
  .vip-wrapper {
    padding: 30px 20px;
  }

  .vip-intro h2 {
    font-size: 1.6rem;
  }

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

  .vip-icon-large {
    width: 100px;
    height: 100px;
  }

  .vip-icon-large i {
    font-size: 3rem;
  }

  .vip-left h3 {
    font-size: 1.5rem;
  }

  /* Section 6: Wagering Mobile */
  .wagering-wrapper {
    padding: 30px 20px;
  }

  .wagering-intro h2 {
    font-size: 1.6rem;
  }

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

  .wagering-example,
  .wagering-tips {
    padding: 25px 20px;
  }

  .example-formula {
    font-size: 1.1rem;
    flex-direction: column;
    gap: 10px;
  }

  .formula-part,
  .formula-result {
    padding: 8px 15px;
  }

  /* Section 7: Choose Bonus Mobile */
  .choose-bonus-wrapper {
    padding: 30px 20px;
  }

  .choose-bonus-intro h2 {
    font-size: 1.6rem;
  }

  .choose-bonus-description {
    font-size: 1rem;
  }

  .player-types h3 {
    font-size: 1.4rem;
  }

  .player-card {
    padding: 25px 18px;
  }

  .player-card i {
    font-size: 2.5rem;
  }

  /* Section 8: Responsible Mobile */
  .responsible-bonus-wrapper {
    padding: 30px 20px;
  }

  .responsible-bonus-intro h2 {
    font-size: 1.6rem;
  }

  .responsible-bonus-description {
    font-size: 1rem;
  }

  .responsible-main,
  .responsible-keep-fun {
    padding: 25px 20px;
  }

  .responsible-icon-box,
  .fun-icon-box {
    width: 80px;
    height: 80px;
  }

  .responsible-icon-box i,
  .fun-icon-box i {
    font-size: 2.5rem;
  }

  /* Section 9: Terms Table Mobile */
  .bonus-terms-wrapper {
    padding: 30px 20px;
  }

  .bonus-terms-intro h2 {
    font-size: 1.6rem;
  }

  .bonus-terms-description {
    font-size: 1rem;
  }

  .bonus-terms-table th,
  .bonus-terms-table td {
    padding: 12px 10px;
    font-size: 0.9rem;
  }

  .games {
    padding: 25px 15px;
  }

  .games-intro-description {
    font-size: 0.95rem;
    padding: 0 5px;
  }

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

  .faq {
    padding: 30px 20px;
  }

  .faq-intro h3 {
    font-size: 1.6rem;
  }

  .faq-tabs {
    gap: 6px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .faq-tabs::-webkit-scrollbar {
    height: 4px;
  }

  .faq-tabs::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 136, 0.3);
    border-radius: 2px;
  }

  .faq-tab {
    padding: 9px 16px;
    font-size: 0.75rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .faq-tab.active::after {
    bottom: -16px;
    height: 2px;
  }

  .faq-container {
    min-height: 300px;
    gap: 0;
  }

  .faq-segment-content {
    gap: 15px;
  }

  .faq-question {
    padding: 18px 20px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .faq-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .faq-question h4 {
    font-size: 1.1rem;
    line-height: 1.4;
  }

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

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

  .faq-answer p {
    font-size: 0.95rem;
  }

  /* Scroll to Top Button Responsive */
  .scroll-to-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 1.3rem;
  }

  .footer {
    padding: 40px 15px;
  }

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

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .btn-play {
    padding: 10px 28px;
    font-size: 0.9rem;
  }
}
