@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');

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

html {
  scroll-behavior: smooth;
}

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

/* 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);
}

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

/* 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;
  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;
}

/* 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: 2.2rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 15px var(--joker-green));
}

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

/* E-E-A-T Section Links - Enhanced Visibility */
.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);
}

.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;
  animation: rotate 3s ease-in-out infinite;
}

@keyframes rotate {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: 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);
}

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

.about-us {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  gap: 0;
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.4) 0%, rgba(17, 17, 17, 0.6) 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(157, 0, 255, 0.3);
}

.about-us-intro {
  width: 100%;
  padding: 50px 60px;
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.85) 0%, rgba(17, 17, 17, 0.95) 100%);
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(10px);
}

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

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

.about-us-banner {
  width: 100%;
  overflow: hidden;
  position: relative;
  max-height: 400px;
  margin-bottom: 40px;
  border-radius: 15px;
}

.about-us-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.15) 0%, rgba(0, 255, 136, 0.1) 100%);
  z-index: 1;
  border-radius: 15px;
}

.about-us-banner img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  border-radius: 15px;
}

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

.about-us-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--joker-purple), var(--joker-green), var(--joker-purple));
  background-size: 100% 200%;
  animation: gradientMove 3s ease infinite;
}

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


.legal-section {
  margin-bottom: 40px;
  padding: 0;
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.6) 0%, rgba(17, 17, 17, 0.8) 100%);
  border-radius: 18px;
  border: 2px solid rgba(157, 0, 255, 0.3);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

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

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

.legal-section:hover {
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 12px 40px rgba(157, 0, 255, 0.4), 0 0 30px rgba(0, 255, 136, 0.2);
  transform: translateY(-2px);
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section-header {
  padding: 30px 35px 25px;
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.15) 0%, rgba(0, 255, 136, 0.1) 100%);
  border-bottom: 2px solid rgba(157, 0, 255, 0.2);
  position: relative;
}

.legal-section-description {
  color: #E8E8E8;
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 15px;
  margin-bottom: 0;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.legal-section-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--joker-green), transparent);
}

.legal-section h3 {
  font-size: 1.6rem;
  color: #FFFFFF;
  margin: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.legal-section h3 i {
  font-size: 1.8rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 12px var(--joker-green));
  background: rgba(0, 255, 136, 0.15);
  padding: 12px;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
}

.legal-section:hover h3 i {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.legal-list {
  list-style: none;
  padding: 30px 35px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: #FFFFFF;
  font-size: 1.1rem;
  line-height: 1.8;
  padding: 20px 25px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  border-left: 4px solid var(--joker-purple);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

.legal-list li:hover {
  transform: translateX(5px);
  border-left-color: var(--joker-green);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 5px 20px rgba(157, 0, 255, 0.3);
}

.legal-list li:hover::before {
  transform: scaleY(1);
}

.legal-list li:last-child {
  margin-bottom: 0;
}

.list-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--joker-green) 0%, #00cc70 100%);
  border-radius: 50%;
  color: #000000;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.3);
  margin-top: 2px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.legal-list li:hover .list-icon {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.8), inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.legal-list li span:last-child {
  flex: 1;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.safety-trust {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.safety-intro-wrapper {
  text-align: center;
  width: 100%;
}

.safety-intro-wrapper 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;
}

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

.safety-content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.safety-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.safety-section {
  margin-bottom: 0;
  padding: 0;
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.6) 0%, rgba(17, 17, 17, 0.8) 100%);
  border-radius: 18px;
  border: 2px solid rgba(157, 0, 255, 0.3);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

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

.safety-section:hover {
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 12px 40px rgba(157, 0, 255, 0.4), 0 0 30px rgba(0, 255, 136, 0.2);
  transform: translateY(-2px);
}

.safety-section-header {
  padding: 30px 35px 25px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(157, 0, 255, 0.1) 100%);
  border-bottom: 2px solid rgba(0, 255, 136, 0.2);
  position: relative;
}

.safety-section-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--joker-purple), transparent);
}

.safety-section-description {
  color: #E8E8E8;
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 15px;
  margin-bottom: 0;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.safety-section h3 {
  font-size: 1.6rem;
  color: #FFFFFF;
  margin: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.safety-section h3 i {
  font-size: 1.8rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 12px var(--joker-green));
  background: rgba(0, 255, 136, 0.15);
  padding: 12px;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
}

.safety-section:hover h3 i {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.safety-list {
  list-style: none;
  padding: 30px 35px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.safety-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: #FFFFFF;
  font-size: 1.1rem;
  line-height: 1.8;
  padding: 20px 25px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  border-left: 4px solid var(--joker-green);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.safety-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 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: bottom;
}

.safety-list li:hover {
  transform: translateX(5px);
  border-left-color: var(--joker-purple);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.safety-list li:hover::before {
  transform: scaleY(1);
}

.safety-list li span:last-child {
  flex: 1;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.safety-list li strong {
  color: var(--joker-green);
  font-weight: 700;
}

.safety-images {
  flex: 0 0 500px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.safety-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(157, 0, 255, 0.4);
  border: 2px solid rgba(157, 0, 255, 0.3);
  transition: all 0.3s ease;
}

.safety-carousel:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(157, 0, 255, 0.5);
  border-color: var(--joker-green);
}

.safety-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.safety-carousel-track img {
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.safety-banner {
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 255, 136, 0.3);
  border: 2px solid rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
}

.safety-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(0, 255, 136, 0.5);
  border-color: var(--joker-purple);
}

.safety-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.games {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 60px 50px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.6) 0%, rgba(17, 17, 17, 0.9) 100%);
  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;
}

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

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

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

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

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

.game-card {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.7) 0%, rgba(17, 17, 17, 0.95) 100%);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid rgba(157, 0, 255, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(157, 0, 255, 0.6), 0 0 40px rgba(0, 255, 136, 0.3);
  border-color: var(--joker-green);
}

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

.game-card-image {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.2);
}

.game-card-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 2;
}

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

.game-card-content {
  padding: 30px 25px;
  text-align: center;
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
}

.game-card-content h4 {
  font-size: 1.8rem;
  color: #FFFFFF;
  margin: 0 0 15px 0;
  font-weight: 700;
  text-shadow: 0 2px 8px 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;
}

.game-card-description {
  color: #E8E8E8;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  font-weight: 400;
}

/* Shared section intro styles */
.section-intro {
  text-align: center;
  width: 100%;
  margin-bottom: 40px;
}

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

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

/* Section 3: Payment Section - Split Design */
.payment-section {
  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);
}

.payment-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.payment-left,
.payment-right {
  padding: 40px 35px;
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.7) 0%, rgba(17, 17, 17, 0.9) 100%);
  border-radius: 18px;
  border: 2px solid rgba(157, 0, 255, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

.payment-left:hover,
.payment-right:hover {
  transform: translateY(-5px);
  border-color: var(--joker-green);
  box-shadow: 0 15px 45px rgba(157, 0, 255, 0.5);
}

.payment-icon-large {
  text-align: center;
  margin-bottom: 25px;
}

.payment-icon-large i {
  font-size: 4rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 20px var(--joker-green));
  animation: pulse 2s ease-in-out infinite;
}

.payment-left h3,
.payment-right h3 {
  font-size: 1.6rem;
  color: #FFFFFF;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

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

.payment-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #FFFFFF;
  font-size: 1.05rem;
  line-height: 1.7;
  padding: 18px 22px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.payment-list li:hover {
  background: rgba(0, 0, 0, 0.45);
  transform: translateX(5px);
}

.payment-badge {
  flex-shrink: 0;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--joker-green) 0%, #00cc70 100%);
  color: #000000;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.payment-badge.warning {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF0040 100%);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(255, 0, 64, 0.5);
}

.payment-badge.speed {
  background: linear-gradient(135deg, var(--joker-purple) 0%, var(--accent-primary) 100%);
  color: #FFFFFF;
}

/* Section 4: Bonus Section - Three Color Cards */
.bonus-section {
  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);
}

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

.bonus-card-alt {
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.card-primary {
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.4) 0%, rgba(17, 17, 17, 0.9) 100%);
  border: 2px solid rgba(157, 0, 255, 0.4);
}

.card-secondary {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.3) 0%, rgba(17, 17, 17, 0.9) 100%);
  border: 2px solid rgba(0, 255, 136, 0.4);
}

.card-accent {
  background: linear-gradient(135deg, rgba(255, 209, 0, 0.2) 0%, rgba(17, 17, 17, 0.9) 100%);
  border: 2px solid rgba(255, 209, 0, 0.4);
}

.bonus-card-alt:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(157, 0, 255, 0.6);
}

.bonus-card-header {
  padding: 30px 25px;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
}

.bonus-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(0, 255, 136, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--joker-green);
  transition: all 0.3s ease;
}

.bonus-card-alt:hover .bonus-icon-wrapper {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 0 30px var(--joker-green);
}

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

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

.bonus-card-body {
  padding: 30px 25px;
  color: #E8E8E8;
}

.bonus-highlight {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--joker-green);
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.bonus-point {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem;
  line-height: 1.6;
}

.bonus-point:last-child {
  border-bottom: none;
}

.bonus-point strong {
  color: var(--joker-green);
}

.bonus-tagline {
  font-weight: 600;
  color: #FFFFFF;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid var(--joker-green);
}

/* Section 5: Pokies Section - Timeline Design */
.pokies-section {
  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);
}

.pokies-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
  position: relative;
  padding-left: 60px;
}

.pokies-timeline::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--joker-purple), var(--joker-green), var(--joker-purple));
  background-size: 100% 300%;
  animation: gradientMove 4s ease infinite;
}

.pokies-item {
  display: flex;
  gap: 30px;
  position: relative;
}

.timeline-marker {
  position: absolute;
  left: -45px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--joker-purple) 0%, var(--joker-green) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid rgba(17, 17, 17, 0.9);
  box-shadow: 0 0 25px rgba(157, 0, 255, 0.6);
  z-index: 2;
  transition: all 0.3s ease;
}

.pokies-item:hover .timeline-marker {
  transform: scale(1.15);
  box-shadow: 0 0 35px rgba(0, 255, 136, 0.8);
}

.timeline-marker i {
  font-size: 1.5rem;
  color: #FFFFFF;
}

.pokies-content {
  flex: 1;
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.7) 0%, rgba(17, 17, 17, 0.9) 100%);
  padding: 35px 40px;
  border-radius: 18px;
  border: 2px solid rgba(157, 0, 255, 0.3);
  transition: all 0.4s ease;
}

.pokies-content:hover {
  border-color: var(--joker-green);
  box-shadow: 0 15px 45px rgba(157, 0, 255, 0.5);
  transform: translateX(10px);
}

.pokies-content h3 {
  font-size: 1.7rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.pokies-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-bubble {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--joker-green) 0%, #00cc70 100%);
  color: #000000;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 8px;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.pokies-features p {
  color: #E8E8E8;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 8px 0;
}

.pokies-features strong {
  color: var(--joker-green);
}

.smart-tip {
  display: flex;
  gap: 15px;
  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;
}

.smart-tip:hover {
  background: rgba(0, 0, 0, 0.45);
  transform: translateX(5px);
}

.tip-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.smart-tip div {
  color: #FFFFFF;
  font-size: 1.05rem;
  line-height: 1.7;
  flex: 1;
}

.smart-tip strong {
  color: var(--joker-green);
}

/* Section 6: Mobile Section - Stats Showcase */
.mobile-section {
  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);
}

.mobile-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.mobile-main {
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.3) 0%, rgba(17, 17, 17, 0.9) 100%);
  padding: 40px 35px;
  border-radius: 18px;
  border: 2px solid rgba(157, 0, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.mobile-main::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(157, 0, 255, 0.2) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.mobile-icon-feature {
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}

.mobile-icon-feature i {
  font-size: 4.5rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 25px var(--joker-green));
  margin-bottom: 15px;
  display: block;
  animation: float 3s ease-in-out infinite;
}

.mobile-icon-feature h3 {
  font-size: 1.8rem;
  color: #FFFFFF;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.mobile-stats {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  z-index: 1;
}

.stat-item {
  background: rgba(0, 0, 0, 0.4);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(157, 0, 255, 0.3);
  transition: all 0.3s ease;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--joker-green);
  margin-bottom: 10px;
  text-shadow: 0 0 15px var(--joker-green);
}

.stat-label {
  color: #E8E8E8;
  font-size: 1.05rem;
  line-height: 1.6;
}

.mobile-features {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(17, 17, 17, 0.9) 100%);
  padding: 40px 35px;
  border-radius: 18px;
  border: 2px solid rgba(0, 255, 136, 0.4);
}

.mobile-feature-header {
  text-align: center;
  margin-bottom: 35px;
}

.mobile-feature-header i {
  font-size: 3.5rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 20px var(--joker-green));
  margin-bottom: 15px;
  display: block;
}

.mobile-feature-header h3 {
  font-size: 1.8rem;
  color: #FFFFFF;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.mobile-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 25px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  border-left: 5px solid var(--joker-green);
  transition: all 0.3s ease;
}

.mobile-feature-item:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.feature-number {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--joker-green) 0%, #00cc70 100%);
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.feature-text {
  color: #FFFFFF;
  font-size: 1.05rem;
  line-height: 1.7;
  flex: 1;
}

/* Section 7: Responsible Section - Split with Cards */
.responsible-section {
  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(0, 255, 136, 0.3);
  backdrop-filter: blur(10px);
}

.responsible-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-top: 30px;
}

.responsible-importance {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(17, 17, 17, 0.9) 100%);
  padding: 35px;
  border-radius: 18px;
  border: 2px solid rgba(0, 255, 136, 0.3);
}

.importance-header {
  text-align: center;
  margin-bottom: 30px;
}

.importance-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(0, 255, 136, 0.2);
  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);
}

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

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

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

.importance-card {
  background: rgba(0, 0, 0, 0.4);
  padding: 25px;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 255, 136, 0.2);
}

.importance-card:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: var(--joker-green);
  transform: translateY(-3px);
}

.importance-card i {
  font-size: 2rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 10px var(--joker-green));
  flex-shrink: 0;
}

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

.responsible-resources {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.7) 0%, rgba(17, 17, 17, 0.9) 100%);
  padding: 35px;
  border-radius: 18px;
  border: 2px solid rgba(157, 0, 255, 0.3);
}

.resources-header {
  text-align: center;
  margin-bottom: 30px;
}

.resources-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(157, 0, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--joker-purple);
  box-shadow: 0 0 25px rgba(157, 0, 255, 0.5);
}

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

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

.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.resource-card {
  background: rgba(0, 0, 0, 0.4);
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid var(--joker-purple);
  transition: all 0.3s ease;
}

.resource-card:hover {
  background: rgba(0, 0, 0, 0.5);
  border-left-color: var(--joker-green);
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(157, 0, 255, 0.3);
}

.resource-badge {
  display: inline-block;
  padding: 5px 12px;
  background: linear-gradient(135deg, var(--joker-green) 0%, #00cc70 100%);
  color: #000000;
  border-radius: 15px;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 12px;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.resource-card h4 {
  font-size: 1.3rem;
  color: #FFFFFF;
  margin-bottom: 10px;
  font-weight: 700;
}

.resource-card p {
  color: #E8E8E8;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Section 8: Warning Section - Alert Design */
.warning-section {
  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);
}

.warning-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  margin-top: 30px;
}

.warning-red {
  background: linear-gradient(135deg, rgba(255, 64, 64, 0.25) 0%, rgba(17, 17, 17, 0.9) 100%);
  padding: 40px 35px;
  border-radius: 18px;
  border: 3px solid rgba(255, 64, 64, 0.5);
  position: relative;
  overflow: hidden;
}

.warning-red::before {
  content: '⚠';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  opacity: 0.1;
  animation: pulse 2s ease-in-out infinite;
}

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

.warning-header i {
  font-size: 2.5rem;
  color: #FF4040;
  filter: drop-shadow(0 0 15px #FF4040);
  animation: pulse 2s ease-in-out infinite;
}

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

.warning-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.warning-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 64, 64, 0.15);
  border-radius: 12px;
  border-left: 4px solid #FF4040;
  transition: all 0.3s ease;
}

.warning-item:hover {
  background: rgba(255, 64, 64, 0.25);
  transform: translateX(5px);
}

.warning-mark {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.warning-item span:last-child {
  color: #FFFFFF;
  font-size: 1.05rem;
  line-height: 1.7;
  flex: 1;
  font-weight: 500;
}

.warning-safe {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.25) 0%, rgba(17, 17, 17, 0.9) 100%);
  padding: 40px 35px;
  border-radius: 18px;
  border: 3px solid rgba(0, 255, 136, 0.5);
  position: relative;
  overflow: hidden;
}

.warning-safe::before {
  content: '✓';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  opacity: 0.1;
  color: var(--joker-green);
}

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

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

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

.safe-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.safe-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(0, 255, 136, 0.15);
  border-radius: 12px;
  border-left: 4px solid var(--joker-green);
  transition: all 0.3s ease;
}

.safe-item:hover {
  background: rgba(0, 255, 136, 0.25);
  transform: translateX(5px);
}

.safe-check {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--joker-green) 0%, #00cc70 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

.safe-item span:last-child {
  color: #FFFFFF;
  font-size: 1.05rem;
  line-height: 1.7;
  flex: 1;
  font-weight: 500;
}

/* Section 9: Future Section - Futuristic Design */
.future-section {
  margin-top: 60px;
  padding: 50px 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;
}

.future-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(157, 0, 255, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

.future-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.future-trends,
.future-vision {
  position: relative;
  z-index: 2;
}

.future-header,
.vision-header {
  text-align: center;
  margin-bottom: 30px;
}

.future-icon-glow,
.vision-icon-glow {
  width: 90px;
  height: 90px;
  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: 3px solid var(--joker-green);
  box-shadow: 0 0 30px rgba(157, 0, 255, 0.6), inset 0 0 30px rgba(0, 255, 136, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.future-icon-glow i,
.vision-icon-glow i {
  font-size: 2.8rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 20px var(--joker-green));
}

.future-header h3,
.vision-header h3 {
  font-size: 1.8rem;
  color: #FFFFFF;
  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;
}

.trend-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trend-card {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.7) 0%, rgba(17, 17, 17, 0.95) 100%);
  padding: 25px 30px;
  border-radius: 15px;
  border: 2px solid rgba(157, 0, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s ease;
}

.trend-card:hover {
  border-color: var(--joker-green);
  transform: translateX(10px);
  box-shadow: 0 12px 40px rgba(157, 0, 255, 0.5);
}

.trend-indicator {
  width: 60px;
  height: 60px;
  background: rgba(0, 255, 136, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  border: 2px solid var(--joker-green);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.trend-content {
  flex: 1;
}

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

.trend-content p {
  color: #E8E8E8;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.vision-statement {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vision-item {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(17, 17, 17, 0.9) 100%);
  padding: 25px 30px;
  border-radius: 15px;
  border-left: 5px solid var(--joker-green);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s ease;
}

.vision-item:hover {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.25) 0%, rgba(17, 17, 17, 0.95) 100%);
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.vision-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--joker-green) 0%, #00cc70 100%);
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.vision-item p {
  color: #FFFFFF;
  font-size: 1.05rem;
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

.vision-item strong {
  color: var(--joker-green);
}

.info-section {
  margin-bottom: 0;
  padding: 0;
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.6) 0%, rgba(17, 17, 17, 0.8) 100%);
  border-radius: 18px;
  border: 2px solid rgba(157, 0, 255, 0.3);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

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

.info-section:hover {
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 12px 40px rgba(157, 0, 255, 0.4), 0 0 30px rgba(0, 255, 136, 0.2);
  transform: translateY(-2px);
}

.info-section-header {
  padding: 25px 30px 20px;
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.15) 0%, rgba(0, 255, 136, 0.1) 100%);
  border-bottom: 2px solid rgba(157, 0, 255, 0.2);
  position: relative;
}

.info-section-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--joker-green), transparent);
}

.info-section h3 {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.info-section h3 i {
  font-size: 1.6rem;
  color: var(--joker-green);
  filter: drop-shadow(0 0 10px var(--joker-green));
  background: rgba(0, 255, 136, 0.15);
  padding: 10px;
  border-radius: 10px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
}

.info-section:hover h3 i {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

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

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #FFFFFF;
  font-size: 1.05rem;
  line-height: 1.7;
  padding: 18px 22px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  border-left: 4px solid var(--joker-purple);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

.info-list li:hover {
  transform: translateX(5px);
  border-left-color: var(--joker-green);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 5px 20px rgba(157, 0, 255, 0.3);
}

.info-list li:hover::before {
  transform: scaleY(1);
}

.info-list li span:last-child {
  flex: 1;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

/* 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: 4px solid var(--joker-green);
  border-top: 1px solid rgba(0, 255, 136, 0.2);
  color: #D0D0D0;
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
}

.faq-keywords strong {
  color: var(--joker-green);
  font-size: 1rem;
  margin-right: 8px;
  display: inline-block;
  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) {
  /* Announcement Bar Responsive */
  .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;
  }

  .navbar {
    padding: 20px 40px;
    flex-wrap: wrap;
  }

  .about-us-intro {
    padding: 40px 35px;
  }

  .about-us-intro h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
  }

  .about-us-intro-description {
    font-size: 1.05rem;
    margin-bottom: 35px;
    padding: 0 20px;
  }

  .about-us-banner {
    max-height: 300px;
    margin-bottom: 30px;
  }

  .about-us-banner img {
    max-height: 300px;
  }

  .legal-section-header {
    padding: 25px 25px 20px;
  }

  .legal-section h3 {
    font-size: 1.4rem;
    gap: 12px;
  }

  .legal-section-description {
    font-size: 0.95rem;
    margin-top: 12px;
  }

  .legal-section h3 i {
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
    padding: 10px;
  }

  .legal-list {
    padding: 25px;
    gap: 18px;
  }

  .legal-list li {
    padding: 18px 20px;
    font-size: 1.05rem;
  }

  .list-icon {
    width: 28px;
    height: 28px;
    font-size: 0.95rem;
  }

  .legal-section {
    margin-bottom: 30px;
  }

  .safety-content-wrapper {
    flex-direction: column;
  }

  .safety-images {
    flex: 1;
    width: 100%;
    max-width: 100%;
  }

  .safety-carousel-track img {
    min-height: 180px;
    max-height: 220px;
  }

  .safety-intro-description {
    font-size: 1.05rem;
    padding: 0 20px;
  }

  .safety-section-description {
    font-size: 0.95rem;
    margin-top: 12px;
  }

  .games {
    padding: 45px 35px;
    gap: 40px;
  }

  .games-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 18px;
  }

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

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

  .section-intro h2 {
    font-size: 1.9rem;
  }

  .section-intro-description {
    font-size: 1.05rem;
    padding: 0 15px;
  }

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

  .info-section-header {
    padding: 22px 25px 18px;
  }

  .info-section h3 {
    font-size: 1.4rem;
    gap: 10px;
  }

  .info-section h3 i {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
    padding: 9px;
  }

  .info-list {
    padding: 22px 25px;
    gap: 16px;
  }

  .info-list li {
    padding: 16px 20px;
    font-size: 1rem;
  }

  .game-card-content {
    padding: 25px 20px;
  }

  .game-card-content h4 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .game-card-description {
    font-size: 0.95rem;
  }

  .faq {
    padding: 35px 25px;
  }

  .hero {
    padding: 60px 40px;
  }

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

@media (max-width: 768px) {
  /* Announcement Bar Responsive - Tablet */
  .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-basis: 100%;
    text-align: center;
    order: 2;
  }

  .announcement-cta {
    order: 3;
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .announcement-close {
    order: 1;
    margin-left: auto;
    width: 28px;
    height: 28px;
  }

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

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

  /* Editorial Credentials Responsive - Tablet */
  .editorial-credentials {
    padding: 35px 30px;
  }

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

  .credentials-icon {
    align-self: center;
  }

  .credentials-badges {
    grid-template-columns: 1fr;
  }

  /* Payment Section Responsive - Tablet */
  .payment-section {
    padding: 40px 30px;
  }

  .payment-split {
    gap: 30px;
  }

  /* Bonus Section Responsive - Tablet */
  .bonus-section {
    padding: 40px 30px;
  }

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

  /* Pokies Section Responsive - Tablet */
  .pokies-section {
    padding: 40px 30px;
  }

  .pokies-timeline {
    padding-left: 55px;
  }

  /* Mobile Section Responsive - Tablet */
  .mobile-section {
    padding: 40px 30px;
  }

  .mobile-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Responsible Section Responsive - Tablet */
  .responsible-section {
    padding: 40px 30px;
  }

  .responsible-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Warning Section Responsive - Tablet */
  .warning-section {
    padding: 40px 30px;
  }

  .warning-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Future Section Responsive - Tablet */
  .future-section {
    padding: 40px 30px;
  }

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

  /* FAQ Section Responsive - Tablet */
  .faq {
    padding: 40px 30px;
  }

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

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

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

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

  .faq-question {
    padding: 22px 25px;
  }

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

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

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

  .about-us-intro {
    padding: 30px 25px;
  }

  .about-us-intro h2 {
    font-size: 1.7rem;
    margin-bottom: 18px;
  }

  .about-us-intro-description {
    font-size: 1rem;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .about-us-banner {
    max-height: 250px;
    margin-bottom: 25px;
  }

  .about-us-banner img {
    max-height: 250px;
  }

  .legal-section-header {
    padding: 20px 20px 18px;
  }

  .legal-section h3 {
    font-size: 1.3rem;
    gap: 10px;
  }

  .legal-section-description {
    font-size: 0.9rem;
    margin-top: 12px;
    line-height: 1.6;
  }

  .legal-section h3 i {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    padding: 8px;
  }

  .legal-list {
    padding: 20px;
    gap: 15px;
  }

  .legal-list li {
    padding: 15px 18px;
    font-size: 1rem;
    gap: 15px;
  }

  .list-icon {
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }

  .legal-section {
    margin-bottom: 25px;
  }

  .safety-intro-wrapper h2 {
    font-size: 1.9rem;
  }

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

  .safety-section-header {
    padding: 25px 25px 20px;
  }

  .safety-section h3 {
    font-size: 1.4rem;
    gap: 12px;
  }

  .safety-section h3 i {
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
    padding: 10px;
  }

  .safety-list {
    padding: 25px;
    gap: 18px;
  }

  .safety-list li {
    padding: 18px 20px;
    font-size: 1.05rem;
  }

  .list-icon {
    width: 28px;
    height: 28px;
    font-size: 0.95rem;
  }

  .safety-images {
    flex: 1;
  }

  .safety-carousel-track img {
    min-height: 160px;
    max-height: 200px;
  }

  .safety-intro-description {
    font-size: 0.95rem;
  }

  .safety-section-description {
    font-size: 0.9rem;
    margin-top: 12px;
  }

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

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

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

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

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

  .games-intro h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .section-intro h2 {
    font-size: 1.7rem;
    margin-bottom: 18px;
  }

  .section-intro-description {
    font-size: 1rem;
    padding: 0 10px;
  }

  .section-content {
    gap: 22px;
  }

  .info-section-header {
    padding: 20px 22px 16px;
  }

  .info-section h3 {
    font-size: 1.3rem;
    gap: 10px;
  }

  .info-section h3 i {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    padding: 8px;
  }

  .info-list {
    padding: 20px 22px;
    gap: 14px;
  }

  .info-list li {
    padding: 15px 18px;
    font-size: 0.98rem;
  }

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

  .games {
    padding: 40px 30px;
    gap: 35px;
  }

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

  .game-card-content {
    padding: 22px 18px;
  }

  .game-card-content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .game-card-description {
    font-size: 0.9rem;
  }

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

  .faq {
    padding: 30px 20px;
  }

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

@media (max-width: 480px) {
  /* Announcement Bar Responsive - Mobile */
  .announcement-bar {
    padding: 10px 15px;
  }

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

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

  .announcement-text {
    font-size: 0.8rem;
    flex-basis: 100%;
    text-align: center;
    order: 2;
    line-height: 1.4;
  }

  .announcement-highlight {
    display: block;
    margin-bottom: 4px;
  }

  .announcement-cta {
    order: 3;
    padding: 8px 16px;
    font-size: 0.8rem;
    width: 100%;
    text-align: center;
  }

  .announcement-close {
    order: 1;
    margin-left: auto;
    width: 26px;
    height: 26px;
  }

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

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

  .navbar {
    padding: 15px;
  }

  .hero {
    padding: 30px 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: 12px;
    flex-direction: row;
    text-align: left;
    gap: 10px;
  }

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

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

  .hero-cta {
    gap: 12px;
  }

  .about-us-intro {
    padding: 25px 20px;
  }

  .about-us-banner {
    max-height: 300px;
  }

  .about-us-banner img {
    max-height: 300px;
  }

  .about-us-intro h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .about-us-intro-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
    padding: 0 10px;
  }

  .about-us-banner {
    max-height: 220px;
    margin-bottom: 20px;
  }

  .about-us-banner img {
    max-height: 220px;
  }

  .legal-section-header {
    padding: 18px 18px 15px;
  }

  .legal-section h3 {
    font-size: 1.2rem;
    gap: 10px;
  }

  .legal-section-description {
    font-size: 0.85rem;
    margin-top: 10px;
    line-height: 1.6;
  }

  .legal-section h3 i {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
    padding: 8px;
  }

  .legal-list {
    padding: 18px;
    gap: 12px;
  }

  .legal-list li {
    padding: 15px 18px;
    font-size: 0.95rem;
    gap: 12px;
  }

  .list-icon {
    width: 24px;
    height: 24px;
    font-size: 0.85rem;
  }

  .legal-section {
    margin-bottom: 20px;
  }

  .safety-intro-wrapper h2 {
    font-size: 1.7rem;
  }

  .safety-intro-description {
    font-size: 0.9rem;
    padding: 0 15px;
  }

  .safety-section-header {
    padding: 20px 20px 18px;
  }

  .safety-section h3 {
    font-size: 1.3rem;
    gap: 10px;
  }

  .safety-section h3 i {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    padding: 8px;
  }

  .safety-list {
    padding: 20px;
    gap: 15px;
  }

  .safety-list li {
    padding: 15px 18px;
    font-size: 1rem;
    gap: 15px;
  }

  .list-icon {
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }

  .safety-carousel-track img {
    min-height: 150px;
    max-height: 180px;
  }

  .safety-section-description {
    font-size: 0.85rem;
    margin-top: 10px;
  }

  .games {
    padding: 35px 20px;
    gap: 30px;
  }

  .games-intro h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .section-intro h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .section-intro-description {
    font-size: 0.95rem;
    padding: 0 8px;
  }

  /* Editorial Credentials Responsive - Mobile */
  .editorial-credentials {
    padding: 30px 20px;
    margin-top: 35px;
    margin-bottom: 35px;
  }

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

  .credentials-icon {
    width: 70px;
    height: 70px;
    align-self: center;
  }

  .credentials-icon i {
    font-size: 2rem;
  }

  .credentials-content h3 {
    font-size: 1.7rem;
    text-align: center;
  }

  .credentials-intro {
    font-size: 1rem;
    text-align: center;
  }

  .credential-item {
    padding: 15px 18px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .credential-item i {
    font-size: 1.3rem;
    margin-top: 0;
  }

  .credential-item div {
    font-size: 0.95rem;
  }

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

  .badge-item {
    padding: 18px;
  }

  .badge-item i {
    font-size: 1.8rem;
  }

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

  /* Payment Section Responsive */
  .payment-section {
    padding: 35px 20px;
  }

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

  .payment-left,
  .payment-right {
    padding: 30px 25px;
  }

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

  .payment-left h3,
  .payment-right h3 {
    font-size: 1.4rem;
  }

  .payment-list li {
    padding: 15px 18px;
    font-size: 0.95rem;
  }

  /* Bonus Section Responsive */
  .bonus-section {
    padding: 35px 20px;
  }

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

  .bonus-card-header {
    padding: 25px 20px;
  }

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

  .bonus-icon-wrapper i {
    font-size: 1.7rem;
  }

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

  .bonus-card-body {
    padding: 25px 20px;
  }

  /* Pokies Section Responsive */
  .pokies-section {
    padding: 35px 20px;
  }

  .pokies-timeline {
    padding-left: 50px;
    gap: 30px;
  }

  .timeline-marker {
    left: -40px;
    width: 50px;
    height: 50px;
  }

  .timeline-marker i {
    font-size: 1.3rem;
  }

  .pokies-content {
    padding: 25px 25px;
  }

  .pokies-content h3 {
    font-size: 1.5rem;
  }

  /* Mobile Section Responsive */
  .mobile-section {
    padding: 35px 20px;
  }

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

  .mobile-main,
  .mobile-features {
    padding: 30px 25px;
  }

  .mobile-icon-feature i {
    font-size: 3.5rem;
  }

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

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

  .mobile-feature-header i {
    font-size: 2.8rem;
  }

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

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

  /* Responsible Section Responsive */
  .responsible-section {
    padding: 35px 20px;
  }

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

  .responsible-importance,
  .responsible-resources {
    padding: 25px 20px;
  }

  .importance-icon,
  .resources-icon {
    width: 70px;
    height: 70px;
  }

  .importance-icon i,
  .resources-icon i {
    font-size: 2rem;
  }

  .importance-header h3,
  .resources-header h3 {
    font-size: 1.5rem;
  }

  /* Warning Section Responsive */
  .warning-section {
    padding: 35px 20px;
  }

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

  .warning-red,
  .warning-safe {
    padding: 30px 25px;
  }

  .warning-header,
  .safe-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .warning-header i,
  .safe-header i {
    font-size: 2rem;
  }

  .warning-header h3,
  .safe-header h3 {
    font-size: 1.5rem;
  }

  /* Future Section Responsive */
  .future-section {
    padding: 35px 20px;
  }

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

  .future-icon-glow,
  .vision-icon-glow {
    width: 75px;
    height: 75px;
  }

  .future-icon-glow i,
  .vision-icon-glow i {
    font-size: 2.3rem;
  }

  .future-header h3,
  .vision-header h3 {
    font-size: 1.6rem;
  }

  .trend-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .trend-indicator {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }

  .vision-item {
    padding: 20px;
  }

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

  .section-content {
    gap: 20px;
  }

  .info-section-header {
    padding: 18px 20px 15px;
  }

  .info-section h3 {
    font-size: 1.2rem;
    gap: 8px;
  }

  .info-section h3 i {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
    padding: 8px;
  }

  .info-list {
    padding: 18px 20px;
    gap: 12px;
  }

  .info-list li {
    padding: 14px 16px;
    font-size: 0.9rem;
    gap: 12px;
  }

  .list-icon {
    width: 24px;
    height: 24px;
    font-size: 0.85rem;
  }

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

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

  .game-card-content {
    padding: 20px 18px;
  }

  .game-card-content h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .game-card-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* FAQ Section Responsive */
  .faq {
    padding: 35px 20px;
    max-width: 100%;
  }

  .faq-intro {
    margin-bottom: 30px;
  }

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

  .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: 20px 18px;
    gap: 15px;
    flex-wrap: wrap;
  }

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

  .disclosure-content h4 {
    font-size: 1.1rem;
  }

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

  .faq-number {
    width: 42px;
    height: 42px;
    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 18px 25px 18px;
    padding-left: 87px;
  }

  .faq-answer p {
    font-size: 0.95rem;
    margin-bottom: 14px;
  }

  .faq-answer ul {
    gap: 10px;
    margin-bottom: 18px;
  }

  .faq-answer ul li {
    font-size: 0.95rem;
    padding-left: 22px;
  }

  .faq-answer ul li::before {
    width: 18px;
    height: 18px;
    font-size: 0.75rem;
  }

  .faq-keywords {
    padding: 14px 0;
    font-size: 0.8rem;
    margin-top: 20px;
  }

  .footer {
    padding: 40px 15px;
  }

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

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