/* Template 8 - Medieval/Fantasy Theme */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Uncial+Antiqua&family=MedievalSharp&display=swap");

:root {
  --gold: #d4af37;
  --dark-gold: #b8860b;
  --bronze: #cd7f32;
  --dark-red: #8b0000;
  --forest-green: #228b22;
  --royal-blue: #4169e1;
  --parchment: #f4e4bc;
  --dark-brown: #3e2723;
  --darker-brown: #1e0e0a;
  --stone-gray: #696969;
  --light-stone: #a9a9a9;
  --medieval-white: #faf0e6;
  --font-medieval: "Cinzel", serif;
  --font-decorative: "Uncial Antiqua", cursive;
  --font-sharp: "MedievalSharp", cursive;
}

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

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

body {
  font-family: var(--font-medieval);
  line-height: 1.6;
  color: var(--medieval-white);
  background: var(--dark-brown);
  min-height: 100vh;
  position: relative;
  background-image: radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(139, 0, 0, 0.1) 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='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M30 30l15-15v30l-15-15zm-15 0l15 15v-30l-15 15z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
  animation: medievalPattern 40s linear infinite;
}

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

img {
  max-width: 360px;
  height: auto;
  border-radius: 5px;
  border: 3px solid var(--gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
  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;
}

/* Medieval Banner */
.medieval-banner {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 80px;
  background: linear-gradient(135deg, var(--dark-red), var(--gold));
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.medieval-banner::before {
  content: "⚔";
  color: var(--medieval-white);
  font-size: 2rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  animation: swordGlow 3s ease-in-out infinite;
}

@keyframes swordGlow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  }
}

/* Header */
.header {
  background: linear-gradient(135deg, var(--dark-brown), var(--darker-brown));
  color: var(--medieval-white);
  padding: 25px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 5px solid var(--gold);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  margin-top: 80px;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px,
    var(--gold) 20px,
    var(--dark-gold) 20px,
    var(--dark-gold) 40px
  );
}

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

.header .logo {
  font-family: var(--font-decorative);
  font-size: 3rem;
  font-weight: 400;
  color: var(--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: 2px;
  position: relative;
}

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

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

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

.header .logo:hover {
  color: var(--bronze);
  text-shadow: 2px 2px 8px rgba(205, 127, 50, 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(--medieval-white);
  text-decoration: none;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--dark-red), var(--bronze));
  border-radius: 0;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--gold);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

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

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

.header .quick-nav a:hover {
  color: var(--dark-brown);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

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

.section.head {
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.3) 0%, rgba(212, 175, 55, 0.3) 100%);
  color: var(--medieval-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-image: linear-gradient(45deg, transparent 40%, rgba(212, 175, 55, 0.1) 50%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, rgba(139, 0, 0, 0.1) 50%, transparent 60%);
  background-size: 100px 100px;
  animation: medievalCross 20s linear infinite;
}

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

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

.section.head h1 {
  font-family: var(--font-decorative);
  font-size: 5rem;
  font-weight: 400;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  letter-spacing: 4px;
  position: relative;
  animation: medievalGlow 4s ease-in-out infinite;
}

@keyframes medievalGlow {
  0%,
  100% {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  }
  50% {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7), 0 0 20px var(--gold);
  }
}

.section.head h1::before {
  content: "⚔ ⚔ ⚔";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--bronze);
  font-size: 2rem;
  animation: swordsDance 5s ease-in-out infinite;
}

@keyframes swordsDance {
  0%,
  100% {
    transform: translateX(-50%) rotate(0deg);
  }
  33% {
    transform: translateX(-50%) rotate(5deg);
  }
  66% {
    transform: translateX(-50%) rotate(-5deg);
  }
}

.section.head p {
  font-size: 1.4rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

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

.section header h2::before,
.section header h2::after {
  content: "❦";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bronze);
  font-size: 2.5rem;
  animation: ornamentFloat 6s ease-in-out infinite;
}

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

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

@keyframes ornamentFloat {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-50%) scale(1.2);
    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: 3px solid var(--gold);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  background: transparent;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
}

.casino-item::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, var(--gold), var(--bronze), var(--dark-red), var(--gold));
  background-size: 400% 400%;
  animation: medievalBorder 10s 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 medievalBorder {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

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

.casino-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(139, 0, 0, 0.5);
}

.casino-header {
  padding: 30px 25px;
  text-align: center;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.4), rgba(212, 175, 55, 0.4));
  border-bottom: 3px solid var(--gold);
  position: relative;
}

.casino-header::before {
  content: "⚜ ⚜ ⚜";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--bronze);
  font-size: 1.2rem;
  animation: heraldryPulse 4s ease-in-out infinite;
}

@keyframes heraldryPulse {
  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(--darker-brown);
  border: 3px solid var(--gold);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.casino-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px var(--gold), inset 0 0 15px rgba(0, 0, 0, 0.7);
}

.casino-name {
  font-family: var(--font-sharp);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 15px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.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(45deg) saturate(2) brightness(1.3);
}

.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.3);
}

.casino-body {
  padding: 25px;
  background: rgba(62, 39, 35, 0.9);
}

.casino-bonus {
  text-align: center;
  margin-bottom: 20px;
  padding: 15px;
  background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), rgba(205, 127, 50, 0.2));
  border-radius: 0;
  border: 2px solid var(--gold);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.bonus-amount {
  display: block;
  font-family: var(--font-decorative);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.free-spins {
  color: var(--bronze);
  font-size: 1rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.feature-tag {
  background: linear-gradient(135deg, var(--dark-red), var(--bronze));
  color: var(--medieval-white);
  padding: 6px 12px;
  border-radius: 0;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid var(--gold);
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
}

.feature-tag:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  color: var(--dark-brown);
}

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

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

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

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

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

.detail-value {
  color: var(--medieval-white);
  font-weight: 700;
  font-size: 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(--dark-red), var(--gold));
  color: var(--medieval-white);
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 0;
  font-family: var(--font-sharp);
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  border: 2px solid var(--gold);
  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(--gold), var(--bronze));
  transition: left 0.3s ease;
  z-index: -1;
}

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

.casino-button:hover {
  color: var(--dark-brown);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--darker-brown) 0%, var(--dark-brown) 100%);
  color: var(--medieval-white);
  padding: 60px 0 40px;
  margin-top: 80px;
  border-top: 5px solid var(--gold);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px,
    var(--gold) 30px,
    var(--bronze) 30px,
    var(--bronze) 60px
  );
}

.footer-title {
  font-family: var(--font-decorative);
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 25px;
  color: var(--gold);
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
  letter-spacing: 3px;
}

.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(62, 39, 35, 0.8);
  border: 2px solid var(--gold);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 8px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.footer .logo-item:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--bronze);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(205, 127, 50, 0.5);
}

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

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

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

.copyright {
  color: var(--medieval-white);
  opacity: 0.8;
  font-style: italic;
}

/* FAQ */
.faq-item {
  background: rgba(62, 39, 35, 0.6);
  border: 2px solid var(--gold);
  border-radius: 0;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

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

.accordion-question {
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(212, 175, 55, 0.3));
  border: none;
  font-family: var(--font-medieval);
  font-size: 1.2rem;
  color: var(--medieval-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: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.accordion-question:hover {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.3), rgba(34, 139, 34, 0.3));
}

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

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

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

.accordion-answer p {
  padding: 25px;
  color: var(--medieval-white);
  opacity: 0.9;
  line-height: 1.8;
  font-style: italic;
}

/* Text Block */
.text-content {
  background: rgba(62, 39, 35, 0.4);
  padding: 40px;
  border-radius: 0;
  border: 3px solid var(--gold);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
  clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
}

.text-content h3 {
  font-family: var(--font-decorative);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  margin: 30px 0 20px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

.text-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--dark-brown), var(--darker-brown));
  border: 3px solid var(--gold);
  border-radius: 0;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 0 40px rgba(212, 175, 55, 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(--gold);
  padding-bottom: 20px;
}

.popup-header h3 {
  font-family: var(--font-decorative);
  font-size: 2rem;
  color: var(--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(--bronze);
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-close:hover {
  color: var(--dark-red);
  text-shadow: 0 0 15px var(--dark-red);
  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(--gold);
}

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

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

.popup-casino-button {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--dark-red), var(--gold));
  color: var(--medieval-white);
  padding: 18px;
  text-decoration: none;
  border-radius: 0;
  font-family: var(--font-sharp);
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  border: 2px solid var(--gold);
  clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
}

.popup-casino-button:hover {
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  color: var(--dark-brown);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 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;
}