/* Template 4 - Retro 80s Synthwave Theme */
@import url("https://fonts.googleapis.com/css2?family=Audiowide:wght@400&family=Exo+2:wght@300;400;500;600;700;800&display=swap");

:root {
  --synth-bg: #0f0f23;
  --synth-dark: #1a1a2e;
  --synth-purple: #ff00ff;
  --synth-cyan: #00ffff;
  --synth-pink: #ff1493;
  --synth-orange: #ff6600;
  --synth-yellow: #ffff00;
  --synth-white: #ffffff;
  --synth-gray: #888888;
  --synth-light: #e0e0e0;

  --neon-purple: 0 0 20px #ff00ff, 0 0 40px #ff00ff, 0 0 60px #ff00ff;
  --neon-cyan: 0 0 20px #00ffff, 0 0 40px #00ffff, 0 0 60px #00ffff;
  --neon-pink: 0 0 20px #ff1493, 0 0 40px #ff1493, 0 0 60px #ff1493;

  --font-primary: "Exo 2", sans-serif;
  --font-accent: "Audiowide", cursive;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--synth-white);
  background: var(--synth-bg);
  background-image: linear-gradient(
      90deg,
      transparent 79px,
      rgba(255, 0, 255, 0.03) 81px,
      rgba(255, 0, 255, 0.03) 82px,
      transparent 84px
    ), linear-gradient(rgba(255, 0, 255, 0.03) 0px, transparent 1px),
    linear-gradient(rgba(0, 255, 255, 0.03) 0px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 80px 80px;
  min-height: 100vh;
  font-weight: 400;
  animation: synthGrid 20s linear infinite;
}

@keyframes synthGrid {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 80px 80px, 80px 80px, 80px 80px;
  }
}

.main {
  flex: 1;
}

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

/* Header */
.site-header {
  background: linear-gradient(135deg, var(--synth-dark) 0%, rgba(255, 0, 255, 0.1) 100%);
  border-bottom: 2px solid var(--synth-purple);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--neon-purple);
  backdrop-filter: blur(10px);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-logo img {
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: 2px solid var(--synth-cyan);
  box-shadow: var(--neon-cyan);
  filter: hue-rotate(180deg);
}

.site-name {
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: 400;
  color: var(--synth-purple);
  text-decoration: none;
  text-shadow: var(--neon-purple);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0;
}

.site-nav a {
  color: var(--synth-cyan);
  text-decoration: none;
  font-weight: 600;
  padding: 1rem 2rem;
  border-right: 2px solid var(--synth-purple);
  transition: all 0.3s ease;
  background: rgba(255, 0, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.site-nav li:last-child a {
  border-right: none;
}



.site-nav a:hover::before {
  left: 100%;
}

.site-nav a:hover {
  background: var(--synth-purple);
  color: var(--synth-white);
  text-shadow: var(--neon-cyan);
  box-shadow: inset 0 0 20px rgba(255, 0, 255, 0.5);
}

/* Hero Section */
.section.head {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--synth-bg) 0%, var(--synth-dark) 50%, var(--synth-bg) 100%);
  position: relative;
  overflow: hidden;
}

.section.head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 0, 255, 0.1) 50%, transparent 100%),
    radial-gradient(circle at 30% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
  animation: synthWave 15s ease-in-out infinite;
}

@keyframes synthWave {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.section.head h1 {
  font-family: var(--font-accent);
  font-size: 4.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--synth-purple);
  text-shadow: var(--neon-purple);
  text-transform: uppercase;
  letter-spacing: 5px;
  position: relative;
  z-index: 1;
  animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
  0% {
    text-shadow: var(--neon-purple);
  }
  100% {
    text-shadow: var(--neon-cyan);
    color: var(--synth-cyan);
  }
}

.section.head p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
  position: relative;
  z-index: 1;
  color: var(--synth-light);
}

/* Section Styling */
.section {
  padding: 6rem 0;
  position: relative;
}

.section:nth-child(even) {
  background: rgba(255, 0, 255, 0.05);
}

.section header {
  text-align: center;
  margin-bottom: 4rem;
}

.section header h2 {
  font-family: var(--font-accent);
  font-size: 3rem;
  font-weight: 400;
  color: var(--synth-cyan);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: var(--neon-cyan);
  position: relative;
}

.section header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--synth-purple), var(--synth-cyan), var(--synth-pink));
  box-shadow: var(--neon-purple);
}

.section header p {
  font-size: 1.1rem;
  color: var(--synth-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Casino List */
.casino_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.casino-item {
  width: calc(33.333% - 1.5rem);
  min-width: 320px;
  background: transparent;
  border: 2px solid var(--synth-purple);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.casino-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.casino-item:hover::before {
  opacity: 1;
}

.casino-item:hover {
  transform: translateY(-10px) rotateX(5deg);
  border-color: var(--synth-cyan);
  box-shadow: var(--neon-cyan), 0 20px 40px rgba(255, 0, 255, 0.3);
}

.casino-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(45deg, var(--synth-pink), var(--synth-orange));
  color: var(--synth-white);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--neon-pink);
  animation: synthPulse 2s infinite;
}

@keyframes synthPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: var(--neon-pink);
  }
  50% {
    transform: scale(1.05);
    box-shadow: var(--neon-cyan);
  }
}

.casino-header {
  padding: 2rem;
  text-align: center;
  background: rgba(26, 26, 46, 0.8);
  border-bottom: 2px solid var(--synth-purple);
  position: relative;
  z-index: 1;
}

.casino-logo {
  width: 360px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 5px;
  border: 2px solid var(--synth-cyan);
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--neon-cyan);
  position: relative;
}

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

.casino-logo:hover::before {
  left: 100%;
}

.casino-logo:hover {
  transform: scale(1.05) perspective(1000px) rotateY(10deg);
  box-shadow: var(--neon-purple), 0 10px 30px rgba(255, 0, 255, 0.3);
}

.casino-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.2) contrast(1.1);
}

.casino-name {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--synth-purple);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: var(--neon-purple);
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.rating .stars {
  width: 120px;
  height: 20px;
  background: rgba(136, 136, 136, 0.3);
  border: 2px solid var(--synth-purple);
  position: relative;
  overflow: hidden;
}

.rating .stars .fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--synth-purple), var(--synth-cyan), var(--synth-pink));
  transition: all 0.4s ease;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.3);
}

.rating .text {
  color: var(--synth-cyan);
  font-weight: 700;
  font-family: var(--font-accent);
  text-shadow: var(--neon-cyan);
}

.casino-body {
  padding: 2rem;
  background: rgba(15, 15, 35, 0.9);
  position: relative;
  z-index: 1;
}

.casino-bonus {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--synth-purple), var(--synth-pink));
  box-shadow: var(--neon-purple);
  position: relative;
  overflow: hidden;
}

.casino-bonus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: synthSweep 3s linear infinite;
}

@keyframes synthSweep {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.bonus-amount {
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

.free-spins {
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.casino-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.feature-tag {
  background: rgba(26, 26, 46, 0.8);
  color: var(--synth-cyan);
  padding: 0.5rem 1rem;
  border: 1px solid var(--synth-purple);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

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

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

.feature-tag:hover {
  background: var(--synth-purple);
  color: var(--synth-white);
  box-shadow: var(--neon-purple);
  transform: translateY(-2px);
}

.casino-details {
  margin-bottom: 2rem;
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid var(--synth-purple);
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 0, 255, 0.3);
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: rgba(255, 0, 255, 0.1);
  box-shadow: inset 0 0 20px rgba(0, 255, 255, 0.1);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--synth-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-value {
  color: var(--synth-cyan);
  font-weight: 700;
  font-family: var(--font-accent);
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.casino-action {
  text-align: center;
}

.casino-button {
  display: inline-block;
  background: linear-gradient(45deg, var(--synth-purple), var(--synth-cyan));
  color: var(--synth-white);
  padding: 1rem 2rem;
  border: 2px solid var(--synth-cyan);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: var(--neon-purple);
  position: relative;
  overflow: hidden;
}

.casino-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.casino-button:hover::before {
  left: 100%;
}

.casino-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--neon-cyan), 0 10px 30px rgba(0, 255, 255, 0.3);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

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

.faq-item {
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid var(--synth-purple);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.1), transparent);
  transition: left 0.8s;
}

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

.faq-item:hover {
  box-shadow: var(--neon-purple);
  border-color: var(--synth-cyan);
}

.accordion-question {
  background: none;
  border: none;
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--synth-cyan);
  padding: 1.5rem 2rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.accordion-question:hover {
  background: rgba(255, 0, 255, 0.1);
  text-shadow: var(--neon-cyan);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(45deg, var(--synth-purple), var(--synth-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: var(--neon-purple);
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--synth-white);
  transition: all 0.3s ease;
}

.accordion-icon::before {
  width: 10px;
  height: 2px;
}

.accordion-icon::after {
  width: 2px;
  height: 10px;
}

.faq-item.active .accordion-icon {
  transform: rotate(45deg);
  box-shadow: var(--neon-cyan);
}

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 2rem;
  color: var(--synth-light);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.faq-item.active .accordion-answer {
  max-height: 300px;
  padding: 0 2rem 1.5rem;
}

/* Footer */
.footer {
  background: var(--synth-dark);
  color: var(--synth-white);
  padding: 3rem 0 1rem;
  border-top: 2px solid var(--synth-purple);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 0, 255, 0.05), rgba(0, 255, 255, 0.05));
  animation: synthFooter 10s ease-in-out infinite;
}

@keyframes synthFooter {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.footer-about {
  flex: 1;
  max-width: 400px;
}

.footer-tagline {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  color: var(--synth-light);
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 0;
}

.footer-links a {
  color: var(--synth-cyan);
  text-decoration: none;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border-right: 1px solid var(--synth-purple);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.footer-links li:last-child a {
  border-right: none;
}


.footer-links a:hover::before {
  left: 100%;
}

.footer-links a:hover {
  background: var(--synth-purple);
  color: var(--synth-white);
  text-shadow: var(--neon-cyan);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--synth-purple);
  position: relative;
  z-index: 1;
}

.copyright {
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-accent);
  color: var(--synth-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Text Content */
.text-content {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(26, 26, 46, 0.6);
  padding: 3rem;
  border: 2px solid var(--synth-purple);
  line-height: 1.7;
  position: relative;
  overflow: hidden;
}

.text-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 0, 255, 0.05), rgba(0, 255, 255, 0.05));
}

.text-content h3 {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--synth-purple);
  margin: 2rem 0 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: var(--neon-purple);
  position: relative;
  z-index: 1;
}

.text-content p {
  margin-bottom: 1.5rem;
  color: var(--synth-light);
  position: relative;
  z-index: 1;
}

.text-content ul,
.text-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
  position: relative;
  z-index: 1;
}

.text-content li {
  margin-bottom: 0.5rem;
  color: var(--synth-light);
}

