body.cookies-page {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)),
              url('../images/bg-coins.jpg') center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.cookies-warning {
  background: rgba(20, 20, 20, 0.95);
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 180, 0, 0.3);
  position: relative;
}

.warning-icon {
  font-size: 3em;
  margin-bottom: 10px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.cookies-warning h1 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #ffb400;
}

.cookies-warning .intro {
  font-size: 1em;
  margin-bottom: 20px;
  color: #ddd;
}

.cookies-steps {
  text-align: left;
  margin: 15px 0 25px;
}

.cookies-steps li {
  margin-bottom: 10px;
  line-height: 1.4;
}

.checkbox-label {
  display: block;
  margin: 20px 0;
  font-size: 1.1em;
}

.cta-btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(90deg, #ffb400, #ff8800);
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.3s ease, opacity 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #ffd500, #ff9500);
}

/* Анимация появления кнопки + подсветка */
.animated-btn {
  opacity: 0;
}

.show-btn {
  animation: fadeInUp 0.6s ease forwards, pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 5px rgba(255,180,0,0.5); transform: translateY(0); }
  50% { box-shadow: 0 0 20px rgba(255,180,0,0.9); transform: translateY(-3px); }
  100% { box-shadow: 0 0 5px rgba(255,180,0,0.5); transform: translateY(0); }
}

/* ====== FAQ ====== */
.faq {
  background: #141414;
  padding: 30px 20px;
  border-top: 2px solid #ffb400;
  border-bottom: 2px solid #ffb400;
}

.faq h2 {
  text-align: center;
  color: #ffb400;
  margin-bottom: 20px;
}

.faq > div {
  padding: 15px 0;
  border-top: 1px solid #333;
}

.faq > div:first-of-type {
  border-top: none;
}

.faq h3 {
  font-size: 1.1em;
  margin-bottom: 8px;
  color: #fff;
}

.faq p {
  font-size: 0.95em;
  color: #ccc;
  line-height: 1.5;
}

/* Адаптив для FAQ */
@media (max-width: 768px) {
  .faq {
    padding: 20px 15px;
  }
  .faq h2 {
    font-size: 1.4em;
  }
}
