
body {
  font-family: 'NimbusSanLBoldCond', sans-serif;
}

.footer {
  background-color: #96969666;
  width: 100%;
  height:200px;
  display: flex;

}
.blocks_info_cont {
  display: flex;
  justify-content: center;
  align-items: center;
 
}
.top-slidercontainer {
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  margin: 20px auto;
  background-color: white;
}

.top-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.top-slide {
  display: none;
  width: 100%;
  height: 100%;
}

.top-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.fade {
  animation: fadeEffect 1s ease-in-out;
}

@keyframes fadeEffect {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* 📱 Адаптация с увеличением баннера */

@media (max-width: 768px) {
  .top-slidercontainer {
    max-height: 420px; /* Увеличено по сравнению с десктопом */
    border-radius: 10px;
  }

  .top-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .top-slidercontainer {
    max-height: 360px; /* Ещё выше для маленьких экранов */
    border-radius: 8px;
  }

  .top-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}


.why-us {
  padding: 60px 20px;
  background: #fff6f0;
  text-align: center;
}

.why-title {
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #333;
}

.highlight {
  color: #D67940;
}

.why-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.why-card {
  background-color: #ffffff;
  border: 2px solid #ffe0c7;
  border-radius: 16px;
  padding: 30px 20px;
  width: 220px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.why-card i {
  font-size: 30px;
  color: #D67940;
  margin-bottom: 15px;
}

.why-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.4;
}

/* 🌐 Адаптація */
@media (max-width: 768px) {
  .why-features {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .why-card {
    width: 48%;
    padding: 16px;
    font-size: 0.95rem;
  }

  .why-card i {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .why-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .why-features {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .why-card {
    width: 90%;
    padding: 14px;
    font-size: 0.9rem;
  }

  .why-card i {
    font-size: 28px;
  }

  .why-title {
    font-size: 1.4rem;
  }
}
.drive-actions {
  text-align: center;
  padding: 60px 20px;
  background-color: #fffdfb;
}

.drive-title {
  font-size: 2.4rem;
  color: #333;
  margin-bottom: 10px;
}

.drive-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.btn-drive {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  background-color: #ffffff;
  border: 2px solid #D67940;
  border-radius: 40px;
  color: #D67940;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(214, 121, 64, 0.15);
  min-width: 240px; /* 🔥 одинаковая ширина */
  text-align: center;
}

.btn-drive span {
  flex-grow: 1;
  text-align: center;
}

.btn-drive:hover {
  background-color: #D67940;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(214, 121, 64, 0.25);
}

.btn-drive i {
  font-size: 1.4rem;
}


/* 📱 Адаптация */
@media (max-width: 768px) {
  .drive-title {
    font-size: 2rem;
  }

  .btn-drive {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-drive {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .drive-title {
    font-size: 1.6rem;
  }

  .drive-subtitle {
    font-size: 1rem;
  }
}

.panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #D67940;
  border: 2px solid white;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  font-weight: 600;
  margin: 12px;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 17px;
  color: white;
  width: 320px;
  height: 110px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.panel p {
  margin: 0;
  font-size: 16px;
}

.panel i {
  font-size: 24px;
  display: block;
  margin-bottom: 6px;
}

.panel:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}


/* 📱 Планшеты: до 768px */
@media (max-width: 768px) {
  .panel {
    width: 90%;
    height: auto;
    padding: 18px 14px;
    font-size: 16px;
  }

  .panel i {
    font-size: 22px;
  }

  .panel p {
    font-size: 15px;
  }
}

/* 📱 Мобильные устройства: до 480px */
@media (max-width: 480px) {
  .panel {
    width: 100%;
    margin: 8px 0;
    padding: 14px 10px;
    font-size: 12px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .panel i {
    font-size: 12px;
  }

  .panel p {
    font-size: 12px;
  }
}


  /* Стили для иконки */
  .fa-solid {
    font-size: 40px; /* Размер иконки */
    margin-bottom: 20px; /* Отступ снизу иконки */
  }

  /* Стили для текста */
  .panel-text {
    font-size: 18px; /* Размер текста */
    font-weight: bold; /* Полужирный текст */
  }  
/* 🌐 Базовый стиль */
.social-media-section {
  background: #fff6f0;
  padding: 50px 20px;
  text-align: center;
}

.social-media-section h2 {
  font-size: 2rem;
  color: #D67940;
  margin-bottom: 30px;
}

.icons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.icon-box {
  width: 150px;
  background-color: white;
  padding: 15px;
  border-radius: 12px;
  border:2px solid rgb(255, 224, 199);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease;
}

.icon-box:hover {
  transform: scale(1.05);
}

.icon-box img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}

.icon-box span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* 📱 Адаптация под планшеты */
@media (max-width: 768px) {
  .icon-box {
    width: 120px;
    padding: 12px;
  }

  .icon-box img {
    width: 40px;
    height: 40px;
  }

  .social-media-section h2 {
    font-size: 1.6rem;
  }
}

/* 📱 Адаптация под телефоны */
@media (max-width: 480px) {
  .icons-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .icon-box {
    width: 80%;
  }

  .icon-box span {
    font-size: 13px;
  }
}
.statistics-section {
  padding: 60px 20px;
  text-align: center;
}

.statistics-section h2 {
  color: #333;
  font-size: 2.4rem;
  margin-bottom: 40px;
}

.totalusers_cont {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-box {
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 280px;
  transition: transform 0.3s ease;
}

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

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.stat-value {
  font-size: 36px;
  font-weight: bold;
  color: #D67940;
}

.stat-value i {
  margin-left: 8px;
}

/* 📱 Планшет (2 в ряд) */
@media (max-width: 768px) {
  .totalusers_cont {
    gap: 30px;
  }

  .stat-box {
    width: 45%;
  }
}

/* 📱 Мобильный (1 в ряд) */
@media (max-width: 480px) {
  .stat-box {
    width: 100%;
  }

  .statistics-section h2 {
    font-size: 1.8rem;
  }

  .stat-value {
    font-size: 28px;
  }
}
.warning_scam {
  background-color: #fff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scam-box {
  background-color: white;
  border: 2px solid #D67940;
  border-radius: 12px;
  padding: 30px 40px;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scam-icon {
  font-size: 64px;
  color: #D67940;
  margin-bottom: 15px;
}

.scam-title {
  font-size: 1.8rem;
  color: #D67940;
  margin-bottom: 15px;
}

.scam-text,
.scam-note {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.5;
}

.scam-note strong {
  color: #D67940;
}

.scam-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 24px;
  border: 2px solid #D67940;
  background-color: #fff;
  color: #D67940;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

.scam-btn:hover {
  background-color: #D67940;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.scam-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.scam-btn:hover i {
  transform: translateX(3px);
}


/* 📱 Адаптация 768px */
@media (max-width: 768px) {
  .scam-box {
    padding: 25px 30px;
  }

  .scam-title {
    font-size: 1.5rem;
  }

  .scam-icon {
    font-size: 40px;
  }
}

/* 📱 Адаптация 480px */
@media (max-width: 480px) {
  .scam-box {
    padding: 20px;
  }

  .scam-title {
    font-size: 1.3rem;
  }

  .scam-icon {
    font-size: 36px;
  }

  .scam-text,
  .scam-note {
    font-size: 0.95rem;
  }

  .scam-btn {
    padding: 10px 16px;
    font-size: 0.95rem;
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
  }
  
}
.beta-warning {
  background-color: #fff5e9;
  border-top: 2px solid #D67940;
  border-bottom: 2px solid #D67940;
  padding: 40px 20px;
  text-align: center;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

.beta-content {
  max-width: 800px;
  margin: 0 auto;
}

.beta-warning i {
  font-size: 40px;
  color: #D67940;
  margin-bottom: 10px;
}

.beta-warning h2 {
  font-size: 1.8rem;
  color: #D67940;
  margin-bottom: 10px;
}

.beta-warning p {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.beta-warning .beta-note {
  font-style: italic;
  font-size: 0.95rem;
}

.beta-warning a {
  color: #D67940;
  text-decoration: underline;
  font-weight: bold;
}

/* 📱 Адаптація */
@media (max-width: 768px) {
  .beta-warning {
    padding: 30px 15px;
  }

  .beta-warning h2 {
    font-size: 1.5rem;
  }

  .beta-warning p {
    font-size: 1rem;
  }

  .beta-warning i {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .beta-warning {
    padding: 25px 10px;
  }

  .beta-warning h2 {
    font-size: 1.3rem;
  }

  .beta-warning p {
    font-size: 0.95rem;
  }

  .beta-warning i {
    font-size: 28px;
  }
}
.news-feed {
  padding: 50px 20px;
  background: #fff6f0;
  text-align: center;
}

.news-title {
  color: #D67940;
  font-size: 2rem;
  margin-bottom: 25px;
}

.news-filter {
  margin-bottom: 30px;
}

.filter-btn {
  margin: 0 10px;
  padding: 8px 18px;
  border: 2px solid #D67940;
  background: white;
  color: #D67940;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #D67940;
  color: white;
}

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

.news-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
  text-align: left;
}

.news-date {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 8px;
  display: block;
}

.news-heading {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.news-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.read-more {
  color: #D67940;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #a4511c;
}

@media (max-width: 768px) {
  .news-grid {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .news-title {
    font-size: 1.6rem;
  }

  .filter-btn {
    margin: 5px;
    padding: 6px 12px;
    font-size: 0.9rem;
  }

  .news-card {
    width: 90%;
  }
}
    
  
 