/* ===== Основные переменные ===== */
: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 ===== */
header.header {
  background-color: #181818;
  color: var(--text-secondary);
  padding: 5px 0;
}

header.header h6 {
  font-size: 0.85rem;
  text-align: center;
  margin: 0;
}

header.header .logo img {
  height: 50px;
}

/* ===== HERO ===== */
.hero-parallax {
  position: relative;
  min-height: 750px; /* больше пространства */
  background-image: url('../img/parallax-bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero-parallax::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8); /* черное с прозрачностью 60% */
  z-index: 0;
}


.hero-parallax .container {
  position: relative;
  z-index: 1;
  margin-top: 140px;
}

.hero-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-color);
  text-shadow: 3px 3px 15px rgba(0,0,0,0.7);
  animation: fadeInDown 1s ease forwards;
}

.hero-header p {
  font-size: 1.75rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
  animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-features .col-md-3 {
  animation: fadeInUp 1s ease forwards 0.8s;
}

.hero-stats h2 {
  font-size: 2.5rem;
  margin: 0;
  color: #1ABC9C;
}

.hero-stats p {
  margin: 0;
  color: #ccc;
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* ===== OFFERS / CARDS ===== */
.single-offer-section {
  background-color: #121212;
  color: #E0E0E0;
}

.single-offer-section .section-title {
  color: #1ABC9C;
  font-weight: 700;
  font-size: 2rem;
}

.single-offer-section .btn‑primary {
  background-color: #1ABC9C;
  border: none;
  padding: 12px 30px;
  font-size: 1.1rem;
  color: #fff;
  transition: background 0.3s, transform 0.3s;
}

.single-offer-section .btn‑primary:hover {
  background-color: #fff;
  transform: translateY(-3px);
  color: #16A085;
}

.single-offer-section h5 {
  color: #FFD700;
  margin-bottom: 10px;
}

.single-offer-section ul {
  padding-left: 20px;
}

.single-offer-section ul li {
  margin-bottom: 8px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}

.single-offer-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1ABC9C;
  font-size: 1.2rem;
  line-height: 1;
}

.single-offer-section a {
  color: #1ABC9C;
}

.single-offer-section a:hover {
  color: #16A085;
}

/* ===== 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 ===== */
.age-modal, .age-restriction-modal {
  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: 9999;
}

.age-content, .age-restriction-content {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  text-align: center;
  color: var(--text-color);
}

.age-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  margin: 10px;
  cursor: pointer;
}

.confirm-btn {
  background-color: var(--primary-color);
  color: #fff;
}

.quit-btn {
  background-color: #333;
  color: #fff;
}
.hero-features {
  margin: 15% 0;
}

.responsible-block {
  background-color: var(--bg-color);       /* основной фон сайта */
  color: var(--text-color);               /* основной светлый текст */
  padding: 80px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  margin: 50px 0;
}

.responsible-block .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);            /* яркий зелёный из переменной */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.responsible-block .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color); /* яркий зелёный для линии */
  margin: 15px auto 0;
  border-radius: 2px;
}

.responsible-block .responsible-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.responsible-block a {
  color: var(--primary-color);           /* зелёный акцент для ссылок */
  text-decoration: underline;
}

.responsible-block a:hover {
  color: var(--accent-color);            /* тёмно-зелёный при наведении */
}


.sw-responsible {
  background-color: var(--bg-color); /* тёмный фон */
  color: var(--text-color);
  padding: 80px 20px;
}

.sw-responsible .sw-section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.sw-responsible .sw-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.sw-responsible .sw-responsible-intro {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 60px auto;
  line-height: 1.7;
}

/* ===== RESPONSIBLE CARDS ===== */
.sw-responsible-grid .sw-responsible-card {
  background-color: var(--card-bg);
  border-radius: 20px;
  padding: 30px;
  color: var(--text-color);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.sw-responsible-card .sw-responsible-icon {
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: #fff;
}

.sw-responsible-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.sw-responsible-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.sw-responsible-card a {
  color: var(--primary-color);
  text-decoration: underline;
}

.sw-responsible-card a:hover {
  color: var(--accent-color);
}

.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;
}

.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;
  }
}
