/* Social Slots Dedicated Styling */

:root {
  --slot-gold: #f59e0b;
  --slot-orange: #ff6b35;
  --slot-navy: #0d1b2a;
  --slot-cabinet-bg: #14213d;
  --slot-screen-bg: #0b0f19;
  --slot-border-glow: 0 0 15px rgba(255, 107, 53, 0.6);
  --slot-win-glow: 0 0 20px #22c55e, inset 0 0 15px #22c55e;
}

/* Page Hero Adjustments */
.hero-slots {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b4965 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  color: #fff;
  text-align: center;
}

.hero-slots-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  background-image: radial-gradient(var(--slot-orange) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

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

.hero-slots h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-slots h1 span {
  color: var(--slot-orange);
  position: relative;
}

.hero-slots p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #e2e8f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #cbd5e1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.badge-18::before {
  content: "18+";
  background: var(--slot-orange);
  color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Slots Section Layout */
.slots-section {
  background-color: #0b0f19;
  padding: 80px 0;
  color: #fff;
}

.slots-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* Main Cabinet Console */
.slots-cabinet {
  background: var(--slot-cabinet-bg);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), var(--slot-border-glow);
  border: 3px solid var(--slot-orange);
  position: relative;
  overflow: hidden;
}

.slots-cabinet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #ff6b35, #f59e0b, #ff6b35);
  animation: border-glow-shift 3s linear infinite;
}

@keyframes border-glow-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Top Billboard/Header of Machine */
.slots-header {
  text-align: center;
  margin-bottom: 25px;
  background: rgba(13, 27, 42, 0.6);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.slots-title-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slots-title-brand span {
  color: var(--slot-orange);
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.4);
}

.slots-volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-icon {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.btn-icon:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: var(--slot-orange);
}

.btn-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* The Screen and Reels grid */
.slots-screen-wrapper {
  position: relative;
  background: var(--slot-screen-bg);
  border-radius: 16px;
  padding: 20px;
  border: 2px solid #1e293b;
  margin-bottom: 25px;
}

.slots-screen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  position: relative;
  overflow: hidden;
  height: 320px;
  border-radius: 8px;
}

/* Glass glare reflection */
.slots-screen::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.02) 100%);
  pointer-events: none;
  z-index: 10;
  border-radius: 8px;
}

/* Reel column container */
.reel-container {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  height: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.9);
}

/* Vertical strips */
.reel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0s ease-out;
  will-change: transform;
}

.reel.spinning {
  filter: blur(4px);
  animation: reel-spinning-animation 0.1s linear infinite;
}

@keyframes reel-spinning-animation {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100px); }
}

/* Individual symbol box */
.symbol {
  height: 106.66px; /* Matches 320px / 3 */
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.8rem;
  user-select: none;
  position: relative;
  transition: transform 0.2s, background-color 0.2s;
  box-sizing: border-box;
}

.symbol-name {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
  letter-spacing: 0.08em;
}

.symbol.winner {
  background: rgba(34, 197, 94, 0.15);
  animation: symbol-pulse 0.6s infinite alternate;
  z-index: 2;
}

@keyframes symbol-pulse {
  0% {
    box-shadow: inset 0 0 10px rgba(34, 197, 94, 0.2);
    transform: scale(0.96);
  }
  100% {
    box-shadow: inset 0 0 25px rgba(34, 197, 94, 0.6);
    transform: scale(1.04);
  }
}

/* Payline Visual Indicators */
.payline-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.payline-svg-line {
  stroke-dasharray: 8, 4;
  stroke-width: 4;
  animation: line-dash 1s linear infinite, line-pulse 0.4s ease-in-out infinite alternate;
  opacity: 0;
  transition: opacity 0.2s;
}

.payline-svg-line.active {
  opacity: 1;
}

@keyframes line-dash {
  to { stroke-dashoffset: -24; }
}

@keyframes line-pulse {
  from { filter: drop-shadow(0 0 2px rgba(255, 107, 53, 0.8)); }
  to { filter: drop-shadow(0 0 8px rgba(255, 107, 53, 1)); }
}

/* Payline info guides on sides (left and right of screen) */
.payline-indicator-dots {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  z-index: 12;
  pointer-events: none;
}

.payline-indicator-dots.left { left: 5px; }
.payline-indicator-dots.right { right: 5px; }

.payline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #334155;
  font-size: 0.6rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: background 0.3s, box-shadow 0.3s;
}

.payline-dot.active-1 { background: #ef4444; box-shadow: 0 0 8px #ef4444; }
.payline-dot.active-2 { background: #3b82f6; box-shadow: 0 0 8px #3b82f6; }
.payline-dot.active-3 { background: #10b981; box-shadow: 0 0 8px #10b981; }
.payline-dot.active-4 { background: #f59e0b; box-shadow: 0 0 8px #f59e0b; }
.payline-dot.active-5 { background: #a855f7; box-shadow: 0 0 8px #a855f7; }

/* Control Panel Grid */
.slots-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
}

@media (max-width: 680px) {
  .slots-controls {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Info stats displays */
.slots-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-box {
  background: rgba(13, 27, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.stat-value {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.stat-value.highlight {
  color: #22c55e;
  text-shadow: 0 0 8px rgba(34, 197, 94, 0.3);
}

/* Bet Controls */
.bet-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(13, 27, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 14px;
  gap: 8px;
}

.bet-adjusters {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-bet {
  background: var(--slot-orange);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.1s;
}

.btn-bet:hover {
  background: #ff7e4f;
}

.btn-bet:active {
  transform: scale(0.9);
}

.bet-value {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.35rem;
  font-weight: 700;
  min-width: 50px;
  text-align: center;
}

.bet-presets {
  display: flex;
  gap: 6px;
  width: 100%;
}

.btn-preset {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 0;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-preset:hover, .btn-preset.active {
  background: rgba(255, 107, 53, 0.2);
  border-color: var(--slot-orange);
  color: #fff;
}

/* Spin Actions & Auto Spin */
.spin-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.btn-spin {
  background: linear-gradient(135deg, #ff6b35 0%, #f59e0b 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3);
  transition: all 0.2s;
  position: relative;
  text-align: center;
}

.btn-spin:hover:not(:disabled) {
  filter: brightness(1.1);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
  transform: translateY(-2px);
}

.btn-spin:active:not(:disabled) {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

.btn-spin:disabled {
  background: #334155;
  color: #64748b;
  cursor: not-allowed;
  box-shadow: none;
}

.auto-spin-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #cbd5e1;
  cursor: pointer;
  user-select: none;
}

.auto-spin-checkbox {
  appearance: none;
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid #475569;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.auto-spin-checkbox:checked {
  background-color: var(--slot-orange);
  border-color: var(--slot-orange);
}

.auto-spin-checkbox:checked::after {
  content: "✓";
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Status Notifications / Win Display */
.slots-alert-banner {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-top: 20px;
  padding: 12px 18px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slots-alert-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #cbd5e1;
  margin: 0;
  transition: all 0.3s;
}

.slots-alert-text.win {
  color: #22c55e;
  text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
  animation: alert-flash 0.5s infinite alternate;
  font-weight: 700;
}

.slots-alert-text.big-win {
  color: #f59e0b;
  text-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
  animation: alert-shake 0.4s infinite, alert-flash 0.3s infinite alternate;
  font-weight: 800;
  font-size: 1.15rem;
}

@keyframes alert-flash {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

@keyframes alert-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px) rotate(-1deg); }
  75% { transform: translateX(2px) rotate(1deg); }
}

/* Confetti / Particle Win Container */
.win-particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 20;
  overflow: hidden;
}

.win-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--slot-orange);
  border-radius: 50%;
  opacity: 0.8;
  animation: particle-fall 2.5s ease-out forwards;
}

@keyframes particle-fall {
  0% {
    transform: translateY(-20px) translateX(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(350px) translateX(var(--drift)) rotate(360deg);
    opacity: 0;
  }
}

/* Game Info / Guide Section */
.slots-guide-section {
  background: rgba(255, 107, 53, 0.02);
  padding: 60px 0;
}

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

@media (max-width: 860px) {
  .guide-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.guide-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--slot-navy);
  margin-bottom: 18px;
}

.guide-text p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 15px;
}

.combos-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
}

.combos-card h3 {
  margin-top: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--slot-navy);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--slot-grey);
  padding-bottom: 10px;
}

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

.combo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px dashed #e2e8f0;
}

.combo-row:last-child {
  border-bottom: none;
}

.combo-symbols {
  display: flex;
  align-items: center;
  gap: 8px;
}

.combo-symbol-icon {
  font-size: 1.4rem;
}

.combo-multiplier {
  font-family: 'Courier New', Courier, monospace;
  font-weight: 700;
  color: var(--slot-orange);
  background: rgba(255, 107, 53, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.85rem;
}

/* Responsible Gaming NZ Section */
.nz-rg-section {
  background: var(--slot-navy);
  color: #fff;
  padding: 80px 0;
  border-top: 4px solid var(--slot-orange);
}

.nz-rg-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.nz-rg-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #fff;
}

.nz-rg-intro p {
  color: #94a3b8;
  line-height: 1.6;
}

.nz-rg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

@media (max-width: 768px) {
  .nz-rg-grid {
    grid-template-columns: 1fr;
  }
}

.nz-rg-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
}

.nz-rg-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 107, 53, 0.3);
}

.nz-rg-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.nz-rg-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 107, 53, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nz-rg-badge-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--slot-orange);
}

.nz-rg-card h3 {
  font-size: 1.15rem;
  margin: 0;
  font-weight: 600;
  color: #fff;
}

.nz-rg-card p {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.btn-rg-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--slot-orange);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  align-self: flex-start;
}

.btn-rg-link:hover {
  color: #ff8e5e;
  transform: translateX(3px);
}

.btn-rg-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Social Casino Educational & Informational Section Styles */
.social-info-section {
  background-color: var(--white);
  padding: 80px 0;
  border-top: 1px solid #e2e8f0;
}

.social-info-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.social-info-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--slot-navy);
  margin-bottom: 15px;
}

.social-info-header p {
  color: #4b5563;
  font-size: 1.1rem;
  line-height: 1.6;
}

.social-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

@media (max-width: 860px) {
  .social-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.2);
}

.info-card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
}

.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--slot-navy);
  margin: 0 0 12px;
}

.info-card p {
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.social-info-qa {
  background: rgba(13, 27, 42, 0.03);
  border-radius: 20px;
  padding: 40px;
  border: 1px dashed #cbd5e1;
}

.social-info-qa h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--slot-navy);
  margin-top: 0;
  margin-bottom: 25px;
  text-align: center;
}

.qa-item {
  margin-bottom: 20px;
}

.qa-item:last-child {
  margin-bottom: 0;
}

.qa-item h4 {
  font-size: 1.05rem;
  color: var(--slot-navy);
  margin: 0 0 8px;
  font-weight: 600;
}

.qa-item p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

