/* ===== THEME: MODERN CASINO BLACK–GOLD ===== */
:root {
  --primary-color: #0d6efd;     /* золотой */
  --accent-color: #C5A300;      /* глубокий золотой */
  --bg-color: #0D0D0D;          /* почти чёрный фон */
  --card-bg: #1A1A1A;           /* карточки */
  --text-color: #F5F5F5;        /* светлый текст */
  --text-secondary: #AAAAAA;    /* вторичный текст */
  --font-family: 'Poppins', sans-serif;
}

/* ===== BASE ===== */
body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: var(--bg-color);
  margin: 0;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.sw-header {
  position: relative;
  background: radial-gradient(circle at center, #0a0a0a 0%, #000 100%);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.05);
}

/* === Верхний бар === */
.sw-header-top {
  background: rgba(255, 215, 0, 0.1);
  backdrop-filter: blur(5px);
  text-align: center;
  color: #0d6efd;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  text-shadow: 0 0 10px rgba(255,215,0,0.4);
}

.sw-header-top i {
  color: #0d6efd;
  font-size: 1.1rem;
}

/* === Основная часть === */
.sw-header-main {
  position: relative;
  z-index: 2;
}

/* === Линки === */
.sw-link {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
  position: relative;
}

.sw-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0d6efd, #FFB400);
  transition: width 0.3s ease;
}

.sw-link:hover .sw-link-underline {
  width: 100%;
}

/* CTA hover эффект */
.sw-btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #0d6efdaa;
}

/* Переопределение sw-logo-main для плавного появления */
.sw-logo-main {
  transition: transform 0.3s ease, filter 0.3s ease;
}
.sw-logo-main:hover {
  transform: rotate(-5deg) scale(1.1);
  filter: drop-shadow(0 0 10px #0d6efd);
}

/* Золотая аура */
.sw-logo-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,215,0,0.35), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: goldPulse 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes goldPulse {
  0%,100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* === CTA кнопка === */

.sw-btn-cta:hover {
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(255,215,0,0.7);
}

/* === Декоративный фон === */
.sw-header-bg .sw-gold-light {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  z-index: 0;
  background: radial-gradient(circle, rgba(255,215,0,0.3), transparent 80%);
  animation: moveGlow 10s ease-in-out infinite;
}

.sw-header-bg .left {
  top: -100px;
  left: -80px;
}

.sw-header-bg .right {
  bottom: -100px;
  right: -80px;
}

@keyframes moveGlow {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(15px,-15px); }
}
/* ===== HERO ===== */
.sw-hero {
  background: linear-gradient(180deg, #000 0%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}
.sw-hero-parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

/* Hover и glow эффекты */
.sw-btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #0d6efdaa;
}
.sw-hero-icon:hover {
  transform: rotate(-5deg) scale(1.1);
  filter: drop-shadow(0 0 15px #0d6efd);
  transition: all 0.3s ease;
}
.sw-hero-title {
  font-size: 2.4rem;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.text-gold {
  background: linear-gradient(90deg, #0d6efd, #0d6efdaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sw-hero-desc {
  color: #ddd;
  max-width: 600px;
}

.sw-hero-feature i {
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.sw-hero-feature:hover i {
  transform: scale(1.2);
  text-shadow: 0 0 20px rgba(255,215,0,0.6);
}


.age-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}
.age-popup-content {
  background: #111;
  color: #fff;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 0 20px #000;
}
.age-popup-buttons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.age-popup-buttons button {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}
.btn-yes {
  background: #0d6efd;
  color: #fff;
}
.btn-yes:hover {
  background: #084298;
}
.btn-no {
  background: #dc3545;
  color: #fff;
}
.btn-no:hover {
  background: #a71d2a;
}
.age-popup.hide {
  opacity: 0;
  visibility: hidden;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 9998;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
  font-size: 0.95rem;
  opacity: 1;
  transition: 0.4s;
}
.cookie-banner p {
  margin: 0;
  max-width: 80%;
}
.btn-cookie {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}
.btn-cookie:hover {
  background: #084298;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
}

/* === Иллюстрация === */
.sw-hero-img {
  position: relative;
}

.sw-hero-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 250px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,215,0,0.3), transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: orbGlow 6s ease-in-out infinite;
}

@keyframes orbGlow {
  0%,100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.15); }
}

.sw-hero-icon {
  z-index: 2;
  text-shadow: 0 0 25px rgba(255,215,0,0.6);
}

/* === Подсветки === */
.sw-hero-glow-left,
.sw-hero-glow-right {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.35;
  background: radial-gradient(circle, rgba(255,215,0,0.25), transparent 70%);
  z-index: 0;
}

.sw-hero-glow-left {
  top: -100px;
  left: -150px;
  animation: floatLeft 10s ease-in-out infinite;
}

.sw-hero-glow-right {
  bottom: -100px;
  right: -150px;
  animation: floatRight 10s ease-in-out infinite;
}

@keyframes floatLeft {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(15px,10px); }
}

@keyframes floatRight {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-15px,-10px); }
}
/* ===== OFFER CARD ===== */
.offers h2 {
  color: #0d6efd;
}

.offer-block {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(4px);
}
.offer-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px #0d6efd88;
}

.offer-header h3 {
  margin-bottom: 0.5rem;
}

.offer-content h5 {
  margin-bottom: 0.5rem;
}

.offer-content ul {
  padding-left: 1.2rem;
}

.offer-warning-area {
  font-size: 0.9rem;
}

.text-xxs {
  font-size: 0.7rem;
}

.btn-offer:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #0d6efd88;
}
/* ===== RESPONSIBLE GAMING ===== */
.sw-responsible {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
  position: relative;
}

.sw-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d6efd;
  text-align: center;
  margin-bottom: 20px;
}

.sw-responsible-intro {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 50px auto;
  color: #ffffff;
  text-align: center;
}

.sw-responsible-card {
  background-color: #2a2a2a;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.sw-responsible-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.7);
}

.sw-responsible-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #0d6efd;
}

.sw-responsible-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0d6efd;
}

.sw-responsible-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.sw-responsible-card a {
  color: #0d6efd;
  text-decoration: underline;
}

.sw-responsible-card a:hover {
  text-decoration: none;
  color: #0056b3;
}

.sw-responsible-card.final-card {
  border: 2px solid #0d6efd;
}

.sw-slots {
  background: #111; /* карбоновый фон */
  color: #f5f5f5;
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
}

.sw-slots-parallax {
  background: url('../img/casino-bg.jpg') center center / cover no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 0;
  opacity: 0.15;
  transform: translateZ(0);
  will-change: transform;
}

.sw-title {
  font-size: 3rem;
  background: linear-gradient(90deg, #0d6efd, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 60px;
}

.sw-slots-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sw-slots-block {
  background: linear-gradient(145deg, #1a1a1a 0%, #0d1b2a 100%);
  border-left: 5px solid #0d6efd;
  padding: 2rem 2.5rem;
  border-radius: 1rem;
  position: relative;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.sw-slots-block::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -30px;
  width: 60px;
  height: 60px;
  background: rgba(13, 110, 253, 0.15);
  border-radius: 50%;
  z-index: 0;
}

.sw-slots-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px rgba(0,0,0,0.6);
}

.sw-slots-block h3 {
  color: #00bfff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.sw-slots-block p {
  color: #cfd8e1;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.sw-slots-warning .alert {
  background: #0d1b2a;
  color: #ffcc00;
  border-radius: 0.75rem;
  border: 1px solid #0d6efd;
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  text-align: center;
}

/* ===== FOOTER ===== */
.sw-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #111111, #1a1a1a, #0d0d0d);
  color: #f0f0f0;
  z-index: 1;
}

.sw-footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.sw-footer-light-left,
.sw-footer-light-right {
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 112, 255, 0.3), transparent 70%);
  filter: blur(120px);
  z-index: 0;
}

.sw-footer-light-left {
  left: -50px;
}

.sw-footer-light-right {
  right: -50px;
}

.sw-footer-brand img.sw-logo-glow {
  filter: drop-shadow(0 0 10px #0d6efd);
  transition: transform 0.3s ease;
}

.sw-footer-brand img.sw-logo-glow:hover {
  transform: scale(1.1);
}

.sw-footer-brand h5.text-gradient-gold {
  background: linear-gradient(90deg, #0d6efd, #ffcc33);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sw-footer-links li {
  margin-bottom: 0.6rem;
}

.sw-footer-links li a {
  color: #c0c0c0;
  text-decoration: none;
  transition: 0.3s;
}

.sw-footer-links li a:hover,
.sw-link-hover:hover {
  color: #0d6efd;
  text-shadow: 0 0 8px #0d6efd;
}

.sw-footer-social a.sw-icon-hover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.sw-footer-social a.sw-icon-hover:hover {
  transform: scale(1.2);
  background: rgba(255, 215, 0, 0.25);
  box-shadow: 0 0 12px #0d6efd;
  color: #fff;
}

.sw-footer-partners a.sw-logo-hover img.footer-logo {
  max-height: 50px;
  filter: grayscale(70%);
  transition: all 0.3s ease;
}

.sw-footer-partners a.sw-logo-hover:hover img.footer-logo {
  filter: grayscale(0%);
  transform: scale(1.05);
  box-shadow: 0 0 15px #00bfff, 0 0 25px #0d6efd;
  border-radius: 8px;
}

hr.border-gold {
  border-color: #0d6efd;
  opacity: 0.25;
}

.sw-footer p,
.sw-footer small {
  color: #d0d0d0;
}

.sw-footer small {
  font-size: 0.75rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .sw-hero h1 { font-size: 2rem; }
  .sw-hero p { font-size: 1rem; }
  .sw-offer-card { margin-bottom: 20px; }
}
