:root {
  --color-dark-start: #0f2027;
  --color-dark-end:   #2c5364;
  --color-text-light: #fafafa;
  --accent-yellow:    #ffd700;
  --accent-coral:     #ff6b6b;
  --font-base:        'Poppins', sans-serif;
}

/* ===== Global Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Body & Background ===== */
body {
  font-family: var(--font-base);
  font-size: 16px;
  color: #333;
  background: linear-gradient(
    135deg,
    var(--color-dark-start) 0%,
    var(--color-dark-end) 100%
  );
}

/* ===== Utility Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  overflow: visible;
  color: var(--color-text-light);
  padding: 80px 0;
}

.hero {
  background: none; /* фон уже на body */
}

.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: 10%;
  width: 300px;
  height: 300px;
  background: var(--accent-yellow);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.7;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ===== Hero Text ===== */
.hero-content {
  flex: 1 1 500px;
}

.update-date {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 12px;
  animation: fadeInUp 1s ease-out both;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--accent-yellow);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  border-bottom: 4px solid var(--accent-yellow);
  padding-bottom: 8px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* ===== Features List ===== */
.hero-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 3;
}

.hero-features li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  opacity: 0;
  animation: fadeInUp 1s ease-out both;
}

.hero-features li:nth-child(1) { animation-delay: 0.6s; }
.hero-features li:nth-child(2) { animation-delay: 0.8s; }
.hero-features li:nth-child(3) { animation-delay: 1s; }

.hero-features li i {
  margin-right: 8px;
  font-size: 1.25rem;
  color: var(--accent-coral);
  animation: bounceIcon 2s ease-in-out infinite;
}

/* ===== Hero Image ===== */
.hero-image {
  flex: 1 1 400px;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite both;
}

/* ===== Top Casino Card Section ===== */
.top-casino {
  padding: 60px 0;
  background: none; /* фон от body */
}

.casino-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(17, 19, 24, 0.6);
  border-radius: 16px;
  padding: 20px 30px;
  overflow: hidden;
  flex-wrap: wrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.card-tag {
  position: absolute;
  top: -10px;
  left: 0;
  background: linear-gradient(90deg, var(--accent-coral) 0%, var(--accent-yellow) 100%);
  color: #111;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 14px;
  border-bottom-right-radius: 8px;
}

.card-logo img {
  width: 80px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.card-info {
  flex: 1;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.rating-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-yellow);
}

.stars i {
  color: var(--accent-yellow);
  margin-right: 2px;
}

.votes {
  font-size: 0.875rem;
  opacity: 0.8;
}

.bonus-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-yellow);
}

.card-action {
  text-align: right;
}

.btn-gradient {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-coral) 0%, var(--accent-yellow) 100%);
  color: #111;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.6);
}

.min-deposit {
  margin-top: 6px;
  font-size: 0.875rem;
  opacity: 0.8;
  color: #fff;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
/* ===== Info Section ===== */
.info-section {
  padding: 60px 0;
  color: var(--color-text-light);
}

/* Используем глобальный .container с max-width:1200px */
.info-section .container {
  /* никаких локальных ограничений — берём из .container */
}

/* Заголовки */
.info-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent-coral);
  border-bottom: 4px solid var(--accent-coral);
  padding-bottom: 0.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.info-section h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--accent-yellow);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Абзацы */
.info-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  color: #fafafa;
}

/* Списки */
.info-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.info-section ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out both;
}

.info-section ul li:nth-child(1) { animation-delay: 0.8s; }
.info-section ul li:nth-child(2) { animation-delay: 1s; }
.info-section ul li:nth-child(3) { animation-delay: 1.2s; }
.info-section ul li:nth-child(4) { animation-delay: 1.4s; }
.info-section ul li:nth-child(5) { animation-delay: 1.6s; }

.info-section ul li::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-coral);
  font-size: 0.75rem;
  line-height: 1.6;
}

/* Повтор ключевых кадров */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* ===== FAQ Section ===== */
.faq {
  padding: 60px 0;
  color: var(--color-text-light);
}

.faq-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--accent-yellow);
  border-bottom: 4px solid var(--accent-yellow);
  display: inline-block;
  padding-bottom: 0.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out both;
}

.faq-item:nth-child(odd) {
  animation-delay: 0.4s;
}
.faq-item:nth-child(even) {
  animation-delay: 0.6s;
}

.faq-title {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 16px 20px;
  cursor: pointer;
  position: relative;
  color: var(--accent-coral);
}

.faq-title::after {
  content: "\f107"; /* FontAwesome chevron-down */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
  color: var(--accent-yellow);
}

.faq-item.open .faq-title::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-text {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 1rem;
  line-height: 1.6;
  background: rgba(0,0,0,0.2);
  transition: max-height 0.4s ease, padding 0.4s ease;
  opacity: 0;
}

.faq-item.open .faq-text {
  max-height: 500px; /* достаточно для texto de exemplo */
  padding: 12px 20px 20px;
  opacity: 1;
}

/* Reuse fadeInUp */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* ===== Trust Section ===== */
.trust-section {
  background: rgba(0,0,0,0.5);
  padding: 40px 0;
  text-align: center;
  color: var(--color-text-light);
}

.trust-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--accent-yellow);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-badge img {
  height: 40px;
  transition: transform 0.3s;
}

.trust-badge img:hover {
  transform: scale(1.1);
}

/* ===== Footer ===== */
.footer {
  background: #111318;
  color: #ccc;
  padding: 40px 0 20px;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

.footer__col {
  flex: 1 1 200px;
}

.footer__logo {
  max-width: 140px;
  display: block;
  margin-bottom: 20px;
}

.footer__heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--accent-yellow);
}

.footer__nav {
  display: flex;
  gap: 40px;
}

.footer__group {
  display: flex;
  flex-direction: column;
}

.footer__link {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--accent-coral);
}

/* ===== Copyright ===== */
.footer__copyright {
  text-align: center;
  font-size: 0.875rem;
  margin-top: 20px;
  opacity: 0.7;
}
/* Banner Container */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--banner-bg);
  color: var(--text-light);
  z-index: 999;
  background: #333;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}
/* ===== Age Gate ===== */
.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.age-gate__dialog {
  background: #111318;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 320px;
  color: #fafafa;
}

.age-gate__dialog h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--accent-yellow);
}

.age-gate__dialog p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

.age-gate__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-age {
  flex: 1;
  padding: 10px 0;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-age--yes {
  background: var(--accent-coral);
  color: #111;
}

.btn-age--yes:hover {
  background: var(--accent-coral-dark);
}

.btn-age--no {
  background: transparent;
  color: #fafafa;
  border: 2px solid var(--accent-yellow);
}

.btn-age--no:hover {
  background: rgba(255,215,0,0.1);
}

/* Inner Wrapper */
.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  color: #fff;
}

/* Text */
.cookie-banner__text {
  flex: 1 1 300px;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 8px;
}

/* Button Group */
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* Base Button */
.cookie-btn {
  font-family: var(--font-base);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

/* Accept Button */
.cookie-btn--accept {
  background: var(--accent-coral);
  color: #111;
}
.cookie-btn--accept:hover {
  background: var(--accent-coral-dark);
}

/* Decline Button */
.cookie-btn--decline {
  background: transparent;
  color: var(--text-light);
  border-color: var(--accent-coral);
}
.cookie-btn--decline:hover {
  background: rgba(255, 107, 107, 0.1);
}


/* ===== Contact Section ===== */
.contact-section {
  background: none; /* background inherited from body gradient */
  padding: 80px 0;
  color: var(--color-text-light);
}

.contact-section .container {
  margin: 0 auto;
}

/* Title */
.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent-yellow);
  border-bottom: 4px solid var(--accent-yellow);
  display: inline-block;
  padding-bottom: 0.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Intro paragraphs */
.contact-intro,
.contact-note {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out both;
}

.contact-intro { animation-delay: 0.4s; }
.contact-note  { animation-delay: 0.6s; }

/* Contact details block */
.contact-details {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 8px;
  margin: 2rem 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.contact-details p {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.contact-details a {
  color: var(--accent-coral);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-details a:hover {
  color: var(--accent-yellow);
}

/* Thank-you note */
.contact-thanks {
  font-size: 1rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1s both;
}

/* Reuse fadeInUp keyframes */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* ===== About Section ===== */
.about-section {
  padding: 80px 0;
  color: var(--color-text-light);
}

.about-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Main Title */
.about-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-coral);
  border-bottom: 4px solid var(--accent-coral);
  padding-bottom: 8px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Subtitles */
.about-subtitle {
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-yellow);
  margin-top: 48px;
  margin-bottom: 16px;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.about-subtitle::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-yellow);
  border-radius: 2px;
}

/* Paragraphs */
.about-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Reuse fadeInUp keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== Privacy Page Styles ===== */
.privacy-section {
  padding: 80px 0;
  color: var(--color-text-light);
}

.privacy-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Main title */
.privacy-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-coral);
  border-bottom: 4px solid var(--accent-coral);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* “Last updated” line */
.privacy-updated {
  font-size: 0.875rem;
  color: #ccc;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Intro paragraphs */
.privacy-intro,
.privacy-note {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Subtitles */
.privacy-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-yellow);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Paragraph text */
.privacy-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1s both;
}

/* Contact line */
.privacy-contact {
  font-size: 1rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.privacy-contact a {
  color: var(--accent-coral);
  text-decoration: none;
}

/* ===== Cookie Page Styles ===== */
.cookie-section {
  padding: 80px 0;
  color: var(--color-text-light);
}

.cookie-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Main title */
.cookie-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-coral);
  border-bottom: 4px solid var(--accent-coral);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* “Last updated” line */
.cookie-updated {
  font-size: 0.875rem;
  color: #ccc;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Intro */
.cookie-intro {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Subtitles */
.cookie-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-yellow);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Text paragraphs */
.cookie-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1s both;
}

/* List of cookies */
.cookie-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.cookie-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.cookie-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-coral);
}

/* Contact */
.cookie-contact {
  font-size: 1rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.4s both;
}

.cookie-contact a {
  color: var(--accent-coral);
  text-decoration: none;
}

/* ===== Terms Page Styles ===== */
.terms-section {
  padding: 80px 0;
  color: var(--color-text-light);
}

.terms-section .container {
  margin: 0 auto;
}

/* Main title */
.terms-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-coral);
  border-bottom: 4px solid var(--accent-coral);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* “Last updated” line */
.terms-updated {
  font-size: 0.875rem;
  color: #ccc;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Intro */
.terms-intro {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Subtitles */
.terms-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-yellow);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Text paragraphs */
.terms-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1s both;
}

/* Contact line */
.terms-contact {
  font-size: 1rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.terms-contact a {
  color: var(--accent-coral);
  text-decoration: none;
}

/* ===== Reuse fadeInUp keyframes ===== */
@keyframes fadeInUp {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.site-header img {
	width: 100px;
}