/* Template 10 - Futuristic/Tech Theme */
@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Orbitron:wght@400;700;900&family=Share+Tech+Mono&display=swap");

:root {
  --neon-cyan: #00ffff;
  --neon-blue: #0080ff;
  --neon-purple: #8000ff;
  --neon-pink: #ff00ff;
  --neon-green: #00ff80;
  --electric-yellow: #ffff00;
  --tech-white: #ffffff;
  --tech-black: #000000;
  --dark-gray: #1a1a1a;
  --darker-gray: #0d0d0d;
  --steel-blue: #4682b4;
  --chrome: #c0c0c0;
  --font-tech: "Rajdhani", sans-serif;
  --font-digital: "Orbitron", monospace;
  --font-mono: "Share Tech Mono", monospace;
}

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

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

body {
  font-family: var(--font-tech);
  line-height: 1.6;
  color: var(--tech-white);
  background: var(--tech-black);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      0deg,
      transparent 24%,
      rgba(0, 255, 255, 0.05) 25%,
      rgba(0, 255, 255, 0.05) 26%,
      transparent 27%,
      transparent 74%,
      rgba(0, 255, 255, 0.05) 75%,
      rgba(0, 255, 255, 0.05) 76%,
      transparent 77%,
      transparent
    ),
    linear-gradient(
      90deg,
      transparent 24%,
      rgba(0, 128, 255, 0.05) 25%,
      rgba(0, 128, 255, 0.05) 26%,
      transparent 27%,
      transparent 74%,
      rgba(0, 128, 255, 0.05) 75%,
      rgba(0, 128, 255, 0.05) 76%,
      transparent 77%,
      transparent
    );
  background-size: 50px 50px;
  z-index: -2;
  animation: techGrid 20s linear infinite;
}

@keyframes techGrid {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(128, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 10%, rgba(255, 0, 255, 0.08) 0%, transparent 50%);
  z-index: -1;
  animation: techAura 25s ease-in-out infinite;
}

@keyframes techAura {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

img {
  max-width: 360px;
  height: auto;
  border-radius: 5px;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 20px var(--neon-cyan);
  transition: all 0.3s ease;
}

.f-left {
  float: left;
  margin: 0 20px 20px 0;
}
.f-right {
  float: right;
  margin: 0 0 20px 20px;
}
.f-center {
  display: block;
  margin: 0 auto 20px;
}

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

/* Tech HUD */
.tech-hud {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 200px;
  height: 60px;
  background: rgba(26, 26, 26, 0.9);
  border: 2px solid var(--neon-cyan);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  backdrop-filter: blur(10px);
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  animation: hudPulse 3s ease-in-out infinite;
}

@keyframes hudPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
  }
}

.tech-hud::before {
  content: "SYSTEM ONLINE";
  animation: hudText 8s linear infinite;
}

@keyframes hudText {
  0%,
  25% {
    content: "SYSTEM ONLINE";
  }
  25%,
  50% {
    content: "SCANNING...";
  }
  50%,
  75% {
    content: "DATA LOADED";
  }
  75%,
  100% {
    content: "READY";
  }
}

/* Header */
.header {
  background: rgba(26, 26, 26, 0.95);
  color: var(--tech-white);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--neon-cyan);
  backdrop-filter: blur(15px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

.header::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--neon-cyan),
    var(--neon-blue),
    var(--neon-purple),
    var(--neon-pink),
    var(--neon-cyan)
  );
  background-size: 200% 100%;
  animation: techScan 4s linear infinite;
}

@keyframes techScan {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

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

.header .logo {
  font-family: var(--font-digital);
  font-size: 3rem;
  font-weight: 900;
  color: var(--neon-cyan);
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 0 20px var(--neon-cyan);
  transition: all 0.3s ease;
  letter-spacing: 4px;
  position: relative;
}

.header .logo::before {
  content: "▲";
  position: absolute;
  left: -50px;
  color: var(--neon-green);
  animation: techArrow 2s ease-in-out infinite;
}

.header .logo::after {
  content: "▲";
  position: absolute;
  right: -50px;
  color: var(--neon-green);
  animation: techArrow 2s ease-in-out infinite reverse;
}

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

.header .logo:hover {
  color: var(--neon-pink);
  text-shadow: 0 0 30px var(--neon-pink);
  transform: scale(1.05);
}

.header .quick-nav ul {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.header .quick-nav a {
  color: var(--tech-white);
  text-decoration: none;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--dark-gray), var(--darker-gray));
  border: 2px solid var(--neon-blue);
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  box-shadow: 0 0 15px rgba(0, 128, 255, 0.3);
  letter-spacing: 1px;
}

.header .quick-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  transition: left 0.3s ease;
  z-index: -1;
}

.header .quick-nav a:hover::before {
  left: 0;
}

.header .quick-nav a:hover {
  color: var(--tech-black);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.5);
}

/* Main Content */
.section {
  padding: 80px 0;
}

.section.head {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(128, 0, 255, 0.1) 100%);
  color: var(--tech-white);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.section.head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 255, 255, 0.03) 2px,
      rgba(0, 255, 255, 0.03) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(128, 0, 255, 0.03) 2px,
      rgba(128, 0, 255, 0.03) 4px
    );
  animation: techScanlines 15s linear infinite;
}

@keyframes techScanlines {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100px);
  }
}

.section.head .container {
  position: relative;
  z-index: 1;
}

.section.head h1 {
  font-family: var(--font-digital);
  font-size: 5.5rem;
  font-weight: 900;
  margin-bottom: 30px;
  text-transform: uppercase;
  background: linear-gradient(45deg, var(--neon-cyan), var(--neon-blue), var(--neon-purple), var(--neon-pink));
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: techGradient 6s ease-in-out infinite;
  letter-spacing: 6px;
  text-shadow: 0 0 40px rgba(0, 255, 255, 0.5);
}

@keyframes techGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.section.head h1::before {
  content: "◢ ◣ ◤ ◥";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--electric-yellow);
  font-size: 2rem;
  animation: techSymbols 4s ease-in-out infinite;
}

@keyframes techSymbols {
  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) rotate(90deg);
  }
}

.section.head p {
  font-size: 1.4rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  font-family: var(--font-mono);
  letter-spacing: 1px;
}

/* Section Headers */
.section header {
  text-align: center;
  margin-bottom: 60px;
}

.section header h2 {
  font-family: var(--font-digital);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--neon-cyan);
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 0 0 25px var(--neon-cyan);
  position: relative;
  letter-spacing: 4px;
}

.section header h2::before,
.section header h2::after {
  content: "◆";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neon-purple);
  font-size: 2.5rem;
  animation: techDiamond 5s ease-in-out infinite;
}

.section header h2::before {
  left: -80px;
}

.section header h2::after {
  right: -80px;
  animation-delay: 2.5s;
}

@keyframes techDiamond {
  0%,
  100% {
    transform: translateY(-50%) rotate(0deg) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-50%) rotate(45deg) scale(1.3);
    opacity: 1;
  }
}

/* Casino List */
.casino_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
}

.casino-item {
  width: calc(33.333% - 20px);
  min-width: 300px;
  border: 2px solid var(--neon-cyan);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  background: transparent;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
  animation: techFloat 8s ease-in-out infinite;
}

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

.casino-item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--neon-cyan),
    var(--neon-blue),
    var(--neon-purple),
    var(--neon-pink),
    var(--neon-green)
  );
  background-size: 500% 500%;
  animation: techBorder 8s ease infinite;
  clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes techBorder {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

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

.casino-item:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.5);
}

.casino-header {
  padding: 30px 25px;
  text-align: center;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(13, 13, 13, 0.9));
  border-bottom: 2px solid var(--neon-cyan);
  position: relative;
}

.casino-header::before {
  content: "▼ ▲ ▼";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--neon-green);
  font-size: 1rem;
  animation: techIndicators 3s ease-in-out infinite;
}

@keyframes techIndicators {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

.casino-logo {
  width: 360px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--tech-black);
  border: 2px solid var(--neon-cyan);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0, 255, 255, 0.2);
}

.casino-logo::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--neon-green), var(--electric-yellow), var(--neon-pink), var(--neon-cyan));
  background-size: 300% 300%;
  animation: techLogoGlow 6s ease infinite;
  border-radius: 5px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes techLogoGlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.casino-logo:hover::after {
  opacity: 1;
}

.casino-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--neon-cyan);
}

.casino-name {
  font-family: var(--font-digital);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--neon-cyan);
  margin-bottom: 15px;
  text-transform: uppercase;
  text-shadow: 0 0 15px var(--neon-cyan);
  letter-spacing: 2px;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.rating .stars {
  width: 84px;
  height: 15px;
  background: url("../../../images/stars-empty.svg") left center / auto 100%;
  position: relative;
  filter: hue-rotate(180deg) saturate(2) brightness(1.5);
}

.rating .stars .fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: url("../../../images/stars-active.svg") left center / auto 100%;
  filter: hue-rotate(180deg) saturate(2) brightness(1.5);
}

.casino-body {
  padding: 25px;
  background: rgba(26, 26, 26, 0.95);
}

.casino-bonus {
  text-align: center;
  margin-bottom: 20px;
  padding: 15px;
  background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(128, 0, 255, 0.1));
  border: 2px solid var(--neon-blue);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  position: relative;
  overflow: hidden;
}

.casino-bonus::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
  animation: techBonusScan 3s ease-in-out infinite;
}

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

.bonus-amount {
  display: block;
  font-family: var(--font-digital);
  font-size: 2rem;
  font-weight: 700;
  color: var(--electric-yellow);
  text-shadow: 0 0 15px var(--electric-yellow);
  margin-bottom: 8px;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.free-spins {
  color: var(--neon-green);
  font-size: 1rem;
  font-weight: 600;
  text-shadow: 0 0 10px var(--neon-green);
  position: relative;
  z-index: 1;
}

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

.feature-tag {
  background: linear-gradient(135deg, var(--dark-gray), var(--darker-gray));
  color: var(--tech-white);
  padding: 6px 12px;
  border: 1px solid var(--neon-blue);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(0, 128, 255, 0.3);
  transition: all 0.3s ease;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
  letter-spacing: 0.5px;
}

.feature-tag:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.5);
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: var(--tech-black);
}

.casino-details {
  margin-bottom: 25px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

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

.detail-label {
  color: var(--neon-cyan);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-label svg {
  width: 18px;
  height: 18px;
  stroke: var(--neon-cyan);
}

.detail-value {
  color: var(--tech-white);
  font-weight: 700;
  font-size: 1rem;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  font-family: var(--font-mono);
}

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

.casino-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  color: var(--tech-black);
  padding: 15px 35px;
  text-decoration: none;
  font-family: var(--font-digital);
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  letter-spacing: 2px;
  border: 2px solid var(--neon-cyan);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.casino-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  transition: left 0.3s ease;
  z-index: -1;
}

.casino-button:hover::before {
  left: 0;
}

.casino-button:hover {
  color: var(--tech-white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.6);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--tech-black) 0%, var(--dark-gray) 100%);
  color: var(--tech-white);
  padding: 60px 0 40px;
  margin-top: 80px;
  border-top: 3px solid var(--neon-cyan);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--neon-cyan),
    var(--neon-blue),
    var(--neon-purple),
    var(--neon-pink),
    var(--neon-green),
    var(--neon-cyan)
  );
  background-size: 200% 100%;
  animation: techFooterScan 5s linear infinite;
}

@keyframes techFooterScan {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

.footer-title {
  font-family: var(--font-digital);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--neon-cyan);
  text-transform: uppercase;
  text-shadow: 0 0 25px var(--neon-cyan);
  text-align: center;
  letter-spacing: 4px;
}

.footer .logos_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 40px 0;
}

.footer .logo-item {
  width: 145px;
  height: 40px;
  background: rgba(26, 26, 26, 0.8);
  border: 2px solid var(--neon-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 8px;
  box-shadow: 0 0 15px rgba(0, 128, 255, 0.3);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  position: relative;
  overflow: hidden;
}

.footer .logo-item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--neon-green), var(--electric-yellow), var(--neon-pink), var(--neon-cyan));
  background-size: 300% 300%;
  animation: techFooterLogoGlow 8s ease infinite;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes techFooterLogoGlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.footer .logo-item:hover::before {
  opacity: 1;
}

.footer .logo-item:hover {
  background: rgba(0, 255, 255, 0.1);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.5);
}

.footer .icon {
  width: 64px;
  height: auto;
  fill: var(--neon-cyan);
  transition: all 0.3s ease;
}

.footer .logo-item:hover .icon {
  fill: var(--neon-green);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 255, 255, 0.3);
}

.copyright {
  color: var(--tech-white);
  opacity: 0.8;
  font-family: var(--font-mono);
  letter-spacing: 1px;
}

/* FAQ */
.faq-item {
  background: rgba(26, 26, 26, 0.6);
  border: 2px solid var(--neon-cyan);
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.faq-item:hover {
  box-shadow: 0 0 25px rgba(0, 128, 255, 0.4);
  transform: translateY(-2px);
}

.accordion-question {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(128, 0, 255, 0.1));
  border: none;
  font-family: var(--font-tech);
  font-size: 1.2rem;
  color: var(--tech-white);
  padding: 25px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.accordion-question:hover {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
}

.accordion-icon {
  float: right;
  transition: transform 0.3s ease;
  color: var(--neon-cyan);
  font-size: 1.5rem;
}

.faq-item.active .accordion-icon {
  transform: rotate(45deg);
  color: var(--neon-pink);
}

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(13, 13, 13, 0.9);
}

.accordion-answer p {
  padding: 25px;
  color: var(--tech-white);
  opacity: 0.9;
  line-height: 1.8;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

/* Text Block */
.text-content {
  background: rgba(26, 26, 26, 0.4);
  padding: 40px;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
  clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
  position: relative;
  overflow: hidden;
}

.text-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  animation: techTextScan 8s ease-in-out infinite;
}

@keyframes techTextScan {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

.text-content h3 {
  font-family: var(--font-digital);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neon-cyan);
  margin: 30px 0 20px;
  text-transform: uppercase;
  text-shadow: 0 0 20px var(--neon-cyan);
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
}

.text-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.text-content a {
  color: var(--neon-green);
  text-decoration: none;
  border-bottom: 2px solid var(--neon-green);
  transition: all 0.3s ease;
  text-shadow: 0 0 8px var(--neon-green);
}

.text-content a:hover {
  color: var(--neon-pink);
  border-bottom-color: var(--neon-pink);
  text-shadow: 0 0 12px var(--neon-pink);
}

.text-content a[href*="/go/"] {
  target: "_blank";
}

/* Popup */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  z-index: 10000;
  backdrop-filter: blur(15px);
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--dark-gray), var(--tech-black));
  border: 3px solid var(--neon-cyan);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.5);
  clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--neon-cyan);
  padding-bottom: 20px;
}

.popup-header h3 {
  font-family: var(--font-digital);
  font-size: 2rem;
  color: var(--neon-cyan);
  text-transform: uppercase;
  text-shadow: 0 0 20px var(--neon-cyan);
  letter-spacing: 2px;
}

.popup-close {
  background: none;
  border: none;
  color: var(--neon-pink);
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-close:hover {
  color: var(--neon-purple);
  text-shadow: 0 0 20px var(--neon-purple);
  transform: scale(1.2);
}

.popup-casino-logo {
  width: 200px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--neon-cyan);
}

.popup-casino-info h4 {
  font-family: var(--font-digital);
  color: var(--neon-cyan);
  text-align: center;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-shadow: 0 0 15px var(--neon-cyan);
}

.popup-casino-bonus {
  text-align: center;
  margin-bottom: 25px;
}

.popup-casino-button {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  color: var(--tech-black);
  padding: 18px;
  text-decoration: none;
  font-family: var(--font-digital);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  letter-spacing: 2px;
  border: 2px solid var(--neon-cyan);
  clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
}

.popup-casino-button:hover {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  color: var(--tech-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.6);
}
/* FAQ статичный режим */
.accordion-question {
all: unset;
display: block;
font-family: var(--font-family);
font-size: 1.8rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 10px;
}

.accordion-icon {
display: none;
}

.accordion-answer,
.static-answer {
max-height: none !important;
padding: 0 0 1.5rem 0;
color: var(--text-secondary);
overflow: visible;
transition: none !important;
}