.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(108, 92, 231, 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;
  font-size: 2 rem;
  color: #fdcb6e;
  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: #6c5ce7;
  display: inline-block;
}

.review-col-bonus h5 {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  color: #2d3436;
  text-align: center;
  margin: 0.5rem 0;
}

.review-col-features ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.95rem;
  color: #2d3436;
  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: #fde429;
  font-weight: bold;
  font-size: 1rem;
}

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

.review-btn {
  display: inline-block;
  background: linear-gradient(135deg, #756df4, #f46d6d);
  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, #756df4, #f46d6d);
  transform: scale(1.05);
}

.review-col-btn p {
  font-size: 0.75rem;
  margin-top: 0.5rem;
  color: #888;
}

/* Адаптивность */
@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;
  }
}

.why-choose-section {
  background-color: #f9f9ff;
  padding: 80px 0;
  font-family: 'Segoe UI', sans-serif;
  color: #052241;
}

.why-choose-section .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.why-choose-section .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-choose-section .section-header .highlight {
  color: #766df4;
}

.why-choose-section .section-header p {
  font-size: 17px;
  color: #333;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 36px;
  color: #766df4;
  margin-bottom: 20px;
}

.feature-box h4 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-box p {
  font-size: 15px;
  color: #444;
}

.info-highlight-section {
  background-color: #ffffff;
  padding: 80px 0;
  color: #052241;
  font-family: 'Segoe UI', sans-serif;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-item i {
  font-size: 32px;
  color: #766df4;
  min-width: 40px;
  margin-top: 4px;
}

.feature-item h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 15px;
  color: #333;
  margin: 0;
}

.highlight-box {
  background-color: #f4f4ff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.highlight-box h2 {
  font-size: 28px;
  color: #052241;
  margin-bottom: 20px;
}

.highlight-box p {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
}

.btn-explore {
  display: inline-block;
  background-color: #766df4;
  color: #fff;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-explore:hover {
  background-color: #594fd8;
}

.sobre-nos-grid {
  background: #f9f9ff;
  padding: 80px 0;
  font-family: 'Segoe UI', sans-serif;
  color: #052241;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #766df4;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
}

.grid-boxes {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.grid-item {
  background: #fff;
  border: 1px solid #e0e0f0;
  border-radius: 12px;
  padding: 30px 25px;
  width: 100%;
  max-width: 360px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.grid-item i {
  font-size: 38px;
  color: #766df4;
  margin-bottom: 20px;
}

.grid-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.grid-item p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

.sobre-nos-destaque {
  padding: 80px 0;
  background-color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  color: #052241;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.col-left {
  flex: 1 1 55%;
}

.col-right {
  flex: 1 1 40%;
}

.sobre-nos-destaque h2 {
  font-size: 32px;
  font-weight: 800;
  color: #766df4;
  margin-bottom: 20px;
}

.sobre-nos-destaque p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.sobre-nos-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sobre-nos-lista li {
  font-size: 16px;
  margin-bottom: 18px;
  padding-left: 32px;
  position: relative;
  color: #2d5075;
  font-weight: 600;
}

.sobre-nos-lista li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #766df4;
  font-size: 20px;
}

.responsible-gaming-section {
  background: #f9f9ff;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #052241;
}

.responsible-gaming-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.responsible-gaming-section .header {
  text-align: center;
  margin-bottom: 50px;
}

.responsible-gaming-section h2 {
  font-size: 36px;
  color: #766df4;
  font-weight: 800;
  margin-bottom: 16px;
}

.responsible-gaming-section .header p {
  font-size: 17px;
  color: #2d5075;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.responsible-gaming-section .content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.responsible-gaming-section .box {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  flex: 1 1 calc(50% - 30px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.responsible-gaming-section .box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.responsible-gaming-section .box i {
  font-size: 32px;
  color: #766df4;
  margin-bottom: 16px;
  display: block;
}

.responsible-gaming-section .box h3 {
  font-size: 20px;
  color: #052241;
  margin-bottom: 12px;
}

.responsible-gaming-section .box p {
  font-size: 15px;
  color: #2d5075;
  line-height: 1.6;
}

.responsible-gaming-section .footer-note {
  margin-top: 60px;
  text-align: center;
  font-size: 14px;
  color: #444;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.responsible-gaming-section .footer-note a {
  color: #766df4;
  font-weight: 600;
  text-decoration: none;
}

.responsible-steps {
  background-color: #fff;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #052241;
}

.responsible-steps .container {
  max-width: 1100px;
  margin: 0 auto;
}

.responsible-steps .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.responsible-steps h2 {
  font-size: 34px;
  color: #766df4;
  font-weight: 800;
}

.responsible-steps .section-header p {
  font-size: 17px;
  color: #2d5075;
  max-width: 750px;
  margin: 12px auto 0 auto;
  line-height: 1.6;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.step {
  background-color: #f9f9ff;
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease-in-out;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.step-number {
  background-color: #766df4;
  color: white;
  font-size: 20px;
  font-weight: bold;
  width: 48px;
  height: 48px;
  line-height: 48px;
  margin: 0 auto 20px;
  border-radius: 50%;
}

.step h3 {
  font-size: 18px;
  color: #052241;
  margin-bottom: 12px;
  font-weight: 700;
}

.step p {
  font-size: 15px;
  color: #2d5075;
  line-height: 1.6;
}

.terms-section {
  background: #ffffff;
  padding: 80px 20px;
  color: #052241;
  font-family: 'Segoe UI', sans-serif;
}

.terms-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 800;
  color: #766df4;
}

.section-title p {
  font-size: 16px;
  color: #2d5075;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.accordion-button {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: #052241;
  width: 100%;
  text-align: left;
  padding: 14px 0;
  cursor: pointer;
  transition: 0.3s ease;
}

.accordion-button:hover {
  color: #766df4;
}

.accordion-body {
  padding: 0 0 14px 0;
  color: #2d5075;
  font-size: 15px;
  line-height: 1.6;
  display: none;
}

.accordion-collapse.show .accordion-body {
  display: block;
}

.privacy-policy-section {
  background-color: #ffffff;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #2d2d2d;
}

.privacy-policy-section .container {
  max-width: 960px;
  margin: 0 auto;
}

.section-title {
  color: #766df4;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}

.section-description {
  font-size: 16px;
  color: #555;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.privacy-block {
  margin-bottom: 30px;
}

.privacy-block h3 {
  color: #052241;
  font-size: 20px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
}

.privacy-block h3::before {
  content: "🔒";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}

.privacy-block p {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
}

.last-updated {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-top: 50px;
}

.cookies-policy-section {
  background-color: #ffffff;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #2d2d2d;
}

.cookies-policy-section .container {
  max-width: 960px;
  margin: 0 auto;
}

.section-title {
  color: #766df4;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}

.section-intro {
  font-size: 16px;
  color: #555;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.cookie-block {
  margin-bottom: 30px;
}

.cookie-block h3 {
  color: #052241;
  font-size: 20px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
}

.cookie-block h3::before {
  content: "🍪";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}

.cookie-block p,
.cookie-block ul {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
}

.cookie-block ul {
  list-style: none;
  padding-left: 0;
}

.cookie-block ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.cookie-block ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #766df4;
  font-weight: bold;
}

.last-updated {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-top: 50px;
}

.terms-section {
  background-color: #fff;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #2d2d2d;
}

.terms-section .container {
  max-width: 960px;
  margin: 0 auto;
}

.section-title {
  color: #766df4;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}

.section-intro {
  font-size: 16px;
  color: #555;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.terms-block {
  margin-bottom: 30px;
}

.terms-block h3 {
  color: #052241;
  font-size: 20px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
}

.terms-block h3::before {
  content: "📄";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}

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

.last-updated {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-top: 50px;
}