/* ============================================
   RIZZIO CASINO - CUSTOM STYLES
   Electric Disco Glass Theme
   ============================================ */

/* === ROOT VARIABLES === */
:root {
  --neon-pink: #ff006e;
  --neon-purple: #8338ec;
  --neon-blue: #3a86ff;
  --electric-cyan: #06ffa5;
  --disco-gold: #ffbe0b;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --dark-bg: #0a0a0f;
  --text-light: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
}

/* === GLASS MORPHISM === */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.glass-strong {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* === NEON GLOW EFFECTS === */
.neon-glow-pink {
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.6), 0 0 40px rgba(255, 0, 110, 0.4), 0 0 60px rgba(255, 0, 110, 0.2);
}

.neon-glow-blue {
  box-shadow: 0 0 20px rgba(58, 134, 255, 0.6), 0 0 40px rgba(58, 134, 255, 0.4);
}

.neon-text {
  text-shadow: 0 0 5px currentColor, 0 0 5px currentColor, 0 0 15px currentColor;
}

/* === ANIMATIONS === */

/* Parallax effect - applied via JS */
.parallax-layer {
  transition: transform 0.3s ease-out;
}

/* Marquee animation for payment methods */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: flex;
  animation: marquee 30s linear infinite;
  width: fit-content;
}

.marquee-content:hover {
  animation-play-state: paused;
}

/* Floating animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

/* Pulse glow animation */
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.8), 0 0 60px rgba(255, 0, 110, 0.6);
  }
}

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

/* Shimmer effect */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.shimmer {
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  background-size: 1000px 100%;
  animation: shimmer 3s infinite;
}

/* Rotate animation for icons */
@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rotate-slow {
  animation: rotate-slow 20s linear infinite;
}

/* === GRADIENT BACKGROUNDS === */
.gradient-disco {
  background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-pink) 50%, var(--neon-blue) 100%);
}

.gradient-electric {
  background: linear-gradient(135deg, var(--neon-blue) 0%, var(--electric-cyan) 100%);
}

.gradient-gold {
  background: linear-gradient(135deg, var(--disco-gold) 0%, #fb5607 100%);
}

/* === BUTTON STYLES === */
.btn-primary {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: white;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 0, 110, 0.6), 0 10px 25px rgba(0, 0, 0, 0.3);
}

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

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

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  color: white;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* === CARD STYLES === */
.game-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.game-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover::after {
  opacity: 1;
}

/* === SIDEBAR STYLES === */
.sidebar {
  position: fixed;
  top: 80px;
  left: 0;
  width: 280px;
  height: calc(100vh - 80px);
  background: var(--glass-bg);
  backdrop-filter: blur(30px);
  border-right: 1px solid var(--glass-border);
  z-index: 40;
  overflow-y: auto;
  transition: transform 0.3s ease;
}

.sidebar::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.sidebar-link:hover {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
  border-left-color: var(--neon-pink);
}

.sidebar-link i {
  margin-right: 1rem;
  width: 20px;
  text-align: center;
}

/* === MOBILE BOTTOM MENU === */
.bottom-menu {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  border-radius: 2rem;
  z-index: 50;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.bottom-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 1rem;
  min-width: 60px;
}

.bottom-menu-item:hover,
.bottom-menu-item.active {
  color: var(--neon-pink);
  background: rgba(255, 0, 110, 0.1);
}

.bottom-menu-item i {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.bottom-menu-item span {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* === TRUSTPILOT STYLES === */
.trustpilot-badge {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: 2rem;
}

.star-rating {
  color: #00b67a;
  font-size: 1.5rem;
}

.review-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
}

/* === TABLE STYLES === */
.payment-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  overflow: hidden;
}

.payment-table th {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.payment-table td {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-table tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* === PROSE STYLING FOR READABILITY === */
.prose {
  color: var(--text-muted);
  line-height: 1.75;
}

.prose h2 {
  color: var(--text-light);
  font-size: 2rem;
  font-weight: 800;
  margin-top: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prose h3 {
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1rem;
}

.prose ul,
.prose ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose strong {
  color: var(--text-light);
  font-weight: 700;
}

.prose a {
  color: var(--neon-pink);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.prose a:hover {
  color: var(--electric-cyan);
}

/* === ACCORDION/FAQ STYLES === */
.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === FORM STYLES === */
.form-input {
  width: 100%;
  padding: 1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* === RESPONSIVE UTILITIES === */
@media (max-width: 1024px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0 !important;
  }
}

@media (min-width: 1024px) {
  .bottom-menu {
    display: none;
  }
}

/* === SMOOTH SCROLL === */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* === SELECTION STYLES === */
::selection {
  background: var(--neon-pink);
  color: white;
}

::-moz-selection {
  background: var(--neon-pink);
  color: white;
}

/* === LOADING SPINNER === */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

/* === BADGE STYLES === */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* === STEP INDICATOR === */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
}

/* === PROVIDER CLOUD === */
.provider-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.provider-tag {
  padding: 0.75rem 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 9999px;
  font-weight: 600;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.provider-tag:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* === STAT CARD === */
.stat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon-pink);
  box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--neon-pink), var(--electric-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* === MAIN CONTENT AREA === */
.main-content {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  background: linear-gradient(180deg, #0a1628 0%, #1a2332 100%);
  min-height: calc(100vh - 80px);
}

/* === CONTAINER FIX === */
.container {
  max-width: 100%;
  overflow-x: hidden;
}
