.hero-cvp {
  background: linear-gradient(135deg, #079a74, #fea516);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.hero-container {
  max-width: 1600px;
  margin: 0 auto;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #ffffff;
}

.hero-description {
  font-size: 20px;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  color: #fefefe;
}

.container-1600 {
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 30px;
}

.vibe-about-section {
  background: #fff;
  margin-top: 100px;
  color: #082040;
  font-family: 'Segoe UI', sans-serif;
  border-top: 6px solid #fea516;
  border-bottom: 6px solid #079a74;
}

.about-wrapper {
  text-align: center;
}

.about-title {
  font-size: 42px;
  font-weight: 800;
  color: #079a74;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.about-subtitle {
  font-size: 22px;
  color: #fea516;
  margin-bottom: 40px;
  font-weight: 600;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

.about-content p {
  margin-bottom: 24px;
}

.review-item {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  margin-bottom: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.review-item-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.review-item-row>div {
  flex: 1 1 18%;
  min-width: 180px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
  border-radius: 10px;
}

.review-item-row>div:hover {
  background: rgba(52, 58, 64, 0.05);
  /* Заменённый фоновый цвет на серо-синий */
  transform: scale(1.02);
}

.review-col-logo img {
  max-width: 100%;
  height: auto;
  margin: 0 auto 0.75rem;
  display: block;
}

.review-col-rating ul {
  text-align: center;
  padding: 0;
  margin: 0;
}

.review-col-rating li {
  display: inline-block;
  color: #ffc107;
  /* Bootstrap-жёлтый */
  transition: transform 0.2s;
}

.review-col-rating li:hover {
  transform: scale(1.15);
}

.review-col-rating .btn-read-more {
  margin-top: 0.5rem;
  text-align: center;
  font-weight: 600;
  color: #007bff;
  /* Bootstrap-синий */
  display: inline-block;
}

.review-col-bonus h5 {
  color: #343a40;
  /* Bootstrap-темно-серый */
  text-align: center;
  margin: 0.5rem 0;
}

.review-col-features ul {
  list-style: none;
  padding-left: 0;
  color: #495057;
  /* Bootstrap-серый */
  margin: 0.5rem 0;
}

.review-col-features li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
}

.review-col-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  /* Bootstrap-зелёный */
  font-weight: bold;
}

.review-col-btn {
  text-align: center;
  margin-top: 1rem;
}

.review-btn {
  display: inline-block;
  background: linear-gradient(135deg, #28a745, #20c997);
  /* Bootstrap-зелёные */
  color: #fff !important;
  font-weight: bold;
  padding: 0.65rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.4s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.review-btn:hover {
  background: linear-gradient(135deg, #20c997, #28a745);
  transform: scale(1.05);
}

.review-col-btn p {
  margin-top: 0.5rem;
  color: #6c757d;
  /* Bootstrap-muted text */
}

/* Адаптивность */
@media (max-width: 1024px) {
  .review-item-row>div {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .review-item-row>div {
    flex: 1 1 100%;
  }

  .review-item {
    padding: 1.5rem;
  }
}

.container-1600 {
  max-width: 1600px;
  margin: 0 auto;
}

.sobre-nos-section {
  background: #fff;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

.sobre-header {
  text-align: center;
  margin-bottom: 50px;
}

.sobre-header h2 {
  font-size: 42px;
  color: #fea516;
  font-weight: 800;
  margin-bottom: 10px;
}

.sobre-header p {
  font-size: 20px;
  color: #079a74;
  font-weight: 600;
}

.sobre-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.sobre-box {
  flex: 1 1 300px;
  background: #f9f9f9;
  border: 2px solid #079a74;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.3s ease;
}

.sobre-box:hover {
  background: #fff7e6;
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: #fea51620;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sobre-box h3 {
  color: #fea516;
  font-size: 22px;
  margin-bottom: 12px;
}

.sobre-box p {
  font-size: 17px;
  line-height: 1.6;
}

.sobre-footer {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  color: #444;
}

.container-1600 {
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 30px;
  box-sizing: border-box;
}

.responsible-gaming-section {
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
  color: #082c2c;
}

.rg-header {
  text-align: center;
  margin-bottom: 50px;
}

.rg-header h2 {
  font-size: 42px;
  color: #fea516;
  margin-bottom: 10px;
}

.rg-header p {
  font-size: 20px;
  color: #079a74;
  font-weight: 600;
}

.rg-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.rg-block {
  flex: 1 1 45%;
  background: #f8fff6;
  padding: 30px;
  border: 2px solid #079a74;
  border-radius: 16px;
}

.rg-block h3 {
  color: #fea516;
  margin-bottom: 15px;
  font-size: 22px;
}

.rg-block p,
.rg-block ul {
  font-size: 17px;
  line-height: 1.7;
}

.rg-block ul {
  padding-left: 18px;
  list-style: disc;
}

.rg-highlight {
  background: #fff8e6;
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 40px;
  border: 2px dashed #fea516;
}

.rg-highlight h4 {
  color: #d36300;
  font-size: 20px;
  margin-bottom: 16px;
}

.rg-highlight ul {
  list-style: square;
  padding-left: 22px;
  font-size: 17px;
  line-height: 1.6;
  color: #444;
}

.rg-help {
  background-color: #e9f9f6;
  padding: 30px;
  border-left: 8px solid #079a74;
  border-radius: 12px;
  margin-bottom: 40px;
}

.rg-help h3 {
  font-size: 22px;
  color: #079a74;
  margin-bottom: 10px;
}

.rg-help ul {
  padding-left: 18px;
  font-size: 16.5px;
  line-height: 1.6;
}

.rg-help a {
  color: #fea516;
  text-decoration: underline;
}

.rg-footer {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #555;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 20px;
}

.container-1600 {
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 30px;
  box-sizing: border-box;
}

.privacy-policy-section {
  background-color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.pp-header {
  text-align: center;
  margin-bottom: 50px;
}

.pp-header h2 {
  font-size: 42px;
  color: #fea516;
  margin-bottom: 10px;
}

.pp-header p {
  font-size: 20px;
  color: #079a74;
  font-weight: 600;
}

.pp-block {
  background: #f9f9f9;
  border-left: 6px solid #079a74;
  padding: 30px;
  border-radius: 14px;
  margin-bottom: 30px;
}

.pp-block h3 {
  font-size: 24px;
  color: #fea516;
  margin-bottom: 15px;
}

.pp-block p,
.pp-block ul {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.pp-block ul {
  padding-left: 20px;
  list-style-type: disc;
}

.pp-footer {
  margin-top: 40px;
  background-color: #fef7e7;
  padding: 25px 30px;
  border-radius: 10px;
  font-size: 18px;
  text-align: center;
  color: #555;
  border: 1px solid #fea516;
}

.container-1600 {
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 30px;
  box-sizing: border-box;
}

.terms-section {
  background-color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.terms-header {
  text-align: center;
  margin-bottom: 50px;
}

.terms-header h2 {
  font-size: 40px;
  color: #fea516;
  margin-bottom: 10px;
}

.terms-header p {
  font-size: 20px;
  color: #079a74;
  font-weight: 600;
}

.terms-block {
  background: #f8f8f8;
  border-left: 6px solid #079a74;
  padding: 30px;
  border-radius: 14px;
  margin-bottom: 30px;
}

.terms-block h3 {
  font-size: 24px;
  color: #fea516;
  margin-bottom: 15px;
}

.terms-block p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.terms-footer {
  margin-top: 40px;
  background-color: #fff9eb;
  padding: 25px 30px;
  border-radius: 10px;
  font-size: 18px;
  text-align: center;
  color: #555;
  border: 1px solid #fea516;
}

.container-1600 {
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 30px;
  box-sizing: border-box;
}

.legal-notice-section {
  background-color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.legal-header {
  text-align: center;
  margin-bottom: 50px;
}

.legal-header h2 {
  font-size: 40px;
  color: #fea516;
  margin-bottom: 10px;
}

.legal-header p {
  font-size: 20px;
  color: #079a74;
  font-weight: 600;
}

.legal-block {
  background: #fdfdfd;
  border-left: 6px solid #079a74;
  padding: 30px;
  border-radius: 14px;
  margin-bottom: 30px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.04);
}

.legal-block h3 {
  font-size: 24px;
  color: #fea516;
  margin-bottom: 15px;
}

.legal-block p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.legal-footer {
  margin-top: 40px;
  background-color: #fff9ec;
  padding: 25px 30px;
  border-radius: 10px;
  font-size: 18px;
  text-align: center;
  color: #555;
  border: 1px solid #fea516;
}