/* ===== Основные переменные ===== */
:root {
  --primary-color: #1ABC9C;   /* яркий зелёный */
  --accent-color: #16A085;    /* тёмно-зелёный */
  --bg-color: #121212;         /* основной фон */
  --card-bg: #1E1E1E;          /* фон карточек */
  --text-color: #E0E0E0;       /* основной текст */
  --text-secondary: #AAAAAA;   /* вторичный текст */
  --font-family: 'Montserrat', sans-serif;
}

/* ===== Общие стили ===== */
body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: var(--bg-color);
  margin: 0;
}

/* ===== HEADER ===== */
.bg-gradient-dark {
  background: linear-gradient(90deg, #1c1c2e, #2e2e44);
}

.sw-age-warning {
  font-size: 0.85rem;
  color: #ffdd57;
  text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.sw-age-warning i {
  font-size: 1.2rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.sw-logo-img {
  transition: transform 0.3s, filter 0.3s;
}

.sw-logo-img:hover {
  transform: rotate(-5deg) scale(1.1);
  filter: drop-shadow(0 0 10px #ff6ec7);
}

.btn-gradient {
  background: linear-gradient(45deg, #ff6ec7, #00ffe0);
  color: #fff;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-gradient:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,110,199,0.7);
}

/* ===== HERO ===== */
.sw-hero {
  min-height: 700px;
  background: linear-gradient(135deg, #1a1f36 0%, #283048 100%);
  color: #e0f7fa;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.sw-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #a0e7e5;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.sw-hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #d0f0f8;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.4);
}

.sw-feature h5 {
  font-weight: 600;
  color: #ffab91;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.sw-icon {
  font-size: 3rem;
  color: #80deea;
}

.sw-main-icon {
  font-size: 150px;
  color: #ff8a65;
  text-shadow: 0 0 40px rgba(255,138,101,0.6);
}

/* Glow эффекты */
.sw-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  z-index: 1;
}

.sw-glow-left {
  width: 300px;
  height: 300px;
  background: #80deea;
  top: -50px;
  left: -50px;
}

.sw-glow-right {
  width: 300px;
  height: 300px;
  background: #ff8a65;
  bottom: -50px;
  right: -50px;
}
/* ===== OFFERS / CARDS ===== */
.sw-offer-card {
  background: linear-gradient(135deg, #1f1f3a, #2a2a50);
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sw-offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

.sw-main-icon {
  font-size: 80px;
  color: #00ffe0;
  text-shadow: 0 0 30px rgba(0,255,224,0.6);
}

.sw-offer-details li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

.sw-rating i {
  font-size: 1.5rem;
  margin-right: 3px;
}

.btn-gradient {
  background: linear-gradient(45deg, #00ffe0, #ff6ec7);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 15px;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255,110,199,0.7);
}

.sw-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.4;
  z-index: 0;
}

.sw-glow-left {
  width: 350px;
  height: 350px;
  background: #00ffe0;
  top: -80px;
  left: -80px;
}

.sw-glow-right {
  width: 350px;
  height: 350px;
  background: #ff6ec7;
  bottom: -80px;
  right: -80px;
}
.bg-gradient-light {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.sw-icon {
  font-size: 2.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.sw-icon:hover {
  transform: scale(1.2);
  color: #00ffe0;
}

.sw-link {
  color: #ff6ec7;
  font-weight: 600;
  text-decoration: none;
}

.sw-link:hover {
  text-decoration: underline;
  color: #00ffe0;
}

h2 {
  color: #fff;
}

p.lead {
  color: #fff;
}

/* ===== PRIVACY / RESPONSIBLE PLAY ===== */
.privacy-block {
  background-color: #1E1E1E;
  padding: 60px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
}

.privacy-block a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* ===== FOOTER ===== */
footer.footer {
  background-color: var(--bg-color);
  color: var(--text-color);
  padding: 60px 20px;
  font-family: var(--font-family);
  border-top: 2px solid var(--primary-color);
}

footer.footer .footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
}

footer.footer .footer-logos img {
  max-height: 50px;
  transition: transform 0.3s, filter 0.3s;
}

footer.footer .footer-logos img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

footer.footer .invert-logo {
  filter: brightness(1) invert(1);
}

footer.footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

footer.footer .footer-nav a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

footer.footer .footer-nav a:hover {
  color: var(--accent-color);
}

footer.footer .footer-text {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

footer.footer .footer-text p {
  margin: 5px 0;
}

/* ===== MODALS / AGE CONFIRMATION ===== */
.sw-age-modal {
  background: linear-gradient(135deg, #1c1c2e, #2e2e44);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  color: #fff;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.5s ease;
}

.sw-age-icon i {
  font-size: 3rem;
  color: #ff6ec7;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

.btn-gradient-primary {
  background: linear-gradient(45deg, #ff6ec7, #00ffe0);
  color: #fff;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-gradient-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,110,199,0.7);
}

.btn-gradient-secondary {
  background: linear-gradient(45deg, #555, #888);
  color: #fff;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-gradient-secondary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
}
.hero-features {
  margin: 15% 0;
}

.sw-responsible {
  background: linear-gradient(135deg, #1a1a2e, #2e2e44);
  color: #f5f5f5;
  padding-top: 60px;
  padding-bottom: 60px;
}

.sw-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6ec7;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.sw-responsible-intro {
  font-size: 1.1rem;
  color: #ddd;
}

.sw-responsible-card {
  background: linear-gradient(145deg, #2e2e44, #1c1c2e);
  border-radius: 20px;
  padding: 25px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.sw-responsible-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255,110,199,0.5);
}

.sw-responsible-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: inline-block;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.sw-responsible-card h3 {
  color: #ff9ae0;
  margin-bottom: 10px;
}

.sw-responsible-card p {
  color: #ddd;
  line-height: 1.6;
}

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

.final-card {
  border: 2px solid #ff6ec7;
}
.sw-contacts {
  background-color: #121212; /* тёмный фон */
  color: #fff; /* основной текст белый */
  padding: 80px 20px;
}

/* Заголовки */
.sw-contacts .sw-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color); /* золотой */
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
a {
  color: #ff6ec7;
      text-decoration: none;
}
.sw-responsible-list li {
  font-size: 1rem;
  line-height: 1.6;
  padding-left: 0.5rem;
  position: relative;
}

.sw-responsible-list i {
  font-size: 1.25rem;
  vertical-align: middle;
}
 .footer-logos {
    display: flex
;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 30px 0;
}
.footer-logos img {
    max-height: 50px;
    transition: transform 0.3s, filter 0.3s;
}
.sw-contacts .sw-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.sw-contacts p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cbe5b4; /* мягкий зелёный */
}

/* Карточки контактов */
.sw-contact-card {
  background-color: #1b1b1b; /* чуть светлее, чем фон секции */
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 30px 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.sw-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.sw-contact-card h5 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.sw-contact-card p, 
.sw-contact-card a {
  color: #cbe5b4;
}

.sw-contact-card a:hover {
  color: #7ee88e; /* светло-зелёный при наведении */
  text-decoration: none;
}

/* Иконки карточек */
.sw-contact-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

/* Форма контактов */
.sw-contact-form-card {
  background-color: #1b1b1b;
  border: 2px solid var(--primary-color);
  border-radius: 20px;
}

.sw-contact-form-card h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.sw-contact-form-card .form-control {
  background-color: #121212;
  border: 1px solid #cbe5b4;
  color: #cbe5b4;
  border-radius: 10px;
}

.sw-contact-form-card .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 204, 0, 0.25);
  background-color: #121212;
  color: #cbe5b4;
}

.sw-contact-form-card .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #121212;
  font-weight: 700;
  padding: 10px 30px;
  border-radius: 10px;
  transition: all 0.3s;
}

.sw-contact-form-card .btn-primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  color: #fff;
}

.sw-responsible-card.final-card .sw-responsible-icon {
  background-color: var(--primary-color);
}
/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .hero-parallax {
    min-height: 550px;
    padding: 20px 0;
  }
  .hero-header h1 {
    font-size: 2rem;
  }
  .hero-header p {
    font-size: 1.2rem;
  }
  .hero-features .col-md-3 {
    margin-bottom: 20px;
  }
  .header-content {
    flex-direction: column;
    text-align: center;
  }
  .header-content .items {
    flex-direction: column;
    gap: 20px;
  }
  .items-main-container .bottom {
    flex-direction: column;
    gap: 10px;
  }
}
