/* Template 9 - Luxury/Premium Theme */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap");

:root {
  --luxury-gold: #ffd700;
  --deep-gold: #b8860b;
  --rose-gold: #e8b4a0;
  --platinum: #e5e4e2;
  --diamond-white: #f8f8ff;
  --luxury-black: #1c1c1c;
  --charcoal: #36454f;
  --deep-purple: #301934;
  --burgundy: #800020;
  --emerald: #50c878;
  --sapphire: #0f52ba;
  --font-luxury: "Playfair Display", serif;
  --font-elegant: "Cormorant Garamond", serif;
}

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

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

body {
  font-family: var(--font-elegant);
  line-height: 1.7;
  color: var(--diamond-white);
  background: var(--luxury-black);
  min-height: 100vh;
  position: relative;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(232, 180, 160, 0.08) 0%, transparent 50%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffd700' fill-opacity='0.03'%3E%3Cpath d='M50 50m-25 0a25 25 0 1 1 50 0a25 25 0 1 1 -50 0'/%3E%3Cpath d='M50 25l12.5 12.5L50 50l-12.5-12.5z'/%3E%3Cpath d='M50 75l12.5-12.5L50 50l-12.5 12.5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
  animation: luxuryPattern 60s linear infinite;
}

@keyframes luxuryPattern {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-100px) translateY(-100px);
  }
}

img {
  max-width: 360px;
  height: auto;
  border-radius: 5px;
  border: 2px solid var(--luxury-gold);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  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;
}

/* Luxury Crown */
.luxury-crown {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--luxury-gold), var(--deep-gold));
  border-radius: 50%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  animation: crownFloat 6s ease-in-out infinite;
}

@keyframes crownFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.luxury-crown::before {
  content: "♔";
  color: var(--luxury-black);
  font-size: 2rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Header */
.header {
  background: linear-gradient(135deg, var(--luxury-black), var(--charcoal));
  color: var(--diamond-white);
  padding: 25px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--luxury-gold);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.header::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
  animation: luxuryShimmer 3s ease-in-out infinite;
}

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

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

.header .logo {
  font-family: var(--font-luxury);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--luxury-gold);
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  letter-spacing: 3px;
  position: relative;
}

.header .logo::before {
  content: "◆";
  position: absolute;
  left: -50px;
  color: var(--rose-gold);
  animation: diamondSparkle 4s ease-in-out infinite;
}

.header .logo::after {
  content: "◆";
  position: absolute;
  right: -50px;
  color: var(--rose-gold);
  animation: diamondSparkle 4s ease-in-out infinite reverse;
}

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

.header .logo:hover {
  color: var(--rose-gold);
  text-shadow: 2px 2px 8px rgba(232, 180, 160, 0.8);
  transform: scale(1.05);
}

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

.header .quick-nav a {
  color: var(--diamond-white);
  text-decoration: none;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--deep-purple), var(--burgundy));
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--luxury-gold);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
  letter-spacing: 1px;
}

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

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

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

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

.section.head {
  background: linear-gradient(135deg, rgba(48, 25, 52, 0.4) 0%, rgba(128, 0, 32, 0.4) 100%);
  color: var(--diamond-white);
  text-align: center;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.section.head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(232, 180, 160, 0.1) 0%, transparent 50%);
  animation: luxuryAura 15s ease-in-out infinite;
}

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

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

.section.head h1 {
  font-family: var(--font-luxury);
  font-size: 5.5rem;
  font-weight: 900;
  margin-bottom: 30px;
  text-transform: uppercase;
  background: linear-gradient(45deg, var(--luxury-gold), var(--rose-gold), var(--platinum));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: luxuryGradient 8s ease-in-out infinite;
  letter-spacing: 5px;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

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

.section.head h1::before {
  content: "♔ ♕ ♔";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--luxury-gold);
  font-size: 2.5rem;
  animation: royalCrown 6s ease-in-out infinite;
}

@keyframes royalCrown {
  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
  }
}

.section.head p {
  font-size: 1.5rem;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
  font-style: italic;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  font-weight: 400;
}

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

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

.section header h2::before,
.section header h2::after {
  content: "◊";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--rose-gold);
  font-size: 3rem;
  animation: luxuryOrnament 8s ease-in-out infinite;
}

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

.section header h2::after {
  right: -100px;
  animation-delay: 4s;
}

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

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

.casino-item {
  width: calc(33.333% - 24px);
  min-width: 320px;
  border: 2px solid var(--luxury-gold);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s ease;
  position: relative;
  background: transparent;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
  animation: luxuryElevate 12s ease-in-out infinite;
}

@keyframes luxuryElevate {
  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(--luxury-gold), var(--rose-gold), var(--platinum), var(--luxury-gold));
  background-size: 400% 400%;
  animation: luxuryBorder 12s ease infinite;
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

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

.casino-item:hover {
  transform: translateY(-20px) scale(1.03);
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.4);
}

.casino-header {
  padding: 35px 30px;
  text-align: center;
  background: linear-gradient(135deg, rgba(48, 25, 52, 0.6), rgba(128, 0, 32, 0.6));
  border-bottom: 2px solid var(--luxury-gold);
  position: relative;
}

.casino-header::before {
  content: "◆ ◇ ◆";
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--rose-gold);
  font-size: 1.2rem;
  animation: luxuryHeaderGems 5s ease-in-out infinite;
}

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

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

.casino-logo::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--emerald), var(--sapphire), var(--rose-gold), var(--luxury-gold));
  background-size: 300% 300%;
  animation: gemstoneGlow 8s ease infinite;
  border-radius: 5px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

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

.casino-logo:hover {
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
}

.casino-name {
  font-family: var(--font-luxury);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--luxury-gold);
  margin-bottom: 18px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

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

.rating .stars {
  width: 90px;
  height: 18px;
  background: url("../../../images/stars-empty.svg") left center / auto 100%;
  position: relative;
  filter: hue-rotate(45deg) 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(45deg) saturate(2) brightness(1.5);
}

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

.casino-bonus {
  text-align: center;
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.15), rgba(232, 180, 160, 0.15));
  border-radius: 15px;
  border: 1px solid var(--luxury-gold);
  position: relative;
  overflow: hidden;
}

.casino-bonus::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: luxuryBonusGlow 10s ease-in-out infinite;
}

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

.bonus-amount {
  display: block;
  font-family: var(--font-luxury);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(45deg, var(--luxury-gold), var(--rose-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  margin-bottom: 10px;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.free-spins {
  color: var(--rose-gold);
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

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

.feature-tag {
  background: linear-gradient(135deg, var(--deep-purple), var(--burgundy));
  color: var(--diamond-white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  border: 1px solid var(--luxury-gold);
  letter-spacing: 0.5px;
}

.feature-tag:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(232, 180, 160, 0.4);
  background: linear-gradient(135deg, var(--luxury-gold), var(--rose-gold));
  color: var(--luxury-black);
}

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

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

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

.detail-label {
  color: var(--luxury-gold);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-label svg {
  width: 20px;
  height: 20px;
  stroke: var(--luxury-gold);
}

.detail-value {
  color: var(--diamond-white);
  font-weight: 700;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.casino-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--luxury-gold), var(--deep-gold));
  color: var(--luxury-black);
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 30px;
  font-family: var(--font-luxury);
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  letter-spacing: 2px;
  border: 2px solid var(--luxury-gold);
}

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

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

.casino-button:hover {
  color: var(--luxury-black);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--luxury-black) 0%, var(--charcoal) 100%);
  color: var(--diamond-white);
  padding: 80px 0 50px;
  margin-top: 100px;
  border-top: 3px solid var(--luxury-gold);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--luxury-gold), var(--rose-gold), var(--luxury-gold), transparent);
  animation: luxuryFooterShimmer 4s ease-in-out infinite;
}

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

.footer-title {
  font-family: var(--font-luxury);
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--luxury-gold);
  text-transform: uppercase;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  text-align: center;
  letter-spacing: 4px;
}

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

.footer .logo-item {
  width: 160px;
  height: 50px;
  background: rgba(54, 69, 79, 0.8);
  border: 2px solid var(--luxury-gold);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  padding: 10px;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.footer .logo-item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--emerald), var(--sapphire), var(--rose-gold), var(--luxury-gold));
  background-size: 300% 300%;
  animation: luxuryLogoGlow 10s ease infinite;
  border-radius: 15px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

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

.footer .logo-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 12px 35px rgba(232, 180, 160, 0.4);
}

.footer .icon {
  width: 70px;
  height: auto;
  fill: var(--luxury-gold);
  transition: all 0.4s ease;
}

.footer .logo-item:hover .icon {
  fill: var(--rose-gold);
}

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

.copyright {
  color: var(--diamond-white);
  opacity: 0.8;
  font-style: italic;
  font-size: 1.1rem;
}

/* FAQ */
.faq-item {
  background: rgba(54, 69, 79, 0.4);
  border: 2px solid var(--luxury-gold);
  border-radius: 15px;
  margin-bottom: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(232, 180, 160, 0.3);
  transform: translateY(-3px);
}

.accordion-question {
  background: linear-gradient(135deg, rgba(48, 25, 52, 0.4), rgba(128, 0, 32, 0.4));
  border: none;
  font-family: var(--font-elegant);
  font-size: 1.3rem;
  color: var(--diamond-white);
  padding: 30px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.accordion-question:hover {
  background: linear-gradient(135deg, rgba(232, 180, 160, 0.3), rgba(80, 200, 120, 0.3));
}

.accordion-icon {
  float: right;
  transition: transform 0.4s ease;
  color: var(--luxury-gold);
  font-size: 1.8rem;
}

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

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(28, 28, 28, 0.95);
}

.accordion-answer p {
  padding: 30px;
  color: var(--diamond-white);
  opacity: 0.95;
  line-height: 1.9;
  font-style: italic;
  font-size: 1.1rem;
}

/* Text Block */
.text-content {
  background: rgba(54, 69, 79, 0.3);
  padding: 50px;
  border-radius: 20px;
  border: 2px solid var(--luxury-gold);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.text-content::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  animation: luxuryTextGlow 15s ease-in-out infinite;
}

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

.text-content h3 {
  font-family: var(--font-luxury);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--luxury-gold);
  margin: 35px 0 25px;
  text-transform: uppercase;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
}

.text-content p {
  margin-bottom: 25px;
  line-height: 1.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.text-content a {
  color: var(--rose-gold);
  text-decoration: none;
  border-bottom: 2px solid var(--rose-gold);
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.text-content a:hover {
  color: var(--luxury-gold);
  border-bottom-color: var(--luxury-gold);
  text-shadow: 0 0 10px var(--luxury-gold);
}

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

/* Popup */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 28, 28, 0.95);
  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(--charcoal), var(--luxury-black));
  border: 3px solid var(--luxury-gold);
  border-radius: 20px;
  padding: 50px;
  max-width: 550px;
  width: 90%;
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.4);
}

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

.popup-header h3 {
  font-family: var(--font-luxury);
  font-size: 2.2rem;
  color: var(--luxury-gold);
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

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

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

.popup-casino-logo {
  width: 220px;
  height: 90px;
  margin: 0 auto 25px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--luxury-gold);
}

.popup-casino-info h4 {
  font-family: var(--font-luxury);
  color: var(--luxury-gold);
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 1.4rem;
}

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

.popup-casino-button {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--luxury-gold), var(--deep-gold));
  color: var(--luxury-black);
  padding: 20px;
  text-decoration: none;
  border-radius: 30px;
  font-family: var(--font-luxury);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.3);
  letter-spacing: 2px;
  border: 2px solid var(--luxury-gold);
}

.popup-casino-button:hover {
  background: linear-gradient(135deg, var(--rose-gold), var(--platinum));
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(232, 180, 160, 0.5);
}

/* 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;
}

header .quick-nav a {
position: relative;
overflow: hidden; /* чтобы ::before не вылезал */
display: inline-block;
z-index: 1;
}

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

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