/* =============================================
   CyberCheckpoint.pro — Main Stylesheet
   Social Games | Australia | 18+
   ============================================= */

:root {
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --primary-light: #a78bfa;
  --accent: #f59e0b;
  --accent-light: #fcd34d;
  --dark: #0f0a1e;
  --dark-2: #1a1035;
  --dark-3: #231a45;
  --text: #e2d9f3;
  --text-muted: #9d8ec4;
  --white: #ffffff;
  --success: #10b981;
  --danger: #ef4444;
  --border: rgba(124, 58, 237, 0.3);
  --glow: 0 0 20px rgba(124, 58, 237, 0.5);
  --glow-accent: 0 0 20px rgba(245, 158, 11, 0.5);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.text-accent { color: var(--accent); }
.text-primary { color: var(--primary-light); }
.text-muted { color: var(--text-muted); }

/* =============================================
   LAYOUT
   ============================================= */

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

.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--dark-2);
}

.section-darker {
  background: var(--dark-3);
}

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

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

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

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

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: var(--glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.7);
  color: var(--white);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #d97706);
  color: var(--dark);
  box-shadow: var(--glow-accent);
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.7);
  color: var(--dark);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.9rem;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 10, 30, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--accent);
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-cta {
  display: flex;
  gap: 10px;
}

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

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,10,30,0.8) 0%, rgba(30,15,60,0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid var(--primary);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.85rem;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 560px;
}

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

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

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

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

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

/* =============================================
   CARDS
   ============================================= */

.card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  box-shadow: var(--glow);
}

.card h3 {
  margin-bottom: 0.8rem;
}

.card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* =============================================
   GAMES SECTION
   ============================================= */

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

.game-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.game-card:hover {
  border-color: var(--primary);
  box-shadow: var(--glow);
  transform: translateY(-4px);
}

.game-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.game-card-body {
  padding: 1.5rem;
}

.game-card-tag {
  display: inline-block;
  background: rgba(124, 58, 237, 0.2);
  color: var(--primary-light);
  border: 1px solid var(--primary);
  border-radius: 50px;
  padding: 3px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.game-card h3 {
  margin-bottom: 0.5rem;
}

.game-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

/* =============================================
   SLOT MACHINE GAME
   ============================================= */

.slot-machine {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--glow);
  max-width: 500px;
  margin: 0 auto;
}

.slot-machine h2 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.slot-machine .subtitle {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.slot-reels {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 1.5rem 0;
}

.reel-container {
  width: 90px;
  height: 90px;
  background: var(--dark);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.reel {
  display: flex;
  flex-direction: column;
  transition: transform 0.1s linear;
}

.reel-symbol {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  flex-shrink: 0;
}

.slot-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--dark);
  border-radius: var(--radius);
  padding: 12px 20px;
  margin: 1rem 0;
  border: 1px solid var(--border);
}

.slot-info-item {
  text-align: center;
}

.slot-info-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slot-info-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.slot-result {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0.5rem 0;
  border-radius: var(--radius);
  padding: 8px;
}

.slot-result.win {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid var(--success);
}

.slot-result.lose {
  background: rgba(239, 68, 68, 0.1);
  color: var(--text-muted);
}

.slot-result.jackpot {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent);
  border: 1px solid var(--accent);
  animation: pulse 0.5s ease-in-out infinite alternate;
}

@keyframes pulse {
  from { box-shadow: 0 0 5px rgba(245,158,11,0.3); }
  to { box-shadow: 0 0 20px rgba(245,158,11,0.8); }
}

.slot-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 14px;
  font-size: 1.1rem;
}

.slot-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* =============================================
   FORTUNE WHEEL GAME
   ============================================= */

.wheel-game {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--glow);
  max-width: 500px;
  margin: 0 auto;
}

.wheel-wrapper {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 1.5rem auto;
}

.wheel-canvas {
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
}

.wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 30px solid var(--accent);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  z-index: 10;
}

.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: var(--dark);
  border: 3px solid var(--accent);
  border-radius: 50%;
  z-index: 10;
}

.wheel-result {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1rem 0;
  border-radius: var(--radius);
  padding: 10px;
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--accent);
}

.wheel-tokens {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.wheel-tokens span {
  color: var(--accent);
  font-weight: 700;
}

/* =============================================
   COIN FLIP GAME
   ============================================= */

.coin-game {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--glow);
  max-width: 500px;
  margin: 0 auto;
}

.coin-wrapper {
  width: 140px;
  height: 140px;
  margin: 1.5rem auto;
  perspective: 600px;
}

.coin {
  width: 140px;
  height: 140px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.05s linear;
  cursor: pointer;
}

.coin-face {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border: 4px solid var(--accent);
  box-shadow: 0 0 20px rgba(245,158,11,0.4);
}

.coin-heads {
  background: radial-gradient(circle at 35% 35%, #fcd34d, #d97706);
  color: var(--dark);
}

.coin-tails {
  background: radial-gradient(circle at 35% 35%, #c0c0c0, #808080);
  color: var(--dark);
  transform: rotateY(180deg);
}

.coin-choice {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1rem 0;
}

.coin-choice-btn {
  padding: 10px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  background: var(--dark);
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}

.coin-choice-btn:hover,
.coin-choice-btn.selected {
  border-color: var(--accent);
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent);
}

.coin-result {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1rem 0;
  border-radius: var(--radius);
  padding: 10px;
  background: var(--dark);
  border: 1px solid var(--border);
}

.coin-result.win { color: var(--success); border-color: var(--success); background: rgba(16,185,129,0.1); }
.coin-result.lose { color: var(--danger); border-color: var(--danger); background: rgba(239,68,68,0.1); }

.coin-score {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1rem 0;
  padding: 12px;
  background: var(--dark);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.coin-score-item {
  text-align: center;
}

.coin-score-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.coin-score-value {
  font-size: 1.4rem;
  font-weight: 700;
}

.score-wins { color: var(--success); }
.score-losses { color: var(--danger); }
.score-total { color: var(--primary-light); }

/* =============================================
   FEATURES / ABOUT
   ============================================= */

.features-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.features-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.features-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.feature-text h4 {
  margin-bottom: 0.3rem;
}

.feature-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* =============================================
   VENUES / LOCATIONS
   ============================================= */

.venue-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}

.venue-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}

.venue-card h4 {
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.venue-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.venue-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.venue-info-item .icon {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

/* =============================================
   NEWSLETTER / CONTACT FORM
   ============================================= */

.newsletter-section {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.newsletter-text h2 {
  margin-bottom: 0.8rem;
}

.newsletter-text p {
  color: var(--text-muted);
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

/* =============================================
   CONTACT FORM (contact.html)
   ============================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-info-text h4 {
  margin-bottom: 0.3rem;
}

.contact-info-text p,
.contact-info-text a {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.contact-form-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select option {
  background: var(--dark-2);
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  color: var(--success);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-muted);
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */

.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--primary-light);
}

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

/* =============================================
   POLICY PAGES
   ============================================= */

.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px;
}

.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--primary-light);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.policy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
  color: var(--accent);
}

.policy-content p,
.policy-content li {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.policy-content ul,
.policy-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content ul li {
  list-style: disc;
}

.policy-content ol li {
  list-style: decimal;
}

.policy-content a {
  color: var(--primary-light);
  text-decoration: underline;
}

.policy-meta {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =============================================
   COOKIE BANNER
   ============================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  display: none;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
}

.cookie-banner.show {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cookie-text a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* =============================================
   18+ POPUP / AGE GATE
   ============================================= */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.age-gate-box {
  background: var(--dark-2);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: var(--glow), 0 20px 60px rgba(0,0,0,0.8);
  animation: slideUp 0.4s ease;
}

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

.age-gate-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.age-gate-box h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.age-gate-box p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.age-gate-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.age-gate-buttons .btn {
  min-width: 140px;
}

.age-gate-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 1rem 0 1.5rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-col h4 {
  margin-bottom: 1.2rem;
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

.footer-disclaimer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 16px 0;
  text-align: center;
}

.footer-disclaimer p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0;
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.about-hero-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.team-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.team-card h4 {
  margin-bottom: 0.3rem;
}

.team-card .role {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.team-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* =============================================
   GAMES PAGE
   ============================================= */

.games-page-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
  border-color: var(--primary);
  background: rgba(124, 58, 237, 0.15);
  color: var(--primary-light);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* =============================================
   CONFETTI ANIMATION
   ============================================= */

.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  width: 10px;
  height: 10px;
  top: -10px;
  animation: confettiFall linear forwards;
}

@keyframes confettiFall {
  to {
    transform: translateY(110vh) rotate(720deg);
    opacity: 0;
  }
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

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

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--dark-2);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    z-index: 999;
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    color: var(--text);
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
  }

  .mobile-menu a:last-child {
    border-bottom: none;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 1.5rem;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .slot-reels {
    gap: 8px;
  }

  .reel-container {
    width: 75px;
    height: 75px;
  }

  .reel-symbol {
    width: 75px;
    height: 75px;
    font-size: 2rem;
  }

  .wheel-wrapper {
    width: 250px;
    height: 250px;
  }

  .wheel-canvas {
    width: 250px !important;
    height: 250px !important;
  }
}

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

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

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   UTILITY
   ============================================= */

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.w-100 { width: 100%; }
.d-none { display: none; }
