@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Exo+2:wght@300;400;500;600;700;800&display=swap');
@import url('bootstrap-icons.css');

:root {
  --primary-color: #FFD700;
  --secondary-color: #0A0A0A;
  --third-color: #1A1A1A;
  --text-primary: #FFFFFF;
  --text-secondary: #CCCCCC;
  --accent-primary: #FF6B35;
  --accent-secondary: #4ECDC4;
  --accent-tertiary: #45B7D1;
  --fortune-gold: #FFD700;
  --fortune-red: #DC143C;
  --fortune-green: #32CD32;
  --fortune-purple: #9370DB;
  --shadow-gold: rgba(255, 215, 0, 0.3);
  --shadow-red: rgba(220, 20, 60, 0.3);
  --shadow-green: rgba(50, 205, 50, 0.3);
  --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
  --gradient-red: linear-gradient(135deg, #DC143C 0%, #B22222 50%, #8B0000 100%);
  --gradient-green: linear-gradient(135deg, #32CD32 0%, #228B22 50%, #006400 100%);
  --gradient-purple: linear-gradient(135deg, #9370DB 0%, #8A2BE2 50%, #4B0082 100%);
}

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

body {
  font-family: 'Exo 2', sans-serif;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(50, 205, 50, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%),
    url(../images/background.webp);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 70% 80%, rgba(220, 20, 60, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(50, 205, 50, 0.05) 0%, transparent 30%);
  pointer-events: none;
  z-index: 0;
}

a {
  text-decoration: none;
  color: var(--accent-primary);
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  border-radius: 8px;
}

/* 3D Button Styles */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-glow {
  box-shadow: 
    0 0 20px var(--shadow-gold),
    0 0 40px var(--shadow-gold),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 20px var(--shadow-gold), 0 0 40px var(--shadow-gold); }
  to { box-shadow: 0 0 30px var(--shadow-gold), 0 0 60px var(--shadow-gold); }
}

/* Floating Elements Animation */
.floating-coins, .lucky-animals {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.coin, .animal {
  position: absolute;
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.coin-1 { top: 20%; left: 10%; animation-delay: 0s; }
.coin-2 { top: 30%; right: 15%; animation-delay: 1s; }
.coin-3 { top: 60%; left: 20%; animation-delay: 2s; }
.coin-4 { top: 70%; right: 10%; animation-delay: 3s; }
.coin-5 { top: 40%; left: 50%; animation-delay: 4s; }
.coin-6 { top: 80%; left: 60%; animation-delay: 5s; }

.animal-1 { top: 15%; left: 30%; animation-delay: 0.5s; font-size: 2.5rem; }
.animal-2 { top: 45%; right: 25%; animation-delay: 1.5s; font-size: 2.5rem; }
.animal-3 { top: 75%; left: 40%; animation-delay: 2.5s; font-size: 2.5rem; }
.animal-4 { top: 25%; right: 40%; animation-delay: 3.5s; font-size: 2.5rem; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(5deg); }
  50% { transform: translateY(-10px) rotate(-5deg); }
  75% { transform: translateY(-15px) rotate(3deg); }
}

/* Navigation Styles */
.navbar {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--third-color) 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  position: relative;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid var(--fortune-gold);
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  pointer-events: none;
}

.navbar .logo img {
  height: 60px;
  filter: drop-shadow(0 0 10px var(--shadow-gold));
  transition: transform 0.3s ease;
}

.navbar .logo img:hover {
  transform: scale(1.05);
}

.navbar-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.navbar-menu li a {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-menu li a:hover {
  color: var(--fortune-gold);
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 0 15px var(--shadow-gold);
}

.navbar .auth-buttons {
  display: flex;
  gap: 15px;
}

.btn-login {
  background: var(--gradient-gold);
  color: var(--secondary-color);
  border: 2px solid var(--fortune-gold);
  font-weight: 700;
}

.btn-login:hover {
  background: transparent;
  color: var(--fortune-gold);
  box-shadow: 0 0 20px var(--shadow-gold);
}

.btn-register {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--fortune-gold);
  font-weight: 700;
}

.btn-register:hover {
  background: var(--gradient-gold);
  color: var(--secondary-color);
  box-shadow: 0 0 20px var(--shadow-gold);
}

.btn-bonus {
  background: var(--gradient-red);
  color: var(--text-primary);
  border: 2px solid var(--fortune-red);
}

.btn-bonus:hover {
  background: transparent;
  color: var(--fortune-red);
  box-shadow: 0 0 20px var(--shadow-red);
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--secondary-color);
  border: 2px solid var(--fortune-gold);
}

.btn-secondary {
  background: var(--gradient-purple);
  color: var(--text-primary);
  border: 2px solid var(--fortune-purple);
}

.btn-category {
  background: var(--gradient-green);
  color: var(--text-primary);
  border: 2px solid var(--fortune-green);
  font-size: 0.9rem;
  padding: 8px 16px;
}

.btn-play {
  background: var(--gradient-gold);
  color: var(--secondary-color);
  border: 2px solid var(--fortune-gold);
  font-size: 0.9rem;
  padding: 8px 16px;
}

/* Main Content */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

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

/* Section Spacing */
section {
  margin-bottom: 80px;
  padding: 40px 0;
}

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

/* Enhanced Section Styling */
section:not(.hero) {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  box-shadow: 
    0 15px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

section:not(.hero)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(220, 20, 60, 0.03) 0%, transparent 30%);
  pointer-events: none;
  z-index: 1;
}

section:not(.hero) .section-container {
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding: 30px 0;
}

.section-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
  box-shadow: 0 0 15px var(--shadow-gold);
}

.section-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--fortune-gold);
  margin-bottom: 25px;
  text-shadow: 
    0 0 25px var(--shadow-gold),
    2px 2px 4px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--shadow-gold);
}

.section-header p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
}

/* Hero Section */
.hero {
  position: relative;
  background: 
    linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%);
  padding: 100px 0;
  margin: 20px 0 80px 0;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  max-width: 100%;
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(220, 20, 60, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(50, 205, 50, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.03) 50%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .section-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-image {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(45deg, var(--fortune-gold), var(--fortune-red), var(--fortune-green), var(--fortune-purple));
  border-radius: 25px;
  z-index: -1;
  opacity: 0.3;
  animation: rotate 10s linear infinite;
}

.hero-image::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(220, 20, 60, 0.2));
  border-radius: 20px;
  z-index: -1;
  filter: blur(10px);
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.hero-image img:hover {
  transform: scale(1.02) translateY(-5px);
}

.hero-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--secondary-color);
  padding: 12px 35px;
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
  box-shadow: 
    0 0 25px var(--shadow-gold),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: pulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

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

.hero-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 30px;
  text-shadow: 
    0 0 30px var(--shadow-gold),
    2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
  position: relative;
}

.hero-content h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--shadow-gold);
}

.hero-intro h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: var(--fortune-gold);
  margin-bottom: 25px;
  text-shadow: 0 0 20px var(--shadow-gold);
  position: relative;
}

.hero-intro p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.8;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--fortune-gold);
}

.hero-cta {
  display: flex;
  gap: 25px;
  margin-top: 50px;
  flex-wrap: wrap;
  position: relative;
}

.hero-cta .btn {
  position: relative;
  overflow: hidden;
  min-width: 200px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.hero-cta .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.hero-cta .btn:hover::before {
  left: 100%;
}

.hero-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Login Section - Unique Design */
.login-section {
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(220, 20, 60, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
  border: 2px solid rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.02) 50%, transparent 70%),
    radial-gradient(circle at 50% 50%, rgba(50, 205, 50, 0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

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

.login-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.login-icon {
  font-size: 4rem;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px var(--shadow-gold));
}

.login-icon-wrapper .security-badge {
  position: absolute;
  top: -10px;
  right: -20px;
  background: var(--gradient-gold);
  color: var(--secondary-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 15px var(--shadow-gold);
  animation: pulse 2s ease-in-out infinite;
}

.login-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-shadow: 
    0 0 30px var(--shadow-gold),
    2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}

.login-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
  box-shadow: 0 0 15px var(--shadow-gold);
}

.login-header p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.login-image {
  text-align: center;
  margin: 30px 0;
  position: relative;
  z-index: 2;
}

.login-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(255, 215, 0, 0.2);
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

.login-image img:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 215, 0, 0.3);
}

.login-content {
  position: relative;
  z-index: 2;
}

.login-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 30px;
}

.login-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
  position: relative;
  z-index: 2;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
  transition: left 0.5s;
}

.step-item:hover::before {
  left: 100%;
}

.step-item:hover {
  transform: translateX(10px);
  border-color: var(--fortune-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: 
    0 0 20px var(--shadow-gold),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
}

.step-text {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.pro-tip {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(220, 20, 60, 0.1) 100%);
  border-radius: 20px;
  padding: 30px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.pro-tip::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
  transition: left 0.5s;
}

.pro-tip:hover::before {
  left: 100%;
}

.tip-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 15px var(--shadow-gold));
  animation: bounce 2s ease-in-out infinite;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.pro-tip p {
  color: var(--text-primary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

.pro-tip strong {
  color: var(--fortune-gold);
  text-shadow: 0 0 10px var(--shadow-gold);
}

/* Pokies Section - New Design */
.pokies-section {
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(220, 20, 60, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
  border: 2px solid rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.pokies-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.03) 50%, transparent 70%),
    radial-gradient(circle at 50% 50%, rgba(50, 205, 50, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.pokies-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.pokies-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 25px;
  text-shadow: 
    0 0 30px var(--shadow-gold),
    2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}

.pokies-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
  box-shadow: 0 0 15px var(--shadow-gold);
}

.pokies-header p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
}

.pokies-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.pokies-machine {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(255, 215, 0, 0.2);
  border: 3px solid rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.pokies-machine::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.05) 50%, transparent 70%);
  pointer-events: none;
}

.machine-screen {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  border: 2px solid rgba(255, 215, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.machine-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(220, 20, 60, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.reel-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.reel {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.1),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  animation: spin 3s ease-in-out infinite;
  position: relative;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.reel-icon {
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 
    0 0 10px currentColor,
    2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: iconFloat 2s ease-in-out infinite;
  position: relative;
}

.reel-icon.cherry {
  color: #ff1744;
  text-shadow: 
    0 0 15px #ff1744,
    2px 2px 4px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 23, 68, 0.6);
}

.reel-icon.lemon {
  color: #ffeb3b;
  text-shadow: 
    0 0 15px #ffeb3b,
    2px 2px 4px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 235, 59, 0.6);
}

.reel-icon.orange {
  color: #ff9800;
  text-shadow: 
    0 0 15px #ff9800,
    2px 2px 4px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 152, 0, 0.6);
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px) rotateY(0deg); }
  50% { transform: translateY(-3px) rotateY(10deg); }
}

.reel:nth-child(2) {
  animation-delay: 0.5s;
}

.reel:nth-child(3) {
  animation-delay: 1s;
}

@keyframes spin {
  0%, 100% { transform: rotateY(0deg); }
  50% { transform: rotateY(180deg); }
}

.machine-lights {
  display: flex;
  justify-content: space-around;
  position: relative;
  z-index: 2;
}

.light {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gradient-gold);
  box-shadow: 0 0 15px var(--shadow-gold);
  animation: blink 1.5s ease-in-out infinite;
}

.light:nth-child(2) {
  animation-delay: 0.5s;
}

.light:nth-child(3) {
  animation-delay: 1s;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.machine-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.button {
  padding: 15px 30px;
  border-radius: 25px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.spin-btn {
  background: var(--gradient-gold);
  color: var(--secondary-color);
  box-shadow: 0 0 20px var(--shadow-gold);
}

.bet-btn {
  background: transparent;
  color: var(--fortune-gold);
  border: 2px solid var(--fortune-gold);
}

.spin-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 25px var(--shadow-gold);
}

.bet-btn:hover {
  background: var(--gradient-gold);
  color: var(--secondary-color);
  box-shadow: 0 0 25px var(--shadow-gold);
}

.pokies-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.feature-showcase {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
  border-radius: 20px;
  padding: 35px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.5s;
}

.feature-showcase:hover::before {
  left: 100%;
}

.feature-showcase:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--fortune-gold);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.feature-icon-wrapper {
  position: relative;
  flex-shrink: 0;
}

.feature-icon {
  font-size: 3rem;
  filter: drop-shadow(0 0 20px var(--shadow-gold));
  animation: float 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  z-index: 1;
}

.feature-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: var(--fortune-gold);
  margin-bottom: 12px;
  text-shadow: 0 0 10px var(--shadow-gold);
  position: relative;
  z-index: 2;
}

.feature-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}

/* Bonus Section - New Design */
.bonus-section {
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
  border: 2px solid rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.bonus-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.03) 50%, transparent 70%),
    radial-gradient(circle at 50% 50%, rgba(50, 205, 50, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.bonus-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.bonus-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 25px;
  text-shadow: 
    0 0 30px var(--shadow-gold),
    2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}

.bonus-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
  box-shadow: 0 0 15px var(--shadow-gold);
}

.bonus-header p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
}

.bonus-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.bonus-treasure {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.treasure-chest {
  width: 200px;
  height: 150px;
  position: relative;
  animation: chestFloat 3s ease-in-out infinite;
}

.chest-lid {
  width: 200px;
  height: 80px;
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #8B4513 100%);
  border-radius: 20px 20px 0 0;
  position: relative;
  box-shadow: 
    0 10px 20px rgba(0, 0, 0, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.1);
  border: 3px solid #654321;
}

.chest-handle {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  filter: drop-shadow(0 0 10px var(--shadow-gold));
  animation: lockPulse 2s ease-in-out infinite;
}

.chest-body {
  width: 200px;
  height: 70px;
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #8B4513 100%);
  border-radius: 0 0 20px 20px;
  position: relative;
  box-shadow: 
    0 10px 20px rgba(0, 0, 0, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.1);
  border: 3px solid #654321;
  border-top: none;
}

.treasure-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(255, 215, 0, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  animation: treasureGlow 2s ease-in-out infinite;
}

@keyframes chestFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes lockPulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.1); }
}

@keyframes treasureGlow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.floating-coins {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-coins .coin {
  position: absolute;
  font-size: 2rem;
  filter: drop-shadow(0 0 10px var(--shadow-gold));
  animation: coinFloat 4s ease-in-out infinite;
}

.floating-coins .coin-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-coins .coin-2 {
  top: 60%;
  right: 15%;
  animation-delay: 1.5s;
}

.floating-coins .coin-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 3s;
}

@keyframes coinFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

.bonus-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.bonus-feature {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
  border-radius: 20px;
  padding: 35px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.bonus-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.5s;
}

.bonus-feature:hover::before {
  left: 100%;
}

.bonus-feature:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--fortune-gold);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.feature-visual {
  position: relative;
  flex-shrink: 0;
}

.bonus-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 20px var(--shadow-gold));
  animation: iconBounce 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.icon-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: 3px solid var(--fortune-gold);
  border-radius: 50%;
  animation: ringPulse 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

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

.feature-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: var(--fortune-gold);
  margin-bottom: 12px;
  text-shadow: 0 0 10px var(--shadow-gold);
  position: relative;
  z-index: 2;
}

.feature-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.bonus-value {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--secondary-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 15px var(--shadow-gold);
  position: relative;
  z-index: 2;
}

.bonus-gallery {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.main-banner {
  max-width: 800px;
  width: 100%;
}

.main-banner img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.8) 0%, rgba(220, 20, 60, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.main-banner:hover .banner-overlay {
  opacity: 1;
}

.banner-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary-color);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.bonus-tip {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(220, 20, 60, 0.1) 100%);
  border-radius: 20px;
  padding: 30px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.bonus-tip::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
  transition: left 0.5s;
}

.bonus-tip:hover::before {
  left: 100%;
}

.tip-visual {
  position: relative;
  flex-shrink: 0;
}

.tip-icon {
  font-size: 3rem;
  filter: drop-shadow(0 0 15px var(--shadow-gold));
  animation: tipFloat 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.tip-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: tipGlow 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes tipFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

@keyframes tipGlow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.tip-content p {
  color: var(--text-primary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

.tip-content strong {
  color: var(--fortune-gold);
  text-shadow: 0 0 10px var(--shadow-gold);
}

/* Payment Methods Section - New Design */
.payment-section {
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(220, 20, 60, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
  border: 2px solid rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.payment-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.03) 50%, transparent 70%),
    radial-gradient(circle at 50% 50%, rgba(50, 205, 50, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.payment-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.payment-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 25px;
  text-shadow: 
    0 0 30px var(--shadow-gold),
    2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}

.payment-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
  box-shadow: 0 0 15px var(--shadow-gold);
}

.payment-header p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
}

.payment-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.payment-terminal {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(255, 215, 0, 0.2);
  border: 3px solid rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
  max-width: 400px;
  width: 100%;
}

.payment-terminal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.05) 50%, transparent 70%);
  pointer-events: none;
}

.terminal-screen {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  border: 2px solid rgba(255, 215, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.terminal-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(220, 20, 60, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.screen-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.payment-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}

.status-dot.processing {
  background: var(--gradient-gold);
  box-shadow: 0 0 10px var(--shadow-gold);
}

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

.payment-amount {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--fortune-gold);
  text-shadow: 0 0 20px var(--shadow-gold);
  margin-bottom: 10px;
}

.payment-method {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
}

.terminal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.terminal-buttons .btn {
  padding: 12px 24px;
  border-radius: 20px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-confirm {
  background: var(--gradient-gold);
  color: var(--secondary-color);
  box-shadow: 0 0 20px var(--shadow-gold);
}

.btn-cancel {
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid var(--text-secondary);
}

.btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px var(--shadow-gold);
}

.btn-cancel:hover {
  background: var(--text-secondary);
  color: var(--secondary-color);
}

.payment-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.payment-method-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
  border-radius: 20px;
  padding: 35px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.payment-method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.5s;
}

.payment-method-card:hover::before {
  left: 100%;
}

.payment-method-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--fortune-gold);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.method-visual {
  position: relative;
  flex-shrink: 0;
}

.method-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-icon {
  font-size: 3rem;
  filter: drop-shadow(0 0 20px var(--shadow-gold));
  animation: iconFloat 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

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

.method-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--gradient-gold);
  color: var(--secondary-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 15px var(--shadow-gold);
  animation: badgePulse 2s ease-in-out infinite;
}

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

.method-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: var(--fortune-gold);
  margin-bottom: 12px;
  text-shadow: 0 0 10px var(--shadow-gold);
  position: relative;
  z-index: 2;
}

.method-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.method-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.feature-tag {
  display: inline-block;
  background: rgba(255, 215, 0, 0.1);
  color: var(--fortune-gold);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.payment-guarantee {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(220, 20, 60, 0.1) 100%);
  border-radius: 20px;
  padding: 30px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.payment-guarantee::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
  transition: left 0.5s;
}

.payment-guarantee:hover::before {
  left: 100%;
}

.guarantee-visual {
  position: relative;
  flex-shrink: 0;
}

.guarantee-icon {
  font-size: 3rem;
  filter: drop-shadow(0 0 15px var(--shadow-gold));
  animation: guaranteeFloat 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.guarantee-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: guaranteeGlow 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes guaranteeFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

@keyframes guaranteeGlow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.guarantee-content p {
  color: var(--text-primary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Live Winners Section - Highly Engaging */
.live-winners-section {
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
  border: 2px solid rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.live-winners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.03) 50%, transparent 70%),
    radial-gradient(circle at 50% 50%, rgba(50, 205, 50, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

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

.winners-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-shadow: 
    0 0 30px var(--shadow-gold),
    2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}

.winners-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
  box-shadow: 0 0 15px var(--shadow-gold);
}

.winners-header p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.winners-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.live-winner-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  border-radius: 20px;
  padding: 25px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: winnerSlideIn 0.8s ease-out;
}

.live-winner-card:nth-child(1) { animation-delay: 0.2s; }
.live-winner-card:nth-child(2) { animation-delay: 0.4s; }
.live-winner-card:nth-child(3) { animation-delay: 0.6s; }
.live-winner-card:nth-child(4) { animation-delay: 0.8s; }

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

.live-winner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.5s;
}

.live-winner-card:hover::before {
  left: 100%;
}

.live-winner-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--fortune-gold);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.winner-avatar {
  position: relative;
  flex-shrink: 0;
}

.avatar-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 
    0 0 20px var(--shadow-gold),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
  animation: avatarPulse 2s ease-in-out infinite;
}

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

.online-indicator {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 16px;
  height: 16px;
  background: #00ff00;
  border-radius: 50%;
  border: 3px solid var(--secondary-color);
  animation: onlineBlink 1.5s ease-in-out infinite;
  z-index: 3;
}

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

.winner-info {
  flex: 1;
  position: relative;
  z-index: 2;
}

.winner-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fortune-gold);
  margin-bottom: 5px;
  text-shadow: 0 0 10px var(--shadow-gold);
}

.winner-location {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.win-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.game-name {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}

.win-amount {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #00ff00;
  text-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
  animation: amountGlow 2s ease-in-out infinite;
}

@keyframes amountGlow {
  0%, 100% { text-shadow: 0 0 15px rgba(0, 255, 0, 0.5); }
  50% { text-shadow: 0 0 25px rgba(0, 255, 0, 0.8); }
}

.win-badge {
  background: var(--gradient-gold);
  color: var(--secondary-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 15px var(--shadow-gold);
  animation: badgeBounce 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes badgeBounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
}

.winners-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
  border-radius: 15px;
  padding: 30px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--fortune-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--fortune-gold);
  text-shadow: 0 0 20px var(--shadow-gold);
  margin-bottom: 10px;
}

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

.winners-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(220, 20, 60, 0.1) 100%);
  border-radius: 25px;
  padding: 50px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.winners-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
  transition: left 0.5s;
}

.winners-cta:hover::before {
  left: 100%;
}

.cta-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  text-shadow: 0 0 20px var(--shadow-gold);
  position: relative;
  z-index: 2;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Unified Button Styles - Removed duplicate winner button styles */

@keyframes buttonGlow {
  0%, 100% { box-shadow: 0 0 25px var(--shadow-gold); }
  50% { box-shadow: 0 0 35px var(--shadow-gold); }
}

.login-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(220, 20, 60, 0.1) 100%);
  border-radius: 20px;
  padding: 50px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  position: relative;
  z-index: 2;
}

.cta-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  text-shadow: 0 0 20px var(--shadow-gold);
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.btn-login-primary {
  background: var(--gradient-gold);
  color: var(--secondary-color);
  border: 2px solid var(--fortune-gold);
  min-width: 180px;
  height: 55px;
  font-size: 1rem;
  font-weight: 700;
}

.btn-register-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--fortune-gold);
  min-width: 180px;
  height: 55px;
  font-size: 1rem;
  font-weight: 700;
}

.btn-login-primary:hover {
  background: transparent;
  color: var(--fortune-gold);
  box-shadow: 0 0 25px var(--shadow-gold);
}

.btn-register-secondary:hover {
  background: var(--gradient-gold);
  color: var(--secondary-color);
  box-shadow: 0 0 25px var(--shadow-gold);
}

/* Card Styles */
.card, .bonus-card, .feature-card, .game-card, .step-card, .why-choose-card, .payment-card, .tool-card, .term-card, .bonus-category-card, .game-showcase-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  border-radius: 18px;
  padding: 35px;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.card::before, .bonus-card::before, .feature-card::before, .game-card::before, .step-card::before, .why-choose-card::before, .payment-card::before, .tool-card::before, .term-card::before, .bonus-category-card::before, .game-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.5s;
}

.card:hover::before, .bonus-card:hover::before, .feature-card:hover::before, .game-card:hover::before, .step-card:hover::before, .why-choose-card:hover::before, .payment-card:hover::before, .tool-card:hover::before, .term-card:hover::before, .bonus-category-card:hover::before, .game-showcase-card:hover::before {
  left: 100%;
}

.card:hover, .bonus-card:hover, .feature-card:hover, .game-card:hover, .step-card:hover, .why-choose-card:hover, .payment-card:hover, .tool-card:hover, .term-card:hover, .bonus-category-card:hover, .game-showcase-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 40px var(--shadow-gold),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: var(--fortune-gold);
  backdrop-filter: blur(15px);
}

/* Icon Styles */
.bonus-icon, .feature-icon, .category-icon, .card-icon, .payment-icon, .tool-icon, .term-icon, .badge-icon, .tip-icon, .guarantee-icon, .notice-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 10px var(--shadow-gold));
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Grid Layouts */
.bonus-grid, .pokies-features, .games-showcase, .payment-methods, .why-choose-grid, .responsible-tools, .terms-grid, .bonus-categories-grid, .faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.login-steps, .claim-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Step Cards */
.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 0 20px var(--shadow-gold);
}

.step-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  color: var(--fortune-gold);
  margin-bottom: 15px;
  text-shadow: 0 0 10px var(--shadow-gold);
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Game Showcase Cards */
.game-showcase-card {
  text-align: center;
}

.game-showcase-card img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.game-showcase-card:hover img {
  transform: scale(1.05);
}

.game-info h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  color: var(--fortune-gold);
  margin-bottom: 10px;
  text-shadow: 0 0 10px var(--shadow-gold);
}

.game-info p {
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.game-features {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.feature-tag {
  background: var(--gradient-gold);
  color: var(--secondary-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Pro Tips and Notices */
.pro-tip, .terms-notice, .payment-guarantee, .security-badge, .trust-message, .safety-message, .final-message {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border: 1px solid var(--fortune-gold);
  border-radius: 12px;
  padding: 20px;
  margin: 30px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.tip-icon, .notice-icon, .guarantee-icon, .badge-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.pro-tip p, .terms-notice p, .payment-guarantee p, .security-badge p, .trust-message p, .safety-message p, .final-message p {
  margin: 0;
  color: var(--text-primary);
  font-weight: 500;
}

/* FAQ Section */
.faq-item {
  background: linear-gradient(135deg, var(--third-color) 0%, var(--secondary-color) 100%);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  border-color: var(--fortune-gold);
  box-shadow: 0 0 20px var(--shadow-gold);
}

.faq-item h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  color: var(--fortune-gold);
  margin-bottom: 15px;
  text-shadow: 0 0 10px var(--shadow-gold);
}

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

/* CTA Sections */
.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: var(--fortune-gold);
  margin-bottom: 20px;
  text-shadow: 0 0 20px var(--shadow-gold);
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.8;
}

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

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--third-color) 100%);
  padding: 50px 20px;
  margin-top: 80px;
  border-top: 2px solid var(--fortune-gold);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
  pointer-events: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.footer-logo img {
  height: 60px;
  filter: drop-shadow(0 0 10px var(--shadow-gold));
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a:hover {
  color: var(--fortune-gold);
  text-shadow: 0 0 10px var(--shadow-gold);
}

.footer-copy p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
}

.footer-copy a {
  color: var(--fortune-gold);
  text-shadow: 0 0 5px var(--shadow-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
    flex-wrap: wrap;
  }

  .hero {
    padding: 60px 30px;
  }

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

  .section-header h2 {
    font-size: 2rem;
  }

  .bonus-grid, .pokies-features, .games-showcase, .payment-methods, .why-choose-grid, .responsible-tools, .terms-grid, .bonus-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    gap: 20px;
  }

  .navbar-menu {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    width: 100%;
  }

  .navbar .auth-buttons {
    width: 100%;
    justify-content: center;
    gap: 15px;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero .section-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 20px;
  }

  .hero-content {
    text-align: center;
    order: 1;
  }

  .hero-image {
    order: 2;
  }

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

  .hero-content h1::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-intro p {
    padding-left: 0;
    border-left: none;
    border-top: 3px solid var(--fortune-gold);
    padding-top: 15px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .section-header p {
    font-size: 1.1rem;
  }

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

  .bonus-grid, .pokies-features, .games-showcase, .payment-methods, .why-choose-grid, .responsible-tools, .terms-grid, .bonus-categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .login-steps, .claim-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .step-item {
    padding: 20px;
    gap: 15px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .step-text {
    font-size: 1rem;
  }

  .pro-tip {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .tip-icon {
    font-size: 2rem;
  }

  .login-header h2 {
    font-size: 2.2rem;
  }

  .login-header p {
    font-size: 1.1rem;
  }

  .cta-content h3 {
    font-size: 1.8rem;
  }

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

  .pokies-hero {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .pokies-header h2 {
    font-size: 2.5rem;
  }

  .pokies-header p {
    font-size: 1.1rem;
  }

  .pokies-machine {
    padding: 25px;
  }

  .reel {
    width: 60px;
    height: 60px;
  }

  .reel-icon {
    font-size: 2.2rem;
  }

  .machine-screen {
    padding: 20px;
  }

  .pokies-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-showcase {
    padding: 25px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .feature-icon {
    font-size: 2.5rem;
  }

  .bonus-hero {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .bonus-header h2 {
    font-size: 2.5rem;
  }

  .bonus-header p {
    font-size: 1.1rem;
  }

  .treasure-chest {
    width: 150px;
    height: 120px;
  }

  .chest-lid {
    width: 150px;
    height: 60px;
  }

  .chest-body {
    width: 150px;
    height: 60px;
  }

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

  .bonus-feature {
    padding: 25px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

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

  .bonus-icon {
    font-size: 2.5rem;
  }

  .icon-ring {
    width: 60px;
    height: 60px;
  }

  .bonus-gallery {
    margin: 0 20px 50px 20px;
  }

  .main-banner {
    max-width: 100%;
  }

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

  .banner-text {
    font-size: 1.5rem;
  }

  .bonus-tip {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .tip-icon {
    font-size: 2.5rem;
  }

  .payment-hero {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .payment-header h2 {
    font-size: 2.5rem;
  }

  .payment-header p {
    font-size: 1.1rem;
  }

  .payment-terminal {
    padding: 25px;
    max-width: 100%;
  }

  .payment-amount {
    font-size: 2rem;
  }

  .payment-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .payment-method-card {
    padding: 25px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

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

  .method-icon {
    font-size: 2.5rem;
  }

  .icon-glow {
    width: 60px;
    height: 60px;
  }

  .method-badge {
    top: -5px;
    right: -5px;
    font-size: 0.6rem;
    padding: 3px 8px;
  }

  .payment-guarantee {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .guarantee-icon {
    font-size: 2.5rem;
  }

  .footer-container {
    gap: 20px;
  }

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

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

  .hero {
    padding: 30px 15px;
  }

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

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .card, .bonus-card, .feature-card, .game-card, .step-card, .why-choose-card, .payment-card, .tool-card, .term-card, .bonus-category-card, .game-showcase-card {
    padding: 20px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .footer {
    padding: 30px 15px;
  }
}

/* Special Effects */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* Loading Animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading {
  animation: spin 1s linear infinite;
}

/* Hover Effects */
.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
}

/* Text Effects */
.text-glow {
  text-shadow: 0 0 10px var(--shadow-gold);
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Breadcrumbs */
.breadcrumbs {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  padding: 15px 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.breadcrumb-item:not(:last-child)::after {
  content: '›';
  margin-left: 8px;
  color: var(--fortune-gold);
  font-weight: bold;
}

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

.breadcrumb-link:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: var(--text-primary);
  font-weight: 600;
}

/* Trust Signals Section */
.trust-signals-section {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
  padding: 80px 0;
  border-top: 2px solid var(--fortune-gold);
  border-bottom: 2px solid var(--fortune-gold);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.trust-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.trust-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
  border-color: var(--fortune-gold);
}

.trust-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px var(--shadow-gold));
}

.trust-content h3 {
  color: var(--fortune-gold);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.trust-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.trust-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--secondary-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.certifications {
  margin-top: 60px;
  text-align: center;
}

.certifications h3 {
  color: var(--fortune-gold);
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.cert-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 15px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.cert-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.cert-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.cert-item span {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.9) 100%);
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
  border-color: var(--fortune-gold);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.player-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary-color);
  font-weight: 700;
}

.player-info h4 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.player-location {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.rating {
  color: var(--fortune-gold);
  font-size: 1.1rem;
}

.testimonial-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content p::before {
  content: '"';
  font-size: 3rem;
  color: var(--fortune-gold);
  position: absolute;
  top: -10px;
  left: -10px;
  opacity: 0.3;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.verified {
  color: var(--fortune-gold);
  font-weight: 600;
}

.date {
  color: var(--text-secondary);
}

.testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
  flex-wrap: wrap;
}

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

.testimonials-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--fortune-gold);
  margin-bottom: 10px;
  text-shadow: 0 0 20px var(--shadow-gold);
}

.testimonials-stats .stat-label {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 600;
}