/* =============================================
   Водка Казино — общие стили (все страницы)
   ============================================= */

/* --- Типографика --- */
body {
  font-family: 'Roboto', sans-serif;
  background: #000 url('../img/default.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  line-height: 1.6;
}
.header-font { font-family: 'Montserrat', sans-serif; }

/* --- Эффекты --- */
.neon-text { text-shadow: 0 0 5px #3b82f6, 0 0 10px #06b6d4, 0 0 20px #1e40af; }

/* --- Кнопки и CTA --- */
.super-cta {
  background: linear-gradient(45deg, #3b82f6, #06b6d4);
  background-size: 200% 200%;
  animation: gradient 3s ease infinite;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #fff;
}
@keyframes gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.play-btn { background: linear-gradient(45deg, #3b82f6, #06b6d4); }

.login-btn {
  background: linear-gradient(45deg, #10b981, #059669);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  color: white;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.login-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(16,185,129,0.3); }

.register-btn {
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  color: white;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.register-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(59,130,246,0.3); }

/* --- Карточки --- */
.game-card {
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  background: rgba(0,0,0,0.7);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.game-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(59,130,246,0.4); }
.game-image-container { position: relative; width: 100%; height: 200px; overflow: hidden; }
.game-image-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.game-card:hover .game-image-container img { transform: scale(1.05); }

.nav-card {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}
.nav-card:hover { border-color: #3b82f6; transform: translateY(-4px); box-shadow: 0 12px 30px rgba(59,130,246,0.3); }

/* --- Секции контента --- */
.content-section {
  background: rgba(0,0,0,0.7);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
}
.feature-item {
  background: rgba(59,130,246,0.1);
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
}
.provider-badge {
  background: rgba(0,0,0,0.5);
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* --- Навигация --- */
.breadcrumb { background: rgba(0,0,0,0.5); padding: 10px 0; font-size: 14px; }
.breadcrumb a { color: #3b82f6; text-decoration: none; }

/* --- FAQ --- */
.faq-preview { background: rgba(0,0,0,0.7); border-radius: 12px; padding: 30px; margin: 40px 0; }
.faq-preview-item { margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.faq-preview-question { font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }

/* --- Бейджи --- */
.cta-badge {
  background: linear-gradient(45deg, #3b82f6, #06b6d4);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 10px;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
}

/* --- Floating кнопка --- */
.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* --- Зеркало-стикер --- */
.mirror-sticker {
  position: fixed;
  top: 100px;
  left: 0;
  background: linear-gradient(45deg, #3b82f6, #06b6d4);
  color: white;
  padding: 10px 15px;
  border-radius: 0 8px 8px 0;
  font-weight: 600;
  font-size: 14px;
  z-index: 9998;
  transform: translateX(-100%);
  animation: slideIn 1s forwards 2s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
@keyframes slideIn { to { transform: translateX(0); } }

/* --- Попап бонуса --- */
.bonus-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  padding: 30px;
  border-radius: 20px;
  z-index: 10000;
  display: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.bonus-popup.active { display: block; animation: popupShow 0.5s ease; }
@keyframes popupShow {
  from { opacity: 0; transform: translate(-50%, -60%); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}
.overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 9999; display: none; }
.overlay.active { display: block; }

/* --- Утилиты --- */
.clickable-zone { cursor: pointer; transition: all 0.3s ease; }
.clickable-zone:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(59,130,246,0.3); }

/* --- Страница входа --- */
.login-form {
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(59,130,246,0.4);
  border-radius: 16px;
  padding: 32px;
  max-width: 420px;
  width: 100%;
}
.login-submit {
  background: linear-gradient(45deg, #3b82f6, #06b6d4);
  border: none;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
  display: block;
  text-align: center;
  text-decoration: none;
}
.login-submit:hover { opacity: 0.9; }
.divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 20px 0; }

/* --- Страница регистрации --- */
.reg-form {
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(59,130,246,0.4);
  border-radius: 16px;
  padding: 32px;
  max-width: 440px;
  width: 100%;
}
.reg-submit {
  background: linear-gradient(45deg, #10b981, #059669);
  border: none;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
  display: block;
  text-align: center;
  text-decoration: none;
}
.reg-submit:hover { opacity: 0.9; }

/* --- Страница бонусов --- */
.bonus-card {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(59,130,246,0.3); }
.bonus-main { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.bonus-green { background: linear-gradient(135deg, #064e3b, #10b981); }
.bonus-purple { background: linear-gradient(135deg, #4c1d95, #8b5cf6); }
.bonus-orange { background: linear-gradient(135deg, #7c2d12, #f97316); }
.bonus-badge-big { font-size: 3.5rem; font-weight: 800; line-height: 1; }

.step-badge {
  background: linear-gradient(45deg, #3b82f6, #06b6d4);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th { background: rgba(59,130,246,0.3); padding: 12px 15px; text-align: left; font-weight: 600; }
.comparison-table td { padding: 12px 15px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.comparison-table tr:hover td { background: rgba(59,130,246,0.1); }

/* --- Страница зеркал --- */
.mirror-card {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.mirror-card:hover { border-color: #3b82f6; transform: translateY(-4px); box-shadow: 0 12px 30px rgba(59,130,246,0.3); }
.update-notice {
  background: linear-gradient(90deg, rgba(59,130,246,0.2), rgba(6,182,212,0.2));
  border-left: 4px solid #3b82f6;
  padding: 10px 15px;
  margin: 15px 0;
  border-radius: 0 8px 8px 0;
}

/* --- Адаптив --- */
@media (max-width: 768px) {
  .floating-button { bottom: 10px; right: 10px; left: 10px; width: calc(100% - 20px); }
  .floating-button a, .floating-button button { width: 100%; }
  .bonus-badge-big { font-size: 2.5rem; }
}
