/* Australian Casino Hub - Light Theme with Yellow & Green */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Light Theme Colors */
  --primary-bg: #ffffff;
  --secondary-bg: #f8f9fa;
  --card-bg: #ffffff;

  /* Brand Colors - Yellow & Green */
  --primary-yellow: #ffd600;
  --secondary-yellow: #ffc400;
  --dark-yellow: #f9a825;
  --primary-green: #00c853;
  --secondary-green: #00e676;
  --dark-green: #00a94f;

  /* Text Colors */
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #757575;

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-yellow) 0%,
    var(--secondary-yellow) 50%,
    var(--dark-yellow) 100%
  );
  --gradient-green: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--secondary-green) 100%
  );
  --gradient-card: linear-gradient(
    145deg,
    rgba(255, 214, 0, 0.05) 0%,
    rgba(255, 196, 0, 0.02) 100%
  );

  /* Fonts */
  --font-primary: "Roboto", sans-serif;
  --font-heading: "Oswald", sans-serif;

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 6px 30px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-glow-yellow: 0 0 30px rgba(255, 214, 0, 0.4);
  --shadow-glow-green: 0 0 30px rgba(0, 200, 83, 0.4);
}

body {
  font-family: var(--font-primary);
  background: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 3px solid var(--primary-yellow);
}

.navbar {
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

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

.logo i {
  color: var(--primary-yellow);
  font-size: 2rem;
  animation: spin 3s linear infinite;
}

.logo .accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.australian-flag {
  font-size: 1.5rem;
  animation: wave 2s ease-in-out infinite;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-green);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-green);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--text-primary);
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fffde7 0%, #fff9c4 50%, #fff59d 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 214, 0, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 200, 83, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 196, 0, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1.1rem 2.2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 214, 0, 0.5);
}

.btn-secondary {
  background: var(--gradient-green);
  color: white;
  box-shadow: var(--shadow-glow-green);
  border: 2px solid transparent;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 200, 83, 0.5);
}

.pulse {
  animation: pulse 2s infinite;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid var(--primary-yellow);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary-green);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Floating Icons */
.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  font-size: 2rem;
  color: rgba(255, 214, 0, 0.3);
  animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
  top: 20%;
  left: 10%;
  color: rgba(255, 214, 0, 0.4);
  animation-delay: 0s;
}

.floating-icon:nth-child(2) {
  top: 60%;
  left: 15%;
  color: rgba(0, 200, 83, 0.4);
  animation-delay: 1s;
}

.floating-icon:nth-child(3) {
  top: 30%;
  right: 20%;
  color: rgba(255, 196, 0, 0.4);
  animation-delay: 2s;
}

.floating-icon:nth-child(4) {
  bottom: 30%;
  left: 20%;
  color: rgba(0, 230, 118, 0.4);
  animation-delay: 3s;
}

.floating-icon:nth-child(5) {
  top: 70%;
  right: 10%;
  color: rgba(255, 214, 0, 0.5);
  animation-delay: 4s;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  color: var(--text-primary);
}

.title-decoration {
  display: block;
  width: 120px;
  height: 5px;
  background: var(--gradient-primary);
  margin: 1rem auto;
  border-radius: 3px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Top Casinos Section */
.top-casinos {
  background: var(--secondary-bg);
}

.casino-tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2rem;
}

.casino-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid transparent;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.casino-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary-yellow);
}

.casino-badge {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--gradient-primary);
  color: var(--text-primary);
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: var(--shadow-soft);
}

.casino-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.casino-logo .logo-placeholder {
  background: var(--gradient-green);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: var(--shadow-soft);
}

.logo-placeholder.rockyspin {
  background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
}

.logo-placeholder.slotmonster {
  background: linear-gradient(135deg, #ffd600 0%, #ffc400 100%);
  color: var(--text-primary);
}

.logo-placeholder.wyns {
  background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
}

.logo-placeholder.mafia {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: white;
}

.logo-placeholder.casinolab {
  background: linear-gradient(135deg, #ffd600 0%, #ffc400 100%);
  color: var(--text-primary);
}

.logo-placeholder.rollingslots {
  background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
}

.logo-placeholder.wildtokyo {
  background: linear-gradient(135deg, #ffd600 0%, #ffc400 100%);
  color: var(--text-primary);
}

.logo-placeholder.casinonic {
  background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
}

.logo-placeholder.duospin {
  background: linear-gradient(135deg, #ffd600 0%, #ffc400 100%);
  color: var(--text-primary);
}

.logo-placeholder.spinrise {
  background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
}

.logo-placeholder.moonwin {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: white;
}

.logo-placeholder.jeetcity {
  background: linear-gradient(135deg, #ffd600 0%, #ffc400 100%);
  color: var(--text-primary);
}

.logo-placeholder.zumibet {
  background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
}

.logo-placeholder.gransino {
  background: linear-gradient(135deg, #ffd600 0%, #ffc400 100%);
  color: var(--text-primary);
}

.logo-placeholder.wyns {
  background: linear-gradient(135deg, #00c853 0%, #4caf50 100%);
  color: white;
}

.logo-placeholder.mafia {
  background: linear-gradient(135deg, #1a1a1a 0%, #424242 100%);
  color: var(--primary-yellow);
}

.logo-placeholder.casinolab {
  background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
  color: white;
}

.logo-placeholder.rollingslots {
  background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 100%);
  color: white;
}

.logo-placeholder.wildtokyo {
  background: linear-gradient(135deg, #e91e63 0%, #f48fb1 100%);
  color: white;
}

.logo-placeholder.casinonic {
  background: linear-gradient(135deg, #3f51b5 0%, #5c6bc0 100%);
  color: white;
}

.logo-placeholder.duospin {
  background: linear-gradient(135deg, #00bcd4 0%, #4dd0e1 100%);
  color: white;
}

.logo-placeholder.spinrise {
  background: linear-gradient(135deg, #8bc34a 0%, #aed581 100%);
  color: white;
}

.logo-placeholder.moonwin {
  background: linear-gradient(135deg, #5e35b1 0%, #7e57c2 100%);
  color: white;
}

.logo-placeholder.jeetcity {
  background: linear-gradient(135deg, #f4511e 0%, #ff7043 100%);
  color: white;
}

.logo-placeholder.zumibet {
  background: linear-gradient(135deg, #00897b 0%, #26a69a 100%);
  color: white;
}

.logo-placeholder.gransino {
  background: linear-gradient(135deg, #d81b60 0%, #ec407a 100%);
  color: white;
}

.casino-rating {
  text-align: right;
}

.stars {
  color: var(--dark-yellow);
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.rating-text {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.casino-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.casino-features {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-secondary);
}

.feature i {
  color: var(--primary-green);
  width: 20px;
}

.bonus-info {
  background: linear-gradient(
    135deg,
    rgba(255, 214, 0, 0.1) 0%,
    rgba(0, 200, 83, 0.05) 100%
  );
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  border: 2px solid var(--primary-yellow);
}

.bonus-amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary-green);
  font-family: var(--font-heading);
}

.bonus-details {
  color: var(--text-secondary);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.bonus-code {
  display: block;
  color: var(--dark-yellow);
  font-weight: 700;
  margin-top: 0.5rem;
}

.casino-actions {
  display: flex;
  gap: 1rem;
}

.btn-play {
  flex: 2;
  background: var(--gradient-green);
  color: white;
  justify-content: center;
  font-weight: 700;
}

.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-green);
}

.btn-review {
  flex: 1;
  background: var(--secondary-bg);
  color: var(--text-primary);
  border: 2px solid var(--primary-yellow);
  justify-content: center;
  font-weight: 700;
}

.btn-review:hover {
  background: var(--primary-yellow);
  transform: translateY(-2px);
}

.glow {
  animation: glow-green 2s ease-in-out infinite alternate;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: rgba(255, 255, 255, 0.8);
  border-top: 4px solid var(--primary-yellow);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.footer-logo i {
  color: var(--primary-yellow);
}

.footer-logo .accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-links a:hover {
  background: var(--gradient-primary);
  color: var(--text-primary);
  transform: translateY(-3px);
  border-color: var(--primary-yellow);
}

.footer-section h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin: 0.6rem 0;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.disclaimer {
  background: rgba(255, 214, 0, 0.1);
  border: 2px solid rgba(255, 214, 0, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}

.disclaimer strong {
  color: var(--primary-yellow);
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Features Section */
.features {
  background: var(--primary-bg);
  padding: 5rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--card-bg);
  border-radius: 20px;
  border: 2px solid var(--secondary-bg);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary-yellow);
}

.feature-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.2rem;
  color: var(--text-primary);
  box-shadow: var(--shadow-glow-yellow);
}

.feature-item:nth-child(even) .feature-icon {
  background: var(--gradient-green);
  color: white;
  box-shadow: var(--shadow-glow-green);
}

.feature-item h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

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

/* Features Section */
.features {
  background: var(--primary-bg);
  padding: 5rem 0;
}

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

.feature-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--card-bg);
  border-radius: 20px;
  border: 2px solid var(--primary-yellow);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary-green);
}

.feature-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: white;
  box-shadow: var(--shadow-glow-green);
}

.feature-item h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

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

/* Payment Methods Section */
.payments-section {
  background: var(--secondary-bg);
  padding: 5rem 0;
}

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

.payment-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.payment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary-yellow);
}

.payment-card.featured {
  border-color: var(--primary-green);
}

.payment-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--gradient-primary);
  color: var(--text-primary);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
}

.payment-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.payment-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
}

.payment-icon.payid {
  background: var(--gradient-green);
}

.payment-icon.cards {
  background: var(--gradient-primary);
  color: var(--text-primary);
}

.payment-icon.neosurf {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.payment-icon.crypto {
  background: var(--gradient-primary);
  color: var(--text-primary);
}

.payment-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-primary);
}

.payment-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.payment-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Bonuses Section */
.bonuses-section {
  background: var(--primary-bg);
  padding: 5rem 0;
}

.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.bonus-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 2px solid var(--primary-yellow);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.bonus-card.hot {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-glow-green);
}

.bonus-label {
  background: var(--gradient-green);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1rem;
}

.bonus-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.bonus-amount-large {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-green);
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.bonus-split {
  margin: 1.5rem 0;
  color: var(--text-secondary);
}

.bonus-split p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.bonus-extras {
  color: var(--dark-yellow);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 1.5rem 0;
}

/* Reviews Section */
.reviews-section {
  background: var(--secondary-bg);
  padding: 5rem 0;
}

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

.review-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid transparent;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary-yellow);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.reviewer-info {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.reviewer-avatar.female {
  background: var(--gradient-primary);
  color: var(--text-primary);
}

.reviewer-details h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.reviewer-location {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.review-rating .stars {
  color: var(--dark-yellow);
  font-size: 0.9rem;
}

.review-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.review-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.review-date {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
  background: var(--primary-bg);
  padding: 5rem 0;
}

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

.faq-item {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  border: 2px solid var(--primary-yellow);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary-green);
}

.faq-question {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

.faq-question i {
  color: var(--primary-green);
  font-size: 1.5rem;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Responsible Gambling Section */
.responsible-gambling-section {
  background: linear-gradient(
    135deg,
    rgba(255, 214, 0, 0.1) 0%,
    rgba(0, 200, 83, 0.05) 100%
  );
  padding: 4rem 0;
}

.rg-content {
  max-width: 900px;
  margin: 0 auto;
}

.rg-text {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid var(--dark-yellow);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  box-shadow: var(--shadow-soft);
}

.rg-text strong {
  color: var(--text-primary);
}

.support-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-item {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid var(--primary-green);
  box-shadow: var(--shadow-soft);
}

.service-item h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.service-item p {
  color: var(--text-secondary);
  margin: 0.5rem 0;
  line-height: 1.6;
}

/* Animations */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes wave {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(15deg);
  }
  75% {
    transform: rotate(-15deg);
  }
}

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

@keyframes glow-green {
  from {
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.3);
  }
  to {
    box-shadow: 0 0 40px rgba(0, 200, 83, 0.6);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-features {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .feature-card {
    flex: 1;
    min-width: 180px;
  }

  .casino-tiles-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 2rem;
  }

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

  .hero-features {
    flex-direction: column;
  }

  .casino-actions {
    flex-direction: column;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .payments-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .bonus-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .support-services {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

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

  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .btn {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }

  .casino-card {
    padding: 1.5rem;
  }

  .casino-tiles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .payment-card {
    padding: 1.5rem;
  }

  .bonus-card {
    padding: 2rem 1.5rem;
  }

  .bonus-amount-large {
    font-size: 2.5rem;
  }

  .review-card {
    padding: 1.5rem;
  }

  .review-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-item {
    padding: 1.5rem;
  }

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

  .service-item {
    padding: 1.5rem;
  }
}
