@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/dist/tabler-icons.min.css');

/* Глобальные стили и сброс */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fafafa;
    color: #333;
    line-height: 1.6;
}



.about_q_b img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_q_b {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: -1;
    filter: blur(4px);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    overflow: hidden;
}

.about_q_b::before {
    content: "";
    background-image: url(../images/background/glass.webp);
    background-repeat: repeat;
    background-size: 750px;
    opacity: 0.3;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-attachment: fixed;
}



/* Контейнер для всей страницы */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Шапка сайта */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 4px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

/* Логотип */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(45deg, #6e45e2, #88d3ce);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.logo-text {
    font-weight: bold;
    font-size: 18px;
    color: #6e45e2;
}

/* Поиск */
.search-bar {
    flex: 1;
    min-width: 140px;
    position: relative;
    max-width: 350px;
}

.search-input {
    width: 100%;
    padding: 10px 15px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    background-color: #f5f5f5;
    font-size: 14px;
    transition: all 0.3s ease;
    padding-left: 40px;
}

.search-input:focus {
    outline: none;
    border-color: #6e45e2;
    box-shadow: 0 0 0 2px rgba(110, 69, 226, 0.1);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

/* Навигация */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    color: #6e45e2;
}

.nav-item:hover {
    background-color: #f0f0f0;
}

.nav-item.active {
    background-color: #f0e6ff;
    color: #6e45e2;
}

.nav-item i {
    font-size: 18px;
}

/* Иконки (используем Unicode символы) */
.icon-home::before { content: "🏠"; }
.icon-book::before { content: "📚"; }
.icon-trophy::before { content: "🏆"; }
.icon-plus::before { content: "➕"; }
.icon-gift::before { content: "🎁"; }
.icon-star::before { content: "⭐"; }
.icon-user::before { content: "👤"; }
.icon-shop::before { content: "🛒"; }




/* .hero-banner {
    border-radius: 20px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.hero-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.swiper-pagination {
    bottom: 10px !important;
}
.swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: white;
} */


/*  */






.btn {
    background-color: white;
    color: #6e45e2;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #6e45e2;
}

/* Профиль пользователя */
.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0 40px 0;
    padding-bottom: 20px;
    padding: 12px 20px;
    /* border-bottom: 2px solid #f0f0f0; */
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);

}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #6e45e2, #88d3ce);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: bold;
}

.profile-info h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.profile-info .stars {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff6b6b;
    font-weight: bold;
}

.profile-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    /* border-bottom: 2px solid #f0f0f0; */
    padding-bottom: 10px;

        padding: 12px 20px;
    /* border-bottom: 2px solid #f0f0f0; */
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tab.active {
    background-color: #6e45e2;
    color: white;
}

/* Магазин */
.shop-section {
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr; */
    /* gap: 30px; */
}

@media (max-width: 768px) {
    .shop-section {
        grid-template-columns: 1fr;
    }
}

.shop-column {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.shop-column-title {
    font-size: 20px;
    width: 100%;
    height: max-content;
    font-weight: bold;
    /* margin-bottom: 14px; */
    line-height: 24px;
    color: #333;
}

.shop-column-list {
    margin-top: 20px;
    display: grid;
    /* grid-template-columns: 1fr 1fr 1fr; */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}



.shop-item {
    display: flex;
    flex-direction: column;
    /* width: 48%; */

    /* min-width: 250px; */

    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    align-items: center;
    text-align: center;
    /* margin-bottom: 14px; */
}

.shop-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.shop-icon {
    width: 100%;
    /* width: 140px; */
    height: 140px;
    border-radius: 15px;
    background: linear-gradient(45deg, #ff7eb3, #7873f5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.shop-details {
    /* flex-grow: 3; */
}

.shop-title {
    font-size: 18px;
    line-height: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}

.shop-price {
    color: #ff6b6b;
    font-weight: bold;
    font-size: 22px;
    margin-top: 12px;
}

.shop-bonus {
    color: #ff9800;
    font-size: 14px;
}

.shop-description {
    color: #666;
    font-size: 12px;
}

.buy-btn {
    /* background: linear-gradient(65deg, #38B2AC, #6e45e2); */
    background-color: #38B2AC;
    color: white;
    border: none;
    width: 80%;
    padding: 8px 16px;
    border-radius: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    margin-top: auto;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(110, 69, 226, 0.3);
}

/* Боевой пропуск */
.battle-pass {
    background: linear-gradient(45deg, #6e45e2, #88d3ce);
    border-radius: 20px;
    padding: 30px;
    color: white;
    margin: 20px 0;
}

.pass-level {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

.level-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.level-info {
    flex-grow: 1;
}

.level-title {
    font-weight: bold;
    margin-bottom: 3px;
}

.level-reward {
    font-size: 14px;
    opacity: 0.9;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin: 20px 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: white;
    width: 65%;
    transition: width 0.5s ease;
}

/* Страница теста */
.test-header {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.test-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.test-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 14px;
}

.comments-section {
    margin-top: 40px;
}

.comment {
    background: white;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #6e45e2, #88d3ce);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.comment-text {
    line-height: 1.5;
}

/* Прохождение теста */
.question-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.question-number {
    color: #6e45e2;
    font-weight: bold;
    margin-bottom: 10px;
}

.question-text {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.answers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.answer-btn {
    background: linear-gradient(45deg, #ff7eb3, #7873f5);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.answer-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Создание теста */
.create-test-container {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.questions-panel {
    flex: 0 0 250px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.questions-panel-title {
    margin-bottom: 20px;
    color: #6e45e2;
    font-weight: bold;
}

.question-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 10px;
    margin-bottom: 15px;
}

.question-number-label {
    font-weight: bold;
}

.add-question-btn {
    width: 100%;
    margin-top: 20px;
}

.questions-count {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.editor-panel {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.editor-panel-title {
    margin-bottom: 20px;
    color: #6e45e2;
    font-weight: bold;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
}

.answers-grid {
    display: grid;
    gap: 10px;
}

.answer-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.answer-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.save-btn {
    margin-top: 20px;
}

.settings-panel {
    flex: 0 0 250px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.settings-panel-title {
    margin-bottom: 20px;
    color: #6e45e2;
    font-weight: bold;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.color-item {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
}

.finish-btn-container {
    margin-top: 30px;
    text-align: center;
}

.finish-btn {
    width: 100%;
}

/* Скрытие секций по умолчанию */
/* .section {
    display: none;
}

.section.active {
    display: block;
} */

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-menu {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .shop-section {
        grid-template-columns: 1fr;
    }
    
    .answers-container {
        grid-template-columns: 1fr;
    }
    
    .create-test-container {
        flex-direction: column;
    }
    
    .questions-panel,
    .settings-panel {
        flex: none;
    }
}


@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .search-bar {
        min-width: auto;
    }
    
    .nav-item {
        padding: 6px 8px;
        font-size: 12px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .tab {
        padding: 8px 16px;
        font-size: 14px;
    }
}









/* Футер сайта */
.site-footer {
  background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 20px 30px;
  margin-top: 60px;
  border-top: 1px solid #e0e0e0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo .logo-icon {
  width: 36px;
  height: 36px;
  font-size: 18px;
}

.footer-logo .logo-text {
  font-size: 20px;
  font-weight: bold;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6e45e2;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-link img {
    width: 100%;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: linear-gradient(45deg, #6e45e2, #38B2AC);
  color: white;
}

.footer-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-radius: 8px;
}

.footer-link:hover {
  color: #6e45e2;
  background: #f0f0f0;
  padding-left: 10px;
  transform: translateX(5px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.footer-copyright {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.footer-credits {
  font-size: 13px;
  color: #999;
}

/* Адаптивность футера */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 20px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    margin-top: 20px;
  }
}



/* ===== СЕКЦИЯ ОПИСАНИЯ ПЛАТФОРМЫ ===== */
.platform-description {
  /* max-width: 1200px; */
  margin: 60px auto 80px;
  /* padding: 0 20px; */
}

.description-hero {
  background: linear-gradient(135deg, #6e45e2 0%, #38B2AC 100%);
  border-radius: 20px;
  padding: 50px;
  color: white;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(110, 69, 226, 0.3);
}

.description-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
}

.description-text {
  font-size: 18px;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.description-cta {
  display: inline-block;
  background: white;
  color: #6e45e2;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.description-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.feature-icon {
  font-size: 48px;
  margin-bottom: 15px;
  color: #6e45e2;
}

.feature-title {
  font-size: 20px;
  color: #322659;
  margin-bottom: 12px;
  font-weight: bold;
}

.feature-desc {
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

.about-platform {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.about-title {
  font-size: 28px;
  color: #322659;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #f0e6ff;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.categories-section {
  background: linear-gradient(135deg, #f8f5ff 0%, #e6f7f7 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.categories-title {
  font-size: 28px;
  color: #322659;
  margin-bottom: 30px;
}

.categories-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.categories-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.category-tag {
  background: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  color: #6e45e2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 14px;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
  .description-hero {
    padding: 30px 20px;
  }
  
  .description-title {
    font-size: 28px;
  }
  
  .description-text {
    font-size: 16px;
  }
  
  .description-cta {
    padding: 12px 28px;
    font-size: 16px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .about-platform,
  .categories-section {
    padding: 25px;
  }
  
  .about-title,
  .categories-title {
    font-size: 24px;
  }
  
  .feature-icon {
    font-size: 40px;
  }
  
  .feature-title {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .description-title {
    font-size: 24px;
    line-height: 1.4;
  }
  
  .description-text {
    font-size: 15px;
  }
  
  .feature-card {
    padding: 25px 15px;
  }
  
  .feature-icon {
    font-size: 36px;
  }
  
  .feature-title {
    font-size: 17px;
  }
  
  .feature-desc {
    font-size: 14px;
  }
  
  .about-title,
  .categories-title {
    font-size: 22px;
  }
  
  .about-text,
  .categories-text {
    font-size: 15px;
  }
  
  .category-tag {
    padding: 6px 16px;
    font-size: 13px;
  }
}




/* ===== БОНУС ЗА РЕГИСТРАЦИЮ ===== */
.bonus-section {
  max-width: 1200px;
  margin: 40px auto 50px;
  padding: 0 20px;
}

.bonus-card {
  background: linear-gradient(135deg, #ff7eb3 0%, #7873f5 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(120, 115, 245, 0.4);
  transition: transform 0.3s ease;
}

.bonus-card:hover {
  transform: scale(1.02);
}

.bonus-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  z-index: 0;
}

.bonus-icon {
  font-size: 48px;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
  animation: pulse 2s infinite;
}

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

.bonus-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.bonus-text {
  font-size: 18px;
  opacity: 0.95;
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.7;
  z-index: 1;
  position: relative;
}

.bonus-btn {
  display: inline-block;
  background: white;
  color: #7873f5;
  padding: 16px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 19px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 1;
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
  opacity: 1;
}

.bonus-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);

} 

.bonus-note {
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  z-index: 1;
  position: relative;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
  .bonus-card {
    padding: 30px 25px;
  }
  
  .bonus-title {
    font-size: 26px;
  }
  
  .bonus-text {
    font-size: 16px;
  }
  
  .bonus-btn {
    padding: 14px 35px;
    font-size: 17px;
  }
  
  .bonus-icon {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .bonus-card {
    padding: 25px 20px;
  }
  
  .bonus-title {
    font-size: 24px;
    line-height: 1.3;
  }
  
  .bonus-text {
    font-size: 15px;
    margin-bottom: 25px;
  }
  
  .bonus-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }
  
  .bonus-icon {
    font-size: 36px;
  }
  
  .bonus-note {
    font-size: 13px;
    margin-top: 20px;
  }
}