:root {
  --bg-primary: #121212;
  --accent-gold: #c8a45a;
  --accent-red: #b22222;
  --accent-purple: #6903b4;
  --text-primary: #f5f5f5;
  --success-green: #228b22;
  --gradient-primary: linear-gradient(90deg, var(--accent-gold), var(--accent-red));
  --shadow-neon: 0 0 15px rgba(194, 34, 34, 0.7);
  --shadow-soft: 0 0 10px rgba(200, 164, 90, 0.5);
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
i,
ol,
ul,
li,
form,
label,
main,
footer,
header,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

footer,
header,
nav,
section,
main {
  display: block;
}

ol,
ul {
  list-style: none;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

input,
textarea,
button,
select {
  font-family: inherit;
}

a {
  text-decoration: none;
}

button {
  border: none;
  cursor: pointer;
}

html {
  font-size: 16px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  html {
    font-size: 14px;
  }
}

body {
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100vh;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'Roboto', sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

.casino-alert-bar {
  background: var(--gradient-primary);
  padding: 0.75rem 0;
  text-align: center;
  box-shadow: var(--shadow-neon);
  animation: luxury-glow 2s infinite;
}

@keyframes luxury-glow {
  0% {
    box-shadow: var(--shadow-neon);
  }
  50% {
    box-shadow: 0 0 10px rgba(194, 34, 34, 1), 0 0 10px rgba(200, 164, 90, 0.8);
  }
  100% {
    box-shadow: var(--shadow-neon);
  }
}

.casino-alert-bar__wrap {
  max-width: 80rem;
  width: 100%;
  padding: 0 1.5rem;
  margin: 0 auto;
}

.casino-alert-bar__text a {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.2rem;
  text-shadow: var(--shadow-neon);
}
.casino-alert-bar__text a:hover {
  text-decoration: underline;
}
.promo-luxury-banner {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--bg-primary), rgb(194 34 34 / 0%)),
    url(../img/bg.webp) no-repeat center / cover;
  animation: bg-luxury 10s infinite alternate;
}

@keyframes bg-luxury {
  0% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1.1);
  }
}

.promo-luxury-banner__wrap,
.casino-offer-list__wrap,
.details-faq-section__wrap,
.footer-legal__wrap {
  max-width: 80rem;
  width: 100%;
  padding: 0 1.5rem;
  margin: 0 auto;
}

.promo-luxury-banner__title {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  color: var(--accent-gold);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .promo-luxury-banner__title {
    font-size: 3rem;
  }
}
@media (max-width: 767.98px) {
  .promo-luxury-banner {
    padding: 1rem 0;
  }
  .promo-luxury-banner__title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}

.promo-luxury-banner__subtitle {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-primary);
  text-shadow: var(--shadow-soft);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .promo-luxury-banner__subtitle {
    font-size: 1.2rem;
  }
}
@media (max-width: 767.98px) {
  .promo-luxury-banner__subtitle {
    font-size: 1rem;
  }
}

.bonus-highlights {
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
}
@media (max-width: 767.98px) {
  .bonus-highlights {
    margin: 0.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-around;
  }
}

.bonus-highlight {
  max-width: 200px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-primary);
  border-radius: 16px;
  border: 1px solid var(--accent-purple);
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .bonus-highlight:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(200, 164, 90, 0.8);
  }
}
@media (max-width: 767.98px) {
  .bonus-highlight {
    width: 50px;
    padding: 0.5rem;
    border-radius: 50%;
    height: 50px;
    justify-content: center;
  }
}

.bonus-highlight__icon {
  width: 2.5rem;
  height: 2.5rem;
}
@media (max-width: 767.98px) {
  .bonus-highlight__icon {
    width: 1.8rem;
    height: 1.8rem;
  }
}

.bonus-highlight span {
  font-weight: 600;
  color: var(--success-green);
}
@media (max-width: 767.98px) {
  .bonus-highlight span {
    display: none;
  }
}

.action-gold-button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 250px;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 1rem;
  background: var(--gradient-primary);
  border-radius: 12px;
  color: var(--text-primary);
  box-shadow: var(--shadow-neon);
  transition: all 0.3s ease;
  animation: luxury-glow 1.8s infinite;
  margin: 2rem auto;
}
@media (max-width: 767.98px) {
  .action-gold-button {
    margin: 1rem auto;
  }
}
@media (hover: hover) {
  .action-gold-button:hover {
    box-shadow: 0 0 30px rgba(194, 34, 34, 1);
    transform: scale(1.05);
  }
}

.casino-offer-list {
  padding: 3rem 0;
  background: var(--bg-primary);
}
@media (max-width: 767.98px) {
  .casino-offer-list {
    padding: 1rem 0;
  }
}
.casino-offer-list__items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.casino-offer-list__item {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--bg-primary);
  border-radius: 16px;
  border: 1px solid var(--success-green);
  box-shadow: var(--shadow-soft);
  gap: 1rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .casino-offer-list__item:hover {
    box-shadow: 0 0 20px rgba(200, 164, 90, 0.8);
    transform: scale(1.02);
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .casino-offer-list__item {
    flex-wrap: wrap;
  }
}
@media (max-width: 767.98px) {
  .casino-offer-list__item {
    flex-wrap: wrap;
    padding: 1rem;
    gap: 0.5rem;
  }
}

.casino-offer-list__rank {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--accent-red);
  box-shadow: var(--shadow-neon);
}
@media (max-width: 767.98px) {
  .casino-offer-list__rank {
    display: none;
  }
}

.casino-offer-list__brand {
  max-width: 220px;
  width: 100%;
  padding: 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--accent-purple);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .casino-offer-list__brand {
    border: none;
    position: relative;
    max-width: 100%;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: none;
  }
}

.casino-offer-list__logo {
  width: 140px;
  height: 50px;
}

.casino-offer-list__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(200, 164, 90, 0.7));
}

.casino-offer-list__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.casino-offer-list__rating-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 767.98px) {
  .casino-offer-list__rating-wrap {
    flex-direction: column;
  }
}

.casino-offer-list__rating-value {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent-red);
  text-shadow: var(--shadow-neon);
}

.casino-offer-list__rating-stars {
  width: 70px;
  height: 12px;
  filter: drop-shadow(0 0 5px rgba(200, 164, 90, 0.7));
}

.casino-offer-list__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(34, 139, 34, 0), var(--success-green), rgba(34, 139, 34, 0));
}
@media (max-width: 767.98px) {
  .casino-offer-list__divider {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
  }
}

.casino-offer-list__promo {
  flex: 1;
  display: flex;
  align-items: center;
}

.casino-offer-list__promo span {
  min-width: 180px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--success-green);
}
@media (max-width: 767.98px) {
  .casino-offer-list__promo span {
    font-size: 0.9rem;
    min-width: auto;
  }
}

.casino-offer-list__details {
  position: relative;
  max-width: 250px;
  padding: 0 1rem;
}
@media (max-width: 767.98px) {
  .casino-offer-list__details {
    max-width: 50%;
    width: 100%;
    padding: 0.5rem;
  }
}

.casino-offer-list__details li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.casino-offer-list__details img {
  width: 1.2rem;
  height: 1.2rem;
}

.casino-offer-list__details::before,
.casino-offer-list__details::after {
  content: '';
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(34, 139, 34, 0), var(--success-green), rgba(34, 139, 34, 0));
}
.casino-offer-list__details::before {
  left: 0;
}
.casino-offer-list__details::after {
  right: 0;
}
@media (max-width: 767.98px) {
  .casino-offer-list__details::before {
    top: 0;
    height: 100%;
  }
  .casino-offer-list__details::after {
    display: none;
  }
}

.casino-offer-list__action {
  max-width: 300px;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .casino-offer-list__action {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
}

.casino-offer-list__payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.5rem;
}

.details-faq-section {
  padding: 3rem 0;
  background: var(--bg-primary);
}

.details-faq-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  margin-bottom: 1.5rem;
  color: var(--accent-purple);
}
@media (max-width: 767.98px) {
  .details-faq-section__title {
    font-size: 1.5rem;
  }
}

.details-faq-section__subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  margin-bottom: 1rem;
  color: var(--accent-gold);
  text-shadow: var(--shadow-soft);
}
@media (max-width: 767.98px) {
  .details-faq-section__subtitle {
    font-size: 1.2rem;
  }
}

.details-faq-section__text {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.details-faq-section__list {
  margin-bottom: 1.5rem;
  list-style: disc;
  padding-left: 20px;
}

.details-faq-section__list li {
  margin-bottom: 0.75rem;
  color: var(--success-green);
}

.details-faq-section__list li::marker {
  color: var(--accent-red);
}

.footer-legal {
  padding: 3rem 0;
  border-top: 2px solid var(--accent-purple);
  background: var(--bg-primary);
}

.footer-legal__wrap {
  max-width: 80rem;
  width: 100%;
  padding: 0 1.5rem;
  margin: 0 auto;
}

.footer-legal__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-legal__nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal__nav-item {
  color: var(--accent-gold);
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .footer-legal__nav-item:hover {
    color: var(--accent-red);
    text-shadow: var(--shadow-neon);
  }
}
@media (max-width: 767.98px) {
  .footer-legal__nav-item {
    font-size: 0.9rem;
  }
}

.footer-legal__disclaimer {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-primary);
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

.footer-legal__disclaimer a {
  color: var(--success-green);
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .footer-legal__disclaimer a:hover {
    color: var(--accent-red);
    text-shadow: var(--shadow-neon);
  }
}

.footer-legal__title {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
}
@media (max-width: 767.98px) {
  .footer-legal__title {
    font-size: 1.4rem;
  }
}

.footer-legal__tips {
  margin: 1.5rem 0;
  list-style: none;
  padding-left: 20px;
  text-align: left;
}

.footer-legal__tips li {
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--success-green);
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}

@media (max-width: 767.98px) {
  .footer-legal__tips {
    padding-left: 15px;
  }
  .footer-legal__tips li {
    font-size: 0.9rem;
  }
  .footer-legal__tips li::before {
    width: 0.8rem;
    height: 0.8rem;
  }
}

.footer-legal__badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal__badge {
  padding: 0.75rem;
  border-radius: 16px;
}

.footer-legal__badge:nth-child(1) {
  width: 120px;
  height: 120px;
}
.footer-legal__badge:nth-child(2),
.footer-legal__badge:nth-child(3),
.footer-legal__badge:nth-child(4),
.footer-legal__badge:nth-child(5) {
  width: 160px;
  height: 80px;
  border: 2px solid var(--success-green);
  background: var(--accent-gold);
  transition: all 0.3s ease-in-out;
}

.footer-legal__badge:nth-child(2):hover,
.footer-legal__badge:nth-child(3):hover,
.footer-legal__badge:nth-child(4):hover,
.footer-legal__badge:nth-child(5):hover {
  background: var(--success-green);
}
.footer-legal__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 767.98px) {
  .footer-legal__badge:nth-child(1) {
    width: 100px;
    height: 100px;
  }
  .footer-legal__badge:nth-child(2),
  .footer-legal__badge:nth-child(3),
  .footer-legal__badge:nth-child(4),
  .footer-legal__badge:nth-child(5) {
    width: 120px;
    height: 60px;
  }
}
.privacy-alert {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient-primary);
  padding: 1rem;
  box-shadow: var(--shadow-neon);
}

.privacy-alert__wrap {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.privacy-alert__text {
  color: var(--text-primary);
  font-weight: 600;
}

.privacy-alert__link {
  color: var(--text-primary);
  font-weight: 700;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .privacy-alert__link:hover {
    color: var(--success-green);
    text-shadow: var(--shadow-soft);
  }
}

.privacy-alert__buttons {
  display: flex;
  gap: 1rem;
}

.privacy-alert__button {
  padding: 0.75rem 1.5rem;
  background: var(--bg-primary);
  color: var(--success-green);
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid var(--accent-purple);
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .privacy-alert__button:hover {
    background: var(--accent-red);
    color: var(--text-primary);
    box-shadow: var(--shadow-neon);
  }
}

@media (prefers-reduced-motion: reduce) {
  .casino-alert-bar,
  .action-gold-button,
  .promo-luxury-banner {
    animation: none;
  }
}

.legal-content {
  padding: 3rem 0;
  background: var(--bg-primary);
}

.legal-content__wrap {
  max-width: 80rem;
  width: 100%;
  padding: 0 1.5rem;
  margin: 0 auto;
}

.legal-title {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  color: var(--accent-gold);
}
@media (max-width: 767.98px) {
  .legal-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}

.legal-content__section {
  margin-bottom: 2rem;
}

.legal-heading {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  margin-bottom: 1rem;
  color: var(--accent-purple);
}
@media (max-width: 767.98px) {
  .legal-heading {
    font-size: 1.4rem;
  }
}

.legal-text {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.6;
}
@media (max-width: 767.98px) {
  .legal-text {
    font-size: 0.9rem;
  }
}

.legal-list {
  margin-bottom: 1.5rem;
  padding-left: 20px;
}

.legal-list li {
  margin-bottom: 0.75rem;
  color: var(--success-green);
  font-size: 1rem;
}

.legal-list li::before {
  content: '';
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.5rem;
  background: var(--accent-red);
  border-radius: 50%;
}
@media (max-width: 767.98px) {
  .legal-list {
    padding-left: 15px;
  }
  .legal-list li {
    font-size: 0.9rem;
  }
  .legal-list li::before {
    width: 0.6rem;
    height: 0.6rem;
  }
}

.legal-link {
  color: var(--success-green);
  font-weight: 600;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .legal-link:hover {
    color: var(--accent-red);
    text-shadow: var(--shadow-neon);
  }
}
