/* Reelinns - Main Styles */

/* CSS Variables - Brand Colors */
:root {
  /* Primary Colors */
  --emerald: #0c8a43;
  --forest: #0a5a2e;

  /* Accent Colors */
  --gold: #f4c542;
  --warm-gold: #d8a731;
  --shamrock: #12b05e;
  --violet-glow: #7b3bd6;
  --sunset-orange: #ff7a33;

  /* Neutrals */
  --ink: #111417;
  --stone: #2a2f35;
  --mist: #e7ecf1;
  --cloud: #f6f8fa;
  --white: #ffffff;

  /* Typography */
  --font-display: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-alt: "Fredoka", sans-serif;

  /* Shadows */
  --shadow: rgba(0, 0, 0, 0.18);
  --card-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);

  /* Transitions */
  --transition-reel: cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-hover: all 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest) 0%, var(--ink) 100%);
  min-height: 100vh;
}

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

a {
  color: var(--shamrock);
  text-decoration: none;
  transition: var(--transition-hover);
}

a:hover {
  color: var(--gold);
}

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

/* Typography */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 48px;
  line-height: 1.17;
}

h2 {
  font-size: 36px;
  line-height: 1.22;
}

h3 {
  font-size: 28px;
  line-height: 1.29;
}

p {
  margin-bottom: 1rem;
  line-height: 1.625;
}

.highlight {
  background: linear-gradient(45deg, var(--gold), var(--warm-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: var(--transition-hover);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--warm-gold);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 197, 66, 0.3);
}

.btn-secondary {
  background: var(--shamrock);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--emerald);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(18, 176, 94, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--mist);
}

.btn-ghost:hover {
  background: var(--mist);
  color: var(--ink);
  border-color: var(--mist);
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

/* Cards */
.card {
  background: var(--ink);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-hover);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: var(--transition-hover);
}

/* User Profile Styles */
.user-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(244, 197, 66, 0.3);
  border-radius: 20px;
  padding: 6px 12px;
  margin-right: 12px;
}

.user-avatar {
  font-size: 16px;
  color: var(--gold);
}

.user-email {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-profile-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(244, 197, 66, 0.3);
  border-radius: 20px;
  padding: 8px 16px;
  margin-bottom: 12px;
}

.user-profile-mobile .user-avatar {
  font-size: 18px;
  color: var(--gold);
}

.user-profile-mobile .user-email {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.navbar.scrolled {
  background: rgba(17, 20, 23, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-brand .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.logo-icon {
  font-size: 28px;
  animation: spin 3s linear infinite;
}

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

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  transition: var(--transition-hover);
}

.nav-link:hover {
  color: var(--gold);
}

.nav-auth {
  display: flex;
  gap: 12px;
}

/* Hide mobile nav-auth on desktop */
.nav-menu .nav-auth {
  display: none;
}

@media (max-width: 768px) {
  .hero {
    min-height: 120vh;
  }

  .hero .container {
    padding-top: 135px;
  }
  .nav-auth {
    display: none;
  }

  /* Show mobile nav-auth only on mobile */
  .nav-menu .nav-auth {
    display: flex;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      135deg,
      rgba(10, 90, 46, 0.7) 0%,
      rgba(17, 20, 23, 0.7) 50%,
      rgba(42, 47, 53, 0.7) 100%
    ),
    url("../img/bg-hero1.png") center/cover no-repeat;
  opacity: 1;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(244, 197, 66, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(18, 176, 94, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 60% 20%,
      rgba(123, 59, 214, 0.1) 0%,
      transparent 50%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, var(--gold), var(--warm-gold));
  color: var(--ink);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(244, 197, 66, 0.3);
  animation: fadeInUp 1s ease-out 0.1s both;
}

.badge-icon {
  font-size: 16px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

.hero-main-img {
  max-width: 100%;
  height: auto;
  max-height: 650px;
  opacity: 0.95;
  transition: all 0.3s ease;
}

.hero-main-img:hover {
  opacity: 1;
  transform: scale(1.02);
}

.hero-title {
  font-size: 56px;
  margin-bottom: 16px;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--mist);
  line-height: 1.6;
  margin-bottom: 19px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* Border-bottom only on the main page */
.hero .hero-subtitle {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-image {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-obj {
  max-width: 200px;
  height: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.hero-obj:hover {
  opacity: 1;
  transform: scale(1.05);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 48px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(244, 197, 66, 0.2);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  transition: all 0.3s ease;
}

.highlight-pill:hover {
  background: rgba(244, 197, 66, 0.1);
  border-color: rgba(244, 197, 66, 0.4);
  transform: translateY(-2px);
}

.highlight-emoji {
  font-size: 16px;
}

.highlight-text {
  white-space: nowrap;
}

.avatar-strip {
  display: none;
}
@media (max-width: 768px) {
  .hero-highlights {
    justify-content: center;
    gap: 8px;
  }

  .highlight-pill {
    font-size: 13px;
    padding: 10px 14px;
  }
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--shamrock), var(--emerald));
  border: 3px solid var(--white);
  margin-left: -8px;
}

.avatar-more {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--stone);
  border: 3px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-left: -8px;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section h2 {
  text-align: center;
  margin-bottom: 48px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: var(--mist);
  max-width: 800px;
  margin: 0 auto 48px;
}

/* AU Section Enhanced Styles */
.au-header {
  text-align: center;
  margin-bottom: 64px;
}

.au-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, var(--gold), var(--warm-gold));
  color: var(--ink);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(244, 197, 66, 0.3);
}

.seo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(45deg, var(--gold), var(--warm-gold));
  color: var(--ink);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin: 0 auto 24px auto;
  box-shadow: 0 4px 16px rgba(244, 197, 66, 0.3);
  width: fit-content;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, var(--gold), var(--warm-gold));
  color: var(--ink);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(244, 197, 66, 0.3);
}

.badge-icon {
  font-size: 16px;
}

.au-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 64px;
}

.stat-card {
  background: linear-gradient(135deg, var(--ink), var(--stone));
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--shamrock));
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--gold);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

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

/* Enhanced Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.feature-card {
  background: var(--ink);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card-inner {
  position: relative;
  z-index: 2;
}

.feature-icon-wrapper {
  margin-bottom: 24px;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
  transition: transform 0.3s ease;
}

.feature-icon img.emoji {
  width: 48px !important;
  height: 48px !important;
  font-size: 48px !important;
  display: block !important;
  margin: 0 auto !important;
}

.feature-glow {
  display: none;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 600;
}

.feature-card p {
  color: var(--mist);
  line-height: 1.6;
  margin-bottom: 0;
}

.feature-accent {
  display: none;
}

/* Enhanced Steps Section */
.steps-section {
  background: var(--ink);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.steps-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(244, 197, 66, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(18, 176, 94, 0.05) 0%,
      transparent 50%
    );
}

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

.steps-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, var(--shamrock), var(--emerald));
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(18, 176, 94, 0.3);
}

.steps-header h2 {
  font-size: 42px;
  margin-bottom: 24px;
  color: var(--white);
}

.steps-header .section-intro {
  font-size: 18px;
  color: var(--mist);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  align-items: stretch;
}

.step-card {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.step-card-inner {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.step-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--shamrock));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.step-card:hover .step-card-inner {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--gold);
}

.step-card:hover .step-card-inner::before {
  transform: scaleX(1);
}

.step-number-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--gold), var(--warm-gold));
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(244, 197, 66, 0.3);
  transition: all 0.3s ease;
}

.step-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(244, 197, 66, 0.2), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.step-card:hover .step-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}

.step-card:hover .step-number {
  transform: scale(1.1);
}

.step-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.step-card h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 600;
}

.step-card p {
  color: var(--mist);
  line-height: 1.6;
  font-size: 16px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-connector {
  position: absolute;
  top: 40px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--shamrock), transparent);
  z-index: 1;
}

.step-card:last-child .step-connector {
  display: none;
}

.steps-cta {
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Featured Game Section */
.featured-game {
  background: rgba(10, 90, 46, 0.1);
  padding: 100px 0;
}

.featured-header {
  text-align: center;
  margin-bottom: 80px;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, var(--shamrock), var(--emerald));
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(18, 176, 94, 0.3);
}

.featured-header h2 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.featured-subtitle {
  font-size: 20px;
  color: var(--mist);
  max-width: 600px;
  margin: 0 auto;
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.game-preview-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.game-preview-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--gold);
}

.game-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.play-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--shamrock);
  font-size: 14px;
  font-weight: 600;
}

.play-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--shamrock);
  border-radius: 50%;
  color: var(--white);
  font-size: 10px;
}

.provider-badge {
  background: linear-gradient(45deg, var(--gold), var(--warm-gold));
  color: var(--ink);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.game-preview-image {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(18, 176, 94, 0.1),
    rgba(244, 197, 66, 0.1)
  );
  overflow: hidden;
}

.game-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

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

.preview-placeholder {
  text-align: center;
  color: var(--mist);
}

.placeholder-icon {
  font-size: 64px;
  margin-bottom: 16px;
  display: block;
}

.placeholder-text {
  font-size: 16px;
  font-weight: 500;
}

.game-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.highlight-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-label {
  color: var(--mist);
  font-size: 14px;
}

.highlight-value {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}

.game-description {
  margin-bottom: 40px;
}

.game-description p {
  color: var(--mist);
  line-height: 1.6;
  font-size: 16px;
}

.featured-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-icon {
  margin-right: 8px;
}

/* Game Page Styles */
.game-hero {
  background: linear-gradient(135deg, var(--ink), var(--forest));
  padding: 120px 0 80px;
  margin-top: 80px;
}

.game-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 14px;
}

.breadcrumb-link {
  color: var(--mist);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: var(--shamrock);
}

.breadcrumb-separator {
  color: var(--mist);
  opacity: 0.5;
}

.breadcrumb-current {
  color: var(--white);
  font-weight: 600;
}

.game-hero-header {
  text-align: center;
  margin-bottom: 48px;
}

.game-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, var(--gold), var(--warm-gold));
  color: var(--ink);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

.game-hero h1 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.game-hero-subtitle {
  font-size: 20px;
  color: var(--mist);
  max-width: 600px;
  margin: 0 auto;
}

.game-features-quick {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.feature-quick {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.feature-icon {
  font-size: 16px;
}

.game-container {
  padding: 80px 0;
  background: var(--charcoal);
}

.game-frame-wrapper {
  background: var(--ink);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-frame-header {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
}

.game-info-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.game-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--shamrock);
  font-size: 14px;
  font-weight: 500;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--shamrock);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.provider-logo {
  background: linear-gradient(45deg, var(--gold), var(--warm-gold));
  color: var(--ink);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.game-frame {
  position: relative;
  width: 100%;
  min-height: 600px;
}

.game-frame iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

.game-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.game-control-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 16px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.game-control-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--shamrock);
  color: var(--shamrock);
}

.game-info-section {
  padding: 80px 0;
  background: rgba(17, 20, 23, 0.5);
}

.game-info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.game-description-card,
.game-stats-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-description-card h2,
.game-stats-card h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-family: var(--font-display);
}

.game-description-card p {
  color: var(--mist);
  line-height: 1.6;
  margin-bottom: 20px;
}

.game-features-list h3 {
  color: var(--shamrock);
  font-size: 18px;
  margin: 32px 0 16px;
}

.game-features-list ul {
  list-style: none;
  padding: 0;
}

.game-features-list li {
  color: var(--mist);
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.game-features-list li::before {
  content: "🍀";
  position: absolute;
  left: 0;
  top: 0;
}

.game-features-list strong {
  color: var(--white);
}

.stats-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-label {
  color: var(--mist);
  font-size: 14px;
}

.stat-value {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}

.responsible-gaming-notice {
  background: rgba(18, 176, 94, 0.1);
  border: 1px solid rgba(18, 176, 94, 0.3);
  border-radius: 12px;
  padding: 20px;
}

.responsible-gaming-notice h4 {
  color: var(--shamrock);
  margin-bottom: 12px;
  font-size: 16px;
}

.responsible-gaming-notice p {
  color: var(--mist);
  font-size: 14px;
  margin: 0;
}

/* Enhanced Benefits Section */
.benefits {
  background: var(--ink);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 30% 20%,
      rgba(18, 176, 94, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(244, 197, 66, 0.05) 0%,
      transparent 50%
    );
}

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

.benefits-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, var(--shamrock), var(--emerald));
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(18, 176, 94, 0.3);
}

.benefits-header h2 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 20px;
  font-family: var(--font-display);
}

.benefits-subtitle {
  font-size: 18px;
  color: var(--mist);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 2;
}

.benefit-card {
  position: relative;
}

.benefit-card-inner {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--shamrock), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-card-inner {
  transform: translateY(-8px);
  border-color: rgba(18, 176, 94, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.benefit-card:hover .benefit-card-inner::before {
  transform: scaleX(1);
}

.benefit-icon-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.benefit-icon {
  font-size: 48px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.benefit-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(18, 176, 94, 0.2), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-content {
  flex-grow: 1;
  text-align: center;
}

.benefit-content h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 600;
  font-family: var(--font-display);
}

.benefit-content p {
  color: var(--mist);
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 15px;
}

.benefit-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--shamrock);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.benefit-link:hover {
  color: var(--gold);
  gap: 12px;
}

.link-arrow {
  transition: transform 0.3s ease;
}

.benefit-link:hover .link-arrow {
  transform: translateX(4px);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

#qa .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, var(--gold), var(--warm-gold));
  color: var(--ink);
  padding: 8px 20px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(244, 197, 66, 0.3);
}

#qa h2 {
  text-align: center;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-hover);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  background: var(--ink);
  transition: var(--transition-hover);
}

.faq-header:hover {
  background: var(--stone);
}

.faq-header h3 {
  margin: 0;
  font-size: 20px;
}

.faq-toggle {
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
}

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

.faq-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-content p {
  margin-top: 24px;
}

.faq-item.active .faq-content {
  max-height: 200px;
  padding: 0 24px 24px;
}

/* Gallery - Minimalist Design */
.gallery {
  position: relative;
  background: var(--ink);
  padding: 80px 0;
  overflow: hidden;
}

.gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      1200px 300px at 20% 50%,
      rgba(255, 215, 0, 0.03),
      transparent 40%
    ),
    radial-gradient(
      800px 200px at 80% 30%,
      rgba(0, 255, 170, 0.02),
      transparent 50%
    );
  pointer-events: none;
}

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

.gallery-header .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.15),
    rgba(0, 255, 170, 0.1)
  );
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}

.gallery-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--white), var(--mist));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-subtitle {
  font-size: 18px;
  color: var(--mist);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
}

.gallery-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  cursor: default;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.2);
}

.gallery-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

/* overlay and play button removed per minimalist update */

.gallery-info {
  padding: 20px;
  text-align: center;
}

.gallery-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.gallery-info p {
  font-size: 14px;
  color: var(--mist);
  margin: 0;
}

@media (max-width: 768px) {
  .gallery {
    padding: 56px 0;
  }

  .gallery-header {
    margin-bottom: 40px;
  }

  .gallery-header h2 {
    font-size: 32px;
  }

  .gallery-subtitle {
    font-size: 16px;
  }

  .gallery-grid {
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-image-wrapper {
    height: 180px;
  }

  .gallery-info {
    padding: 16px;
  }

  .gallery-info h3 {
    font-size: 16px;
  }

  .gallery-info p {
    font-size: 13px;
  }

  .gallery-play-btn {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: relative;
  margin: 5% auto;
  max-width: 90%;
  max-height: 90%;
}

.modal-content img {
  width: 100%;
  height: auto;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: var(--white);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: var(--gold);
}

/* Contact Form - Minimalist */
.contact-form {
  position: relative;
  overflow: hidden;
}

.contact-form .container {
  position: relative;
  z-index: 1;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, var(--gold), var(--warm-gold));
  color: var(--ink);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(244, 197, 66, 0.3);
}

.contact-form-header h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--white);
}

.contact-form-subtitle {
  color: var(--mist);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.form-container {
  max-width: 500px;
  margin: 0 auto;
}

.form-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--shamrock), var(--gold));
  opacity: 0.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.newsletter-form input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--shamrock);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(18, 176, 94, 0.1);
}

.newsletter-form input::placeholder {
  color: var(--mist);
  opacity: 0.7;
}

.newsletter-form button {
  padding: 16px 24px;
  background: linear-gradient(45deg, var(--shamrock), var(--emerald));
  border: none;
  border-radius: 12px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 176, 94, 0.3);
}

.contact-info {
  text-align: center;
  margin-bottom: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info p {
  color: var(--mist);
  margin-bottom: 8px;
}

.contact-info strong {
  color: var(--white);
}

.contact-info a {
  color: var(--shamrock);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--emerald);
}

.privacy-consent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--mist);
}

.privacy-consent input[type="checkbox"] {
  accent-color: var(--shamrock);
}

.privacy-consent a {
  color: var(--shamrock);
  text-decoration: none;
}

.privacy-consent a:hover {
  color: var(--emerald);
}

/* Contact Form Mobile */
@media (max-width: 768px) {
  .contact-form {
    padding: 56px 0;
  }

  .contact-form-header {
    margin-bottom: 32px;
  }

  .contact-form-header h2 {
    font-size: 28px;
  }

  .contact-form-subtitle {
    font-size: 16px;
  }

  .form-card {
    padding: 24px;
    margin: 0 16px;
  }

  .newsletter-form input,
  .newsletter-form button {
    padding: 14px 16px;
    font-size: 14px;
  }
}

/* Footer */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px 0 24px;
}

/* Disclaimer Box - Featured Section */
.disclaimer-box {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.05),
    rgba(0, 255, 170, 0.03)
  );
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 48px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.disclaimer-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      600px 200px at 20% 30%,
      rgba(255, 215, 0, 0.02),
      transparent 50%
    ),
    radial-gradient(
      400px 150px at 80% 70%,
      rgba(0, 255, 170, 0.015),
      transparent 50%
    );
  pointer-events: none;
}

.disclaimer-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  text-align: center;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--gold), var(--emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.disclaimer-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mist);
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.age-emoji {
  font-size: 40px;
}

.disclaimer-logos img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: all 0.3s ease;
  filter: brightness(1.1);
}

.disclaimer-logos a:hover img {
  opacity: 1;
  transform: translateY(-2px);
  filter: brightness(1.3);
}

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

.footer-disclaimer {
  margin-bottom: 32px;
}

.help-orgs {
  display: none;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--mist);
  font-size: 14px;
}

.footer-copyright {
  font-size: 12px;
  color: var(--mist);
  opacity: 0.5;
}

/* Age Verification Popup */
.age-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3000;
}

.age-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.97);
}

.age-popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--ink);
  padding: 48px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--card-shadow);
  max-width: 400px;
  width: 90%;
}

.age-popup-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

/* Number Badge Formatting */
.num span {
  color: var(--gold);
  font-weight: 700;
}

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

.module.au.animation {
  animation: fadeInUp 1s ease-out;
}

.module.qa.animation-qa {
  animation: fadeInUp 1s ease-out;
}

/* Mobile Screen Shield */
#screenShield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-content {
  background: var(--ink);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  max-width: 300px;
}

/* Authentication Pages */
.auth-section {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: linear-gradient(
    135deg,
    var(--forest) 0%,
    var(--ink) 50%,
    var(--stone) 100%
  );
}

.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.auth-card {
  background: var(--ink);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-header h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.auth-header p {
  color: var(--mist);
  font-size: 16px;
}

.auth-form {
  max-width: 400px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--white);
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 16px;
  transition: var(--transition-hover);
}

.form-group input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244, 197, 66, 0.1);
}

.form-help {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--mist);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: transparent;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--transition-hover);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--gold);
  border-color: var(--gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--ink);
  font-weight: bold;
  font-size: 12px;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.auth-submit {
  width: 100%;
  margin-top: 16px;
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-footer p {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--mist);
}

.auth-footer a {
  color: var(--shamrock);
  font-weight: 500;
}

.auth-footer a:hover {
  color: var(--gold);
}

/* Auth Benefits/Welcome Sections */
.auth-benefits,
.auth-welcome {
  padding: 32px;
}

.auth-benefits h3,
.auth-welcome h3 {
  font-size: 24px;
  margin-bottom: 24px;
  text-align: center;
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefit-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}

.benefit-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
}

.benefit-item p {
  margin: 0;
  font-size: 14px;
  color: var(--mist);
}

.auth-welcome p {
  text-align: center;
  color: var(--mist);
  margin-bottom: 32px;
}

.welcome-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--white);
}

.feature-highlight .feature-icon {
  font-size: 18px;
}

.quick-access {
  text-align: center;
}

.quick-access h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--gold);
}

.quick-link {
  display: block;
  margin-bottom: 8px;
  color: var(--shamrock);
  font-size: 14px;
  transition: var(--transition-hover);
}

.quick-link:hover {
  color: var(--gold);
}

.password-strength {
  margin-top: 4px;
  font-size: 12px;
}

/* Games Page Styles */
.games-hero {
  position: relative;
  min-height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.games-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      135deg,
      rgba(10, 90, 46, 0.7) 0%,
      rgba(17, 20, 23, 0.7) 50%,
      rgba(42, 47, 53, 0.7) 100%
    ),
    url("../img/bg-hero1.png") center/cover no-repeat;
  opacity: 1;
}

.games-hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(244, 197, 66, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(18, 176, 94, 0.1) 0%,
      transparent 50%
    );
}

.games-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.games-hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease-out;
}

.games-hero .hero-subtitle {
  font-size: 20px;
  color: var(--mist);
  margin-bottom: 48px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.games-hero .hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.games-scroll-btn {
  animation: fadeInUp 1s ease-out 0.6s both;
  margin-top: 16px;
}

.games-header {
  padding: 120px 0 80px;
  background: linear-gradient(
    135deg,
    var(--forest) 0%,
    var(--ink) 50%,
    var(--stone) 100%
  );
  text-align: center;
}

.games-header-content h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.games-subtitle {
  font-size: 20px;
  color: var(--mist);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.games-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 32px;
}

.games-section {
  padding: 80px 0;
  background: rgba(17, 20, 23, 0.3);
}

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

.game-tile {
  background: var(--ink);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.game-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.game-tile.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

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

.game-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  position: relative;
}

.book-of-dead-bg {
  background: linear-gradient(45deg, #8b4513, #daa520);
}

.reactoonz-bg {
  background: linear-gradient(45deg, #4b0082, #9400d3);
}

.fire-joker-bg {
  background: linear-gradient(45deg, #ff4500, #ff6347);
}

.moon-princess-bg {
  background: linear-gradient(45deg, #ff69b4, #ffb6c1);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.game-tile:hover .game-overlay {
  opacity: 1;
  pointer-events: auto;
}

.play-btn {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-hover);
  transform: scale(0.9);
}

.game-tile:hover .play-btn {
  transform: scale(1);
}

.play-btn:hover {
  background: var(--warm-gold);
  transform: scale(1.05);
}

.play-icon {
  font-size: 14px;
}

.game-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.demo-badge {
  background: var(--shamrock);
  color: var(--white);
}

.game-provider {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
}

.game-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.game-info h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--white);
}

.game-info p {
  font-size: 14px;
  color: var(--mist);
  margin-bottom: 16px;
  line-height: 1.5;
}

.game-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(18, 176, 94, 0.12);
  color: var(--shamrock);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.game-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Desktop: pin tags + footer to the bottom of the card */
@media (min-width: 769px) {
  .games-grid {
    align-items: stretch;
  }
  .game-info .game-tags {
    margin-top: auto;
  }
  .game-info {
    padding-bottom: 28px; /* space from bottom on desktop */
  }
  .game-footer {
    margin-top: 12px;
  }
}

.game-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  color: var(--gold);
  font-size: 16px;
}

.rating-score {
  font-size: 14px;
  color: var(--mist);
  font-weight: 500;
}

.game-link {
  color: var(--shamrock);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-hover);
}

.game-link:hover {
  color: var(--gold);
}

/* SEO Content */
.seo-content {
  padding: 80px 0;
  background: rgba(10, 90, 46, 0.05);
}

.seo-text h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
}

.seo-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}

.seo-column p {
  margin-bottom: 24px;
  line-height: 1.7;
  color: var(--mist);
}

.seo-footer p {
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: var(--mist);
  max-width: 1000px;
  margin: 0 auto;
}

/* Games CTA */
.games-cta {
  padding: 80px 0;
  background: var(--ink);
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: var(--mist);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Active navigation link */
.nav-link.active {
  color: var(--gold);
  font-weight: 600;
}

/* Game Detail Pages */
.breadcrumb {
  padding: 100px 0 20px;
  background: var(--ink);
}

.breadcrumb-nav {
  font-size: 14px;
  color: var(--mist);
}

.breadcrumb-nav a {
  color: var(--shamrock);
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  color: var(--gold);
}

.breadcrumb-sep {
  margin: 0 8px;
  color: var(--mist);
}

.breadcrumb-current {
  color: var(--white);
  font-weight: 500;
}

.game-hero {
  padding: 40px 0 80px;
  background: linear-gradient(
    135deg,
    var(--forest) 0%,
    var(--ink) 50%,
    var(--stone) 100%
  );
}

.game-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.game-hero-image {
  position: relative;
}

.game-hero-placeholder {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.demo-badge {
  background: var(--shamrock);
  color: var(--white);
}

.age-badge {
  background: var(--sunset-orange);
  color: var(--white);
}

.social-badge {
  background: var(--violet-glow);
  color: var(--white);
}

.game-hero-info h1 {
  font-size: 42px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.demo-text {
  color: var(--shamrock);
  font-size: 0.7em;
}

.game-provider-tag {
  background: var(--gold);
  color: var(--ink);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.game-tagline {
  font-size: 18px;
  color: var(--mist);
  margin-bottom: 32px;
  line-height: 1.5;
}

.game-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.stat-item {
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--mist);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.rating-number {
  color: var(--mist);
  font-size: 14px;
  margin-left: 8px;
}

.game-features {
  margin-bottom: 32px;
}

.game-features h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--gold);
}

.features-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(244, 197, 66, 0.12);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
}

.game-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.play-icon {
  margin-right: 8px;
}

/* Game About Section */
.game-about {
  padding: 80px 0;
  background: rgba(17, 20, 23, 0.3);
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--mist);
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.game-info-card,
.game-tags-card {
  background: var(--ink);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.game-info-card h3,
.game-tags-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--gold);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-label {
  font-size: 14px;
  color: var(--mist);
}

.info-value {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}

.tags-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* How to Play Section */
.how-to-play {
  padding: 80px 0;
  background: rgba(10, 90, 46, 0.05);
}

.how-to-play h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

/* Old step styles removed - conflicts with new enhanced steps section */

.safety-note {
  background: var(--ink);
  padding: 32px;
  border-radius: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid rgba(18, 176, 94, 0.3);
}

.safety-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.safety-content h3 {
  color: var(--shamrock);
  margin-bottom: 8px;
}

.safety-content p {
  color: var(--mist);
  margin: 0;
  line-height: 1.5;
}

/* More Games Section */
.more-games {
  padding: 80px 0;
  background: var(--ink);
}

.more-games h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.mini-game-card {
  background: var(--stone);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.mini-game-image {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
}

.mini-game-card h4 {
  padding: 16px 16px 8px;
  margin: 0;
  font-size: 16px;
  color: var(--white);
}

.mini-rating {
  display: block;
  padding: 0 16px 16px;
  font-size: 12px;
  color: var(--gold);
}

.more-games-cta {
  text-align: center;
}

/* Animations */
.animate-in {
  animation: fadeInUp 0.8s ease-out;
}

/* Featured Game Page */
.featured-game-hero {
  padding: 120px 0 80px;
  background: linear-gradient(
    135deg,
    var(--forest) 0%,
    var(--ink) 50%,
    var(--stone) 100%
  );
  min-height: 100vh;
}

.featured-game-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.game-showcase {
  position: sticky;
  top: 120px;
}

.game-screen {
  background: var(--ink);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--card-shadow);
  border: 2px solid var(--gold);
  position: relative;
  margin-bottom: 24px;
}

.reels-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.reel {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 8px 4px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.reel.spinning {
  animation: reelSpin 600ms var(--transition-reel);
}

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

.symbol {
  font-size: 24px;
  text-align: center;
  padding: 4px;
  transition: all 0.3s ease;
}

.reel.spinning .symbol {
  animation: symbolFlip 300ms ease-in-out infinite;
}

@keyframes symbolFlip {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 18px;
}

.win-display {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(244, 197, 66, 0.95);
  color: var(--ink);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(244, 197, 66, 0.5);
}

.win-display.win-animation {
  animation: winPulse 1s ease-out;
}

@keyframes winPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.win-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.win-amount {
  font-size: 18px;
  font-weight: 600;
}

.game-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
}

.control-btn {
  background: var(--stone);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-hover);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 60px;
}

.control-btn:hover {
  background: var(--mist);
  color: var(--ink);
  transform: translateY(-2px);
}

.control-btn.active {
  background: var(--shamrock);
  color: var(--white);
}

.control-icon {
  font-size: 16px;
}

.spin-btn {
  background: linear-gradient(45deg, var(--gold), var(--warm-gold));
  border: none;
  color: var(--ink);
  padding: 20px 32px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-hover);
  box-shadow: 0 4px 16px rgba(244, 197, 66, 0.3);
  min-width: 80px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spin-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(244, 197, 66, 0.4);
}

.spin-btn.spinning {
  animation: spinButtonRotate 2s linear infinite;
}

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

.game-info-panel h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.game-description {
  font-size: 18px;
  color: var(--mist);
  line-height: 1.6;
  margin-bottom: 32px;
}

.game-features-panel {
  margin-bottom: 32px;
}

.game-features-panel h3 {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 16px;
}

.features-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.feature-emoji {
  font-size: 20px;
}

.game-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.stat-box {
  background: var(--ink);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--mist);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.game-disclaimer {
  background: rgba(18, 176, 94, 0.1);
  border: 1px solid rgba(18, 176, 94, 0.3);
  padding: 16px;
  border-radius: 12px;
}

.game-disclaimer p {
  margin: 0;
  font-size: 14px;
  color: var(--shamrock);
  line-height: 1.5;
}

/* Game Overview */
.game-overview {
  padding: 80px 0;
  background: rgba(17, 20, 23, 0.3);
}

.overview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.overview-content h2 {
  margin-bottom: 24px;
}

.overview-content p {
  color: var(--mist);
  line-height: 1.7;
  margin-bottom: 20px;
}

.overview-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.highlight h4 {
  margin-bottom: 8px;
  color: var(--gold);
}

.highlight p {
  margin: 0;
  font-size: 14px;
}

.play-stats {
  background: var(--ink);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: var(--card-shadow);
}

.play-stats h3 {
  color: var(--gold);
  margin-bottom: 20px;
}

.live-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.live-stat:last-child {
  border-bottom: none;
}

.live-label {
  color: var(--mist);
  font-size: 14px;
}

.live-value {
  color: var(--white);
  font-weight: 600;
}

.social-features {
  background: var(--ink);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
}

.social-features h3 {
  color: var(--gold);
  margin-bottom: 20px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--mist);
}

.social-icon {
  font-size: 18px;
}

/* Game CTA */
.game-cta {
  padding: 80px 0;
  background: var(--ink);
  text-align: center;
}

.cta-content h2 {
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--mist);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--mist);
  font-size: 14px;
}

.cta-icon {
  font-size: 18px;
}

/* Settings Modal */
.settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.settings-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.settings-content {
  position: relative;
  background: var(--ink);
  border-radius: 16px;
  max-width: 400px;
  width: 90%;
  box-shadow: var(--card-shadow);
}

.settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.settings-header h3 {
  margin: 0;
  color: var(--gold);
}

.close-settings {
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.settings-body {
  padding: 0 24px 24px;
}

.setting-item {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.setting-item label {
  color: var(--white);
  font-weight: 500;
}

.setting-item input,
.setting-item select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 6px;
}

/* Legal Pages */
.legal-page {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--ink) 100%);
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(17, 20, 23, 0.8);
  padding: 48px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-content h1 {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 8px;
  text-align: center;
}

.legal-intro {
  text-align: center;
  color: var(--mist);
  font-style: italic;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 24px;
}

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

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

.legal-section h2 {
  font-size: 24px;
  color: var(--shamrock);
  margin-bottom: 16px;
  border-left: 4px solid var(--shamrock);
  padding-left: 16px;
}

.legal-section h3 {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 12px;
  margin-top: 24px;
}

.legal-section p {
  color: var(--mist);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-section ul {
  color: var(--mist);
  line-height: 1.7;
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-section li {
  margin-bottom: 8px;
}

.legal-section a {
  color: var(--shamrock);
  font-weight: 500;
}

.legal-section a:hover {
  color: var(--gold);
}

.legal-subsections {
  margin-top: 16px;
}

.legal-subsection {
  background: rgba(18, 176, 94, 0.05);
  border: 1px solid rgba(18, 176, 94, 0.2);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
}

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

.legal-subsection h3 {
  font-size: 18px;
  color: var(--shamrock);
  margin-bottom: 12px;
  font-weight: 600;
}

.legal-subsection p {
  color: var(--mist);
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-details {
  background: rgba(18, 176, 94, 0.1);
  border: 1px solid rgba(18, 176, 94, 0.3);
  padding: 24px;
  border-radius: 12px;
  margin-top: 16px;
}

.contact-details p {
  margin-bottom: 12px;
  color: var(--white);
}

.contact-details strong {
  color: var(--shamrock);
}

.complaint-info {
  background: rgba(244, 197, 66, 0.1);
  border: 1px solid rgba(244, 197, 66, 0.3);
  padding: 24px;
  border-radius: 12px;
  margin-top: 16px;
}

.complaint-info p {
  margin-bottom: 12px;
  color: var(--white);
}

.complaint-info strong {
  color: var(--gold);
}

/* Contact Page Styles */
.contact-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      135deg,
      rgba(10, 90, 46, 0.8) 0%,
      rgba(17, 20, 23, 0.8) 50%,
      rgba(42, 47, 53, 0.8) 100%
    ),
    url("../img/bg-hero1.png") center/cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, var(--shamrock), var(--emerald));
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(18, 176, 94, 0.3);
}

.contact-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-form-container {
  display: flex;
  justify-content: center;
}

.contact-card {
  background: rgba(17, 20, 23, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 3;
}

.contact-header {
  text-align: center;
  margin-bottom: 32px;
}

.contact-header h2 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--white);
}

.contact-header p {
  color: var(--mist);
  font-size: 16px;
}

.contact-form .form-row {
  margin-bottom: 24px;
}

.contact-form .form-group {
  margin-bottom: 0;
}

.contact-form label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--shamrock);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(18, 176, 94, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--mist);
  opacity: 0.7;
}

.contact-form select {
  cursor: pointer;
}

.contact-form select option {
  background: var(--ink);
  color: var(--white);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-btn {
  width: 100%;
  background: linear-gradient(45deg, var(--shamrock), var(--emerald));
  border: none;
  padding: 18px 24px;
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 32px 0 24px;
  box-shadow: 0 4px 20px rgba(18, 176, 94, 0.3);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(18, 176, 94, 0.4);
  background: linear-gradient(45deg, var(--emerald), var(--shamrock));
}

.contact-btn:active {
  transform: translateY(0);
}

/* Contact Info Section */
.contact-info-section {
  padding: 80px 0;
  background: rgba(17, 20, 23, 0.3);
}

.contact-info-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 64px;
}

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

.info-card {
  background: var(--ink);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--shamrock), var(--emerald));
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.info-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.info-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--shamrock);
}

.info-card p {
  color: var(--mist);
  margin-bottom: 20px;
  line-height: 1.6;
}

.info-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-link:hover {
  color: var(--warm-gold);
}

.info-address {
  color: var(--white);
  font-style: normal;
  line-height: 1.6;
}

.info-hours div {
  color: var(--white);
  margin-bottom: 8px;
}

/* Contact FAQ */
.contact-faq {
  padding: 80px 0;
  background: rgba(10, 90, 46, 0.05);
}

.contact-faq h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 16px;
}

/* Contact Community */
.contact-community {
  padding: 80px 0;
  background: var(--ink);
  text-align: center;
}

.community-content h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.community-content p {
  font-size: 18px;
  color: var(--mist);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.community-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.community-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: var(--white);
  font-weight: 500;
  transition: all 0.3s ease;
}

.community-feature:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 20px;
}

.community-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Login Page Styles */
.login-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.login-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      135deg,
      rgba(10, 90, 46, 0.8) 0%,
      rgba(17, 20, 23, 0.8) 50%,
      rgba(42, 47, 53, 0.8) 100%
    ),
    url("../img/bg-hero1.png") center/cover no-repeat;
}

.login-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.login-form-container {
  display: flex;
  justify-content: center;
}

.login-card {
  background: rgba(17, 20, 23, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 450px;
}

.login-header {
  text-align: center;
  margin-bottom: 32px;
}

.login-header h2 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--white);
}

.login-header p {
  color: var(--mist);
  font-size: 16px;
}

.login-form .form-row {
  margin-bottom: 24px;
}

.login-form .form-group {
  margin-bottom: 0;
}

.login-form label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
}

.login-form input[type="email"],
.login-form input[type="password"] {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 16px;
  transition: all 0.3s ease;
}

.login-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(244, 197, 66, 0.1);
}

.login-form input::placeholder {
  color: var(--mist);
  opacity: 0.7;
}

.form-options {
  margin: 24px 0 32px;
}

.remember-me {
  width: 100%;
}

.login-btn {
  width: 100%;
  background: linear-gradient(45deg, var(--gold), var(--warm-gold));
  border: none;
  padding: 18px 24px;
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 32px 0 24px;
  box-shadow: 0 4px 20px rgba(244, 197, 66, 0.3);
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244, 197, 66, 0.4);
  background: linear-gradient(45deg, var(--warm-gold), var(--gold));
}

.login-btn:active {
  transform: translateY(0);
}

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

.login-footer p {
  color: var(--mist);
  font-size: 14px;
  margin: 0;
}

.register-link {
  color: var(--shamrock);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.register-link:hover {
  color: var(--gold);
}

.login-benefits {
  padding: 80px 0;
  background: rgba(17, 20, 23, 0.5);
}

.login-benefits h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 64px;
}

/* Register Page Styles */
.register-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.register-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      135deg,
      rgba(10, 90, 46, 0.8) 0%,
      rgba(17, 20, 23, 0.8) 50%,
      rgba(42, 47, 53, 0.8) 100%
    ),
    url("../img/bg-hero1.png") center/cover no-repeat;
}

.register-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--mist);
  line-height: 1.6;
  margin-bottom: 19px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

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

.register-form-container {
  display: flex;
  justify-content: center;
}

.register-card {
  background: rgba(17, 20, 23, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 500px;
}

.register-header {
  text-align: center;
  margin-bottom: 32px;
}

.register-header h2 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--white);
}

.register-header p {
  color: var(--mist);
  font-size: 16px;
}

.register-form .form-row {
  margin-bottom: 24px;
}

.register-form .form-group {
  margin-bottom: 0;
}

.register-form label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
}

.label-icon {
  font-size: 16px;
}

.register-form input[type="email"],
.register-form input[type="password"],
.register-form input[type="text"] {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 16px;
  transition: all 0.3s ease;
}

.register-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(244, 197, 66, 0.1);
}

.register-form input::placeholder {
  color: var(--mist);
  opacity: 0.7;
}

.form-checkboxes {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
}

.modern-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 12px;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.modern-checkbox:hover {
  background: rgba(255, 255, 255, 0.05);
}

.modern-checkbox input[type="checkbox"] {
  display: none;
}

.checkmark-modern {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.modern-checkbox input[type="checkbox"]:checked + .checkmark-modern {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.checkbox-text {
  display: block;
  font-size: 14px;
  color: var(--white);
  line-height: 1.4;
  text-align: left;
}

.checkbox-text small {
  color: var(--mist);
  font-size: 12px;
  opacity: 0.8;
}

/* Checkbox Error States */
.checkbox-item.error {
  animation: shakeError 0.4s ease-in-out;
}

.checkbox-item.error .modern-checkbox {
  border-color: #ff4444;
  background: rgba(255, 68, 68, 0.1);
}

.checkbox-item.error .checkmark-modern {
  border-color: #ff4444;
  color: #ff4444;
}

.checkbox-item.error .checkbox-text {
  color: #ff4444;
}

.checkbox-item.error .checkbox-text small {
  color: #ff6666;
  font-weight: 600;
}

@keyframes shakeError {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.checkbox-text a {
  color: var(--shamrock);
  text-decoration: underline;
}

.checkbox-text a:hover {
  color: var(--gold);
}

.register-btn {
  width: 100%;
  background: linear-gradient(45deg, var(--gold), var(--warm-gold));
  border: none;
  padding: 18px 24px;
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 32px 0 24px;
  box-shadow: 0 4px 20px rgba(244, 197, 66, 0.3);
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244, 197, 66, 0.4);
  background: linear-gradient(45deg, var(--warm-gold), var(--gold));
}

.register-btn:active {
  transform: translateY(0);
}

.btn-icon {
  font-size: 20px;
}

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

.register-footer p {
  color: var(--mist);
  font-size: 14px;
  margin: 0;
}

.login-link {
  color: var(--shamrock);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.login-link:hover {
  color: var(--gold);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--mist);
  text-align: center;
}

.trust-icon {
  font-size: 16px;
}

/* Register Benefits Section */
.register-benefits {
  padding: 80px 0;
  background: rgba(17, 20, 23, 0.5);
}

.register-benefits h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 64px;
}

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

.benefit-card {
  background: var(--ink);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--shamrock));
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-card .benefit-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.benefit-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--gold);
}

.benefit-card p {
  color: var(--mist);
  margin-bottom: 24px;
  line-height: 1.6;
}

.benefit-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.benefit-card li {
  padding: 8px 0;
  color: var(--white);
  position: relative;
  padding-left: 24px;
}

.benefit-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--shamrock);
  font-weight: bold;
}

/* About Page Styles */
.about-hero {
  position: relative;
  min-height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.about-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      135deg,
      rgba(10, 90, 46, 0.7) 0%,
      rgba(17, 20, 23, 0.7) 50%,
      rgba(42, 47, 53, 0.7) 100%
    ),
    url("../img/bg-hero1.png") center/cover no-repeat;
  opacity: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease-out;
}

.about-hero .hero-subtitle {
  font-size: 20px;
  color: var(--mist);
  margin-bottom: 48px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.about-hero .hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* Our Story Section - Minimalist Design */
.our-story {
  position: relative;
  background: var(--ink);
  padding: 80px 0;
  overflow: hidden;
}

.our-story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      1000px 400px at 10% 20%,
      rgba(255, 215, 0, 0.02),
      transparent 50%
    ),
    radial-gradient(
      800px 300px at 90% 80%,
      rgba(0, 255, 170, 0.015),
      transparent 50%
    );
  pointer-events: none;
}

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

.story-header .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.15),
    rgba(0, 255, 170, 0.1)
  );
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}

.story-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 0;
  background: linear-gradient(135deg, var(--white), var(--mist));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.story-paragraph {
  position: relative;
}

.story-paragraph::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: 0.3;
}

.story-paragraph:first-child::before {
  background: linear-gradient(180deg, var(--gold), var(--emerald));
  opacity: 0.5;
}

.story-text p {
  margin: 0;
  line-height: 1.8;
  color: var(--mist);
  font-size: 17px;
  font-weight: 400;
}

.story-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.story-image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.2);
}

.story-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  display: block;
  transition: transform 0.4s ease;
}

.story-image-wrapper:hover .story-image {
  transform: scale(1.02);
}

.story-image-accent {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--gold), var(--emerald), var(--gold));
  border-radius: 26px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.story-image-wrapper:hover .story-image-accent {
  opacity: 0.1;
}

.our-mission {
  background: rgba(10, 90, 46, 0.05);
}

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

.mission-card {
  background: var(--ink);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--shamrock));
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mission-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.mission-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--gold);
}

.mission-card p {
  color: var(--mist);
  line-height: 1.6;
}

.why-choose-us {
  background: var(--ink);
}

.our-commitment {
  background: rgba(17, 20, 23, 0.5);
}

.commitment-content h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.commitment-item {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.commitment-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.commitment-item h4 {
  font-size: 20px;
  color: var(--shamrock);
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.commitment-item p {
  color: var(--mist);
  line-height: 1.6;
  margin: 0;
}

.community-cta {
  background: var(--ink);
  text-align: center;
}

.community-cta .cta-content h2 {
  margin-bottom: 24px;
}

.community-cta .cta-content p {
  font-size: 18px;
  color: var(--cloud);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cta-feature {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 24px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.cta-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.02),
    rgba(0, 255, 170, 0.01)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-feature:hover::before {
  opacity: 1;
}

.cta-feature-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.cta-icon {
  font-size: 24px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cta-text {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu .nav-auth {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex !important;
  }

  .nav-menu .nav-auth .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
  }

  .nav-menu .nav-auth .user-profile-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .nav-menu .nav-auth .user-avatar {
    font-size: 20px;
  }

  .nav-menu .nav-auth .user-email {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-left {
    align-items: center;
    text-align: center;
  }

  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 16px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .stats-row {
    flex-direction: column;
    gap: 24px;
  }

  .game-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .help-orgs,
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }

  /* Disclaimer Box Mobile */
  .disclaimer-box {
    padding: 24px;
    margin-bottom: 32px;
  }

  .disclaimer-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .disclaimer-text {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .disclaimer-logos {
    gap: 16px;
  }

  .age-emoji {
    height: 32px;
    min-width: 32px;
    padding: 0 8px;
    font-size: 13px;
  }

  .disclaimer-logos img {
    height: 32px;
  }

  .age-popup-content {
    padding: 32px 24px;
  }

  .age-popup-buttons {
    flex-direction: column;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  /* Auth pages mobile styles */
  .auth-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .auth-card {
    padding: 32px 24px;
  }

  .auth-header h1 {
    font-size: 28px;
  }

  .welcome-features {
    grid-template-columns: 1fr;
  }

  /* Games page mobile styles */
  .games-hero-content {
    text-align: center;
  }

  .games-hero h1 {
    font-size: 36px;
  }

  .games-hero .hero-subtitle {
    font-size: 18px;
  }

  .games-hero .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .games-header-content h1 {
    font-size: 36px;
  }

  .games-subtitle {
    font-size: 18px;
  }

  .games-stats {
    flex-direction: column;
    gap: 24px;
  }

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

  .seo-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  /* Game detail mobile styles */
  .game-hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .game-hero-placeholder {
    height: 250px;
  }

  .game-hero-info h1 {
    font-size: 32px;
  }

  .game-stats-row {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
  }

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

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

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

  .features-list {
    justify-content: center;
  }

  /* Featured game mobile styles */
  .featured-game-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .game-showcase {
    position: static;
  }

  .reels-container {
    gap: 4px;
  }

  .reel {
    min-height: 120px;
  }

  .symbol {
    font-size: 18px;
  }

  .game-controls {
    flex-wrap: wrap;
    gap: 12px;
  }

  .spin-btn {
    min-width: 70px;
    min-height: 70px;
    font-size: 16px;
  }

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

  .features-icons {
    grid-template-columns: 1fr;
  }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-features {
    flex-direction: column;
    gap: 16px;
  }

  /* Legal pages mobile styles */
  .legal-content {
    padding: 32px 24px;
    margin: 0 16px;
  }

  .legal-content h1 {
    font-size: 28px;
  }

  .legal-section h2 {
    font-size: 20px;
  }

  .legal-section h3 {
    font-size: 18px;
  }

  /* Contact page mobile styles */
  .contact-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .contact-card {
    padding: 32px 24px;
    margin: 0 16px;
  }

  .contact-header h2 {
    font-size: 24px;
  }

  .contact-stats {
    justify-content: center;
  }

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

  .info-card {
    padding: 32px 24px;
  }

  .contact-faq h2,
  .contact-info-section h2,
  .community-content h2 {
    font-size: 28px;
  }

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

  .community-actions {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* Login page mobile styles */
  .login-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .login-card {
    padding: 32px 24px;
    margin: 0 16px;
  }

  .login-header h2 {
    font-size: 24px;
  }

  .form-options {
    margin: 20px 0 24px;
  }

  .login-benefits h2 {
    font-size: 28px;
  }

  /* Register page mobile styles */
  .register-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .stat-badge {
    padding: 12px 16px;
    max-width: 280px;
    width: 100%;
  }

  .stat-number {
    font-size: 20px;
  }

  .stat-label {
    font-size: 12px;
  }

  .register-card {
    padding: 32px 24px;
    margin: 0 16px;
  }

  .register-header h2 {
    font-size: 24px;
  }

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

  .benefit-card {
    padding: 32px 24px;
  }

  .trust-badges {
    gap: 16px;
  }

  /* About page mobile styles */
  .about-hero-content {
    text-align: center;
  }

  .about-hero h1 {
    font-size: 36px;
  }

  .our-story {
    padding: 40px 0;
  }

  .story-header {
    margin-bottom: 32px;
  }

  .story-header h2 {
    font-size: 28px;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .story-text {
    gap: 20px;
    order: 2;
  }

  .story-image {
    order: 1;
    max-width: 280px;
    margin: 0 auto;
  }

  .story-paragraph {
    margin-bottom: 24px;
    padding: 40px 32px;
    background: var(--ink);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
  }

  .story-paragraph::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--shamrock));
  }

  .story-paragraph:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .story-paragraph h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .story-paragraph p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: var(--mist);
  }

  .story-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

  .story-image-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .commitment-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .cta-features {
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
  }

  .cta-feature {
    padding: 16px 20px;
  }

  .cta-feature-inner {
    gap: 10px;
  }

  .cta-icon {
    font-size: 20px;
  }

  .cta-text {
    font-size: 14px;
  }

  /* AU Section Mobile Styles */
  .au-header {
    margin-bottom: 48px;
  }

  .au-badge {
    font-size: 12px;
    padding: 6px 16px;
  }

  .seo-badge {
    font-size: 12px;
    padding: 6px 16px;
    margin: 0 auto 24px auto;
    width: fit-content;
  }

  .cta-badge {
    font-size: 12px;
    padding: 6px 16px;
  }

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

  .feature-card-inner {
    padding: 32px 24px;
  }

  .feature-icon {
    font-size: 48px;
  }

  .feature-icon img.emoji {
    width: 48px !important;
    height: 48px !important;
    font-size: 48px !important;
  }

  .au-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 48px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 12px;
  }

  /* Enhanced Steps Mobile Styles */
  .steps-header h2 {
    font-size: 32px;
  }

  .steps-header .section-intro {
    font-size: 16px;
  }

  .steps-badge {
    font-size: 12px;
    padding: 6px 16px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }

  .step-card-inner {
    padding: 32px 20px;
  }

  .step-number {
    width: 70px;
    height: 70px;
    font-size: 24px;
  }

  .step-icon {
    font-size: 40px;
  }

  .step-card h3 {
    font-size: 20px;
  }

  .step-card p {
    font-size: 14px;
  }

  .step-connector {
    display: none;
  }

  .steps-cta {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* Featured Game Mobile Styles */
  .featured-header h2 {
    font-size: 36px;
  }

  .featured-subtitle {
    font-size: 18px;
  }

  .featured-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .featured-actions {
    flex-direction: column;
    gap: 12px;
  }

  .featured-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Game Page Mobile Styles */
  .game-hero {
    padding: 100px 0 60px;
  }

  .game-hero h1 {
    font-size: 36px;
  }

  .game-hero-subtitle {
    font-size: 18px;
  }

  .game-features-quick {
    gap: 16px;
  }

  .feature-quick {
    font-size: 12px;
    padding: 6px 12px;
  }

  .game-container {
    padding: 60px 0;
  }

  .game-frame iframe {
    height: 400px;
  }

  .game-controls {
    flex-wrap: wrap;
    gap: 12px;
  }

  .game-control-btn {
    flex: 1;
    min-width: 100px;
    justify-content: center;
  }

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

  .game-description-card,
  .game-stats-card {
    padding: 24px;
  }

  /* Benefits Mobile Styles */
  .benefits {
    padding: 80px 0;
  }

  .benefits-header h2 {
    font-size: 36px;
  }

  .benefits-subtitle {
    font-size: 16px;
  }

  .benefits-badge {
    font-size: 12px;
    padding: 6px 16px;
  }

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

  .benefit-card-inner {
    padding: 24px 20px;
  }

  .benefit-content h3 {
    font-size: 20px;
  }

  .benefit-content p {
    font-size: 14px;
  }

  .benefit-icon {
    font-size: 40px;
  }
}

/* Section Badge and Header Styles */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, var(--shamrock), var(--emerald));
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 255, 170, 0.2);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  font-family: var(--font-display);
  line-height: 1.2;
}

.section-intro {
  font-size: 20px;
  color: var(--cloud);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Story Paragraph Styles */
.story-paragraph {
  margin-bottom: 32px;
  position: relative;
  padding-left: 24px;
}

.story-paragraph::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), var(--shamrock));
  border-radius: 2px;
}

.story-paragraph h3 {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 600;
}

.story-paragraph p {
  color: var(--cloud);
  line-height: 1.7;
  font-size: 16px;
}

/* Story Content Grid */
.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Mobile Responsive for Section Styles */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 36px;
  }

  .section-intro {
    font-size: 18px;
  }

  .section-badge {
    font-size: 12px;
    padding: 6px 16px;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .story-text {
    gap: 20px;
    order: 2;
  }

  .story-image {
    order: 1;
    max-width: 280px;
    margin: 0 auto;
  }

  .story-paragraph {
    margin-bottom: 24px;
    padding: 40px 32px;
    background: var(--ink);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
  }

  .story-paragraph::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--shamrock));
  }

  .story-paragraph:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .story-paragraph h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .story-paragraph p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: var(--mist);
  }

  .story-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

  .story-image-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  }
}
