:root {
    --text: #ffffff;
    --logo-text-color: rgb(225, 225, 255);
  }
  
  body {
    margin: 0;
    padding: 0;
    background-color: #0a0414;
    font-family: 'Space Grotesk', sans-serif;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    overflow: -moz-scrollbars-none; 
    -ms-overflow-style: none;        
    scrollbar-width: none; 
  }

  body::-webkit-scrollbar {
    display: none; 
  }

  .atom-background {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
  }

  .orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(160, 68, 255, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotate linear infinite;
    box-shadow: 0 0 20px rgba(160, 68, 255, 0.5);
  }

  .orbit:nth-child(1) {
    width: 300px;
    height: 120px;
    transform: translate(-50%, -50%) rotate(0deg);
    animation-duration: 20s;
  }

  .orbit:nth-child(2) {
    width: 300px;
    height: 120px;
    transform: translate(-50%, -50%) rotate(60deg);
    animation-duration: 25s;
  }

  .orbit:nth-child(3) {
    width: 300px;
    height: 120px;
    transform: translate(-50%, -50%) rotate(120deg);
    animation-duration: 30s;
  }

  @keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
  }

  .nucleus {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, #e040fb, #a044ff);
    border-radius: 50%;
    box-shadow:
      0 0 30px #e040fb,
      0 0 60px #a044ff,
      0 0 100px #a044ff;
    z-index: 1;
  }

  .top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    box-sizing: border-box;
    z-index: 100;
    border-bottom: 1px solid transparent;
    box-shadow: none;
  }

  .logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 20px;
  }

  .logo-img {
    width: 40px;
    height: 40px;
    border-radius: 0%;
    object-fit: cover;
  }

  .exploit-name {
    color: var(--logo-text-color);
    font-size: 22px;
    font-weight: 700;
    text-shadow:
      0 0 10px rgba(160, 68, 255, 0.7),
      0 0 20px rgba(160, 68, 255, 0.3);
    letter-spacing: 0.5px;
  }

  .top-nav {
    display: flex;
    gap: 25px;
    margin: 0 auto;
  }

  .nav-link {
    color: #cfc6f7;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .nav-link:hover {
    color: #ffffff;
  }

  .buttons-container {
    display: flex;
    gap: 20px;
    margin-left: 20px;
  }

  .nav-button {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Space Grotesk', sans-serif;
  }

  .download-btn.right-align-btn {
    background-color: transparent;
    color: #cfc6f7;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }

  .download-btn.right-align-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
  }

  .logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
  }
  .logo-link:hover .logo-container {
    opacity: 0.95;
    cursor: pointer;
  }
  .cont {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 90px); 
  }
  .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
  }

  .hero-visual {
      position: relative;
      z-index: 1;
      margin-top: 40px;
  }

  .hero-image {
      width: 100%;
      height: auto;
      object-fit: contain;
      animation: float 6s ease-in-out infinite;
  }
  @keyframes float {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-15px);
  }
  }

  @media (max-width: 992px) {
      .hero-grid {
          grid-template-columns: 1fr;
      }
  
      .hero-visual {
          order: -1;
          margin-bottom: 2rem;
          max-width: 80%;
          margin-left: auto;
          margin-right: auto;
          margin-top: 0;
      }
  }

  @media (max-width: 768px) {
      .hero-visual {
          max-width: 100%;
      }
  }

  .hero-image {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .hero-image:hover {
      transform: scale(1.02);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  }

  .hero-image {
      position: relative;
  }

  .hero-image::before {
      content: '';
      position: absolute;
      inset: -5px;
      background: linear-gradient(45deg, var(--primary), var(--accent));
      z-index: -1;
      border-radius: 10px;
      filter: blur(5px);
      opacity: 0.7;
      transition: opacity 0.3s ease;
  }

  .hero-image:hover::before {
      opacity: 1;
  }

  .hero-image {
      filter: drop-shadow(0 0 10px rgba(146, 0, 243, 0.3));
  }

  .hero-title, .hero-subtitle, .hero-btns, .hero-visual {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(.4,2,.3,1), transform 1s cubic-bezier(.4,2,.3,1);
  }
  .hero-title.show, .hero-subtitle.show, .hero-btns.show, .hero-visual.show {
    opacity: 1;
    transform: translateY(0);
  }
  .hero-title {
    transition-delay: 0.1s;
  }
  .hero-subtitle {
    transition-delay: 0.3s;
  }
  .hero-btns {
    transition-delay: 0.5s;
  }
  .hero-visual {
    transition-delay: 0.7s;
  }

  .hero-title {
    font-size: 64px;
    font-weight: 700;
    background: linear-gradient(to right, #ffffff, #9900ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 18px;
    line-height: 1.05;
    letter-spacing: -1px;
    text-align: left;
  }
  .hero-subtitle {
    font-size: 20px;
    color: #bdb8d7;
    margin-bottom: 38px;
    font-weight: 400;
    text-align: left;
  }
  .hero-btns {
    display: flex;
    gap: 18px;
    margin-bottom: 0;
  }
  .hero-main-btn {
    font-size: 18px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(160,68,255,0.10);
  }
  @media (max-width: 992px) {
    .hero-title { font-size: 40px; }
    .hero-subtitle { font-size: 16px; }
    .hero-main-btn { font-size: 16px; padding: 12px 20px; }
  }
  @media (max-width: 600px) {
    .hero-title { font-size: 28px; }
    .hero-main-btn { font-size: 14px; padding: 10px 12px; }
    .hero-visual {
      display: none;
    }
    .top-bar {
      height: 50px;
      padding: 0 10px;
    }
    .logo-img {
      width: 28px;
      height: 28px;
    }
    .exploit-name {
      font-size: 16px;
    }
    .nav-button, .download-btn, .telegram-btn {
      font-size: 12px;
      padding: 6px 10px;
      border-radius: 4px;
      gap: 4px;
    }
    .buttons-container {
      gap: 8px;
    }
  }

  .cards-container {
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: center;
    margin: 60px 0 40px 0;
    flex-wrap: nowrap;
  }

  .cards-separator {
    width: 100%;
    height: 1px; /* Тонкая линия-разделитель */
    background: linear-gradient(to right, transparent, rgba(160, 68, 255, 0.3), transparent); /* Градиент для эффекта свечения */
    margin: 40px 0;
  }

  .card {
    background: rgba(30, 10, 50, 0.35);
    border-radius: 18px;
    box-shadow: 0 2px 8px 0 rgba(160, 68, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    width: 340px;
    min-height: 420px;
    padding: 32px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.5s cubic-bezier(.4,2,.3,1), box-shadow 0.3s;
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    will-change: transform, opacity;
    position: relative;
  }

  .card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 16px 0 rgba(160, 68, 255, 0.10);
  }

  .card-icon {
    font-size: 3rem;
    color: #a044ff;
    margin-bottom: 18px;
  }

  .card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
  }

  .card p {
    color: #bdb8d7;
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
  }

  .card-features li {
    color: #cfc6f7;
    font-size: 1rem;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .card-features i {
    color: #a044ff;
    font-size: 1.1em;
  }

  .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .card-footer {
    margin-top: auto;
    width: calc(100% - 48px); 
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%); 
    text-align: center;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 20px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
    border: none;
    cursor: pointer;
    justify-content: center;
    white-space: nowrap;
  }

  .btn-primary {
    background: linear-gradient(135deg, #a044ff, #e040fb);
    color: #fff;
  }

  .btn-primary:hover {
    background: linear-gradient(135deg, #e040fb, #a044ff);
    box-shadow: 0 0 16px #a044ff55;
  }

  .btn-secondary {
    background-color: transparent;
    color: #cfc6f7;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
  }

  .btn-secondary:hover {
    background-color: rgba(160, 68, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
  }

  .btn-accent {
    background: linear-gradient(135deg, #ffffff, #cfc6f7);
    color: #1a0732;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  }

  .btn-accent:hover {
    background: linear-gradient(135deg, #e040fb, #a044ff);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  }

  @media (max-width: 1100px) {
    .cards-container {
      flex-direction: column;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }
    .card {
      width: 95vw;
      max-width: 400px;
    }
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 60px 2rem;
  }

  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 0 1rem;
  }

  .modal-overlay.visible {
    visibility: visible;
    opacity: 1;
  }

  .modal {
    position: relative;
    background-color: #0F0F13;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    z-index: 1001;
    color: #ffffff;
    box-shadow: 0 0 40px rgba(160, 68, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s ease;
  }

  .modal-overlay.visible .modal {
    transform: scale(1) translateY(0);
  }

  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding-right: 20px;
  }

  .modal-title {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(to right, #e040fb, #a044ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #bdb8d7;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .modal-close:hover {
    transform: rotate(90deg);
    color: #ff4081;
  }

  .modal-body {
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 15px;
  }

  .modal-body p:first-child {
    margin-top: 0 !important;
  }

  .requirement-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
    background-color: #1a0732;
    padding: 10px;
    border-radius: 8px;
    border: 1.5px solid rgba(160, 68, 255, 0.3);
    transition: border-color 0.3s ease, transform 0.3s ease;
  }

  .requirement-item:hover {
    border-color: #a044ff;
    transform: scale(1.01);
  }

  .requirement-icon {
    margin-right: 0;
    margin-bottom: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #a044ff;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
  }

  .requirement-text {
    padding-top: 0;
    margin-top: 0;
  }

  .requirement-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 5px;
    color: #ffffff;
  }

  .requirement-text p {
    font-size: 0.8rem;
    color: #bdb8d7;
    margin-bottom: 10px;
  }

  .download-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #a044ff, #e040fb);
    color: #fff;
    padding: 4px 8px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .download-link:hover {
    transform: scale(1.05);
    box-shadow: 0 0 8px rgba(160, 68, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .download-link i {
    font-size: 0.7rem;
  }

  .modal-footer {
    position: static;
    display: flex;
    justify-content: center;
    width: 100%;
    border: none !important;
    margin-left: 0;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .modal-footer .btn {
    margin: 0 5px;
  }

  .btn-secondary {
    background-color: #2c144a;
    color: #cfc6f7;
    border: 1.5px solid #a044ff;
    padding: 10px 20px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  }

  .btn-secondary:hover {
    background-color: #a044ff;
    color: #ffffff;
    border-color: #ffffff;
  }

  .btn-primary {
    background: linear-gradient(135deg, #a044ff, #e040fb);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s, box-shadow 0.2s;
  }

  .btn-primary:hover {
    background: linear-gradient(135deg, #e040fb, #a044ff);
    box-shadow: 0 0 16px #a044ff55;
  }

  @media (max-width: 1100px) {
    .cards-container {
      flex-direction: column;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }
    .card {
      width: 95vw;
      max-width: 400px;
    }
  }

  /* Стили для кнопок в hero-блоке */
  .hero-main-btn.download-btn {
    background: linear-gradient(135deg, #a044ff, #e040fb);
    color: white;
    border: none;
    box-shadow: 0 2px 12px rgba(160,68,255,0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .hero-main-btn.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(160, 68, 255, 0.5);
  }

  .hero-main-btn.telegram-btn {
    background-color: transparent;
    color: #a044ff;
    border: 2px solid #1d0435;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
  }

  .hero-main-btn.telegram-btn:hover {
    background-color: rgba(160, 68, 255, 0.1);
    box-shadow: 0 0 15px rgba(160, 68, 255, 0.3);
  }

  .notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1010; 
    display: flex;
    justify-content: flex-start; 
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0.6); 
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .notification-overlay.visible {
    visibility: visible;
    opacity: 1;
  }

  .notification-modal {
    position: absolute;
    top: 20px; 
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    background-color: #1a1a1f; 
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    width: 90%;
    max-width: 350px; 
    transition: transform 0.3s ease;
  }

  .notification-overlay.visible .notification-modal {
    transform: translateX(-50%) scale(1); 
  }

  .notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .notification-icon {
    font-size: 20px;
    color: #4CAF50; 
  }

  .notification-text {
    flex-grow: 1;
  }

  .notification-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .notification-message {
    font-size: 12px;
    color: #cccccc;
  }

  .notification-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #bdbdbd; 
    cursor: pointer;
    margin-left: 15px; 
    transition: color 0.2s ease;
  }

  .notification-close:hover {
    color: #ffffff;
  }

  .cta-section {
    background-color: #1a0732;
    padding: 60px 30px;
    border-radius: 15px;
    max-width: 700px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 0.5px solid rgba(255, 255, 255, 0.08);
  }

  .cta-content {
    flex: none;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.1;
  }

  .cta-content p {
    font-size: 16px;
    color: #bdb8d7;
    margin-bottom: 30px;
  }

  .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
  }

  .cta-buttons .button {
      padding: 12px 24px;
      border-radius: 7px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
  }

  .cta-buttons .primary-button {
      background: linear-gradient(135deg, #a044ff, #e040fb);
      color: #fff;
      border: none;
      box-shadow: 0 2px 12px rgba(160,68,255,0.10);
  }

  .cta-buttons .primary-button:hover {
      background: linear-gradient(135deg, #e040fb, #a044ff);
      box-shadow: 0 0 16px #a044ff55;
  }

  .cta-buttons .secondary-button {
      background-color: transparent;
      color: #cfc6f7;
      border: 1.5px solid rgba(255, 255, 255, 0.4);
  }

  .cta-buttons .secondary-button:hover {
      background-color: rgba(160, 68, 255, 0.1);
      color: #ffffff;
      border-color: #ffffff;
  }

  /* Скрываю кнопку меню по умолчанию */
  .menu-button {
    display: none;
  }

  /* Стили для мобильного меню */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95); /* Очень темный фон */
    z-index: 1000;
    display: flex;
    justify-content: center; /* Центрируем содержимое по горизонтали */
    align-items: center; /* Центрируем содержимое по вертикали */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .mobile-menu-overlay.visible {
    visibility: visible;
    opacity: 1;
  }

  .mobile-menu-content {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
  }

  .mobile-menu-content .nav-link {
    color: #cfc6f7;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    padding: 12px 24px;
    border-radius: 8px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }

  .mobile-menu-content .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(135deg, #7a00cc, #b300d1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask-composite: exclude;
    z-index: -1;
  }

  .mobile-menu-content .nav-link:hover {
    color: #ffffff;
    background-color: rgba(160, 68, 255, 0.1);
  }

  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .close-menu:hover {
    transform: rotate(90deg);
    color: #ff4081;
  }

  @media (max-width: 768px) {
    .top-nav {
      display: none; /* Скрываю обычные ссылки */
    }

    .menu-button {
      display: block; /* Показываю кнопку меню */
      background-color: transparent;
      color: #cfc6f7;
      border: 1.5px solid rgba(255, 255, 255, 0.4);
      padding: 8px; /* Делаю кнопку квадратной */
      font-size: 18px;
      border-radius: 5px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .menu-button:hover {
      background-color: rgba(255, 255, 255, 0.1);
      border-color: #ffffff;
      color: #ffffff;
    }

    /* Адаптация hero-блока */
    .cont {
      padding: 0 1rem; /* Уменьшаю горизонтальные отступы */
      min-height: auto; /* Убираю минимальную высоту */
      margin-top: 80px; /* Добавляю отступ сверху, чтобы избежать перекрытия топ-баром */
    }

    .hero-grid {
      grid-template-columns: 1fr; /* Один столбец */
      gap: 2rem; /* Уменьшаю расстояние между элементами */
    }

    .hero-cont {
      text-align: center; /* Центрирую текст */
    }

    .hero-title {
      font-size: 36px; /* Уменьшаю размер заголовка */
      margin-bottom: 10px;
    }

    .hero-subtitle {
      font-size: 16px; /* Уменьшаю размер подзаголовка */
      margin-bottom: 20px;
    }

    .hero-btns {
      justify-content: center; /* Центрирую кнопки */
      gap: 15px; /* Уменьшаю расстояние между кнопками */
    }

    .hero-main-btn {
      padding: 10px 18px; /* Уменьшаю отступы кнопок */
      font-size: 14px;
    }

    .hero-visual {
      margin-bottom: 2rem; /* Отступ снизу */
    }

    .hero-image {
      max-width: 90%; /* Уменьшаю максимальную ширину изображения */
      margin: 0 auto; /* Центрирую изображение */
    }

    /* Адаптация секции карточек */
    .container {
      padding: 0 1rem 40px 1rem; /* Уменьшаю отступы */
    }

    .cards-container {
      flex-direction: column; /* Размещаю карточки по вертикали */
      align-items: center; /* Центрирую карточки */
      gap: 20px; /* Уменьшаю расстояние между карточками */
    }

    .card {
      width: 90%; /* Уменьшаю ширину карточек */
      padding: 20px; /* Уменьшаю отступы в карточках */
    }

    .card-content {
      align-items: center; /* Центрирую содержимое карточки */
      text-align: center;
    }

    .card-footer {
      position: static; /* Отключаю абсолютное позиционирование */
      transform: none; /* Убираю трансформацию */
      width: 100%; /* Ширина на всю ширину карточки */
      margin-top: 20px; /* Отступ сверху */
    }

    .btn {
      width: 100%; /* Кнопки на всю ширину */
      justify-content: center; /* Центрирую содержимое кнопок */
    }

    /* Адаптация секции CTA */
    .cta-section {
      flex-direction: column; /* Размещаю элементы по вертикали */
      padding: 40px 20px; /* Уменьшаю отступы */
      margin: 40px auto; /* Уменьшаю отступы */
      max-width: 90%; /* Уменьшаю максимальную ширину */
    }

    .cta-content h2 {
      font-size: 32px; /* Уменьшаю размер заголовка */
    }

    .cta-content p {
      font-size: 14px; /* Уменьшаю размер текста */
    }

    .cta-buttons {
      flex-direction: column; /* Кнопки по вертикали */
      gap: 10px; /* Уменьшаю расстояние между кнопками */
    }

    .cta-buttons .button {
      padding: 12px 24px; /* Пример: можно оставить или скорректировать */
    }

    .modal {
      width: 90%;
    }

    .modal-footer {
      position: static;
      display: flex;
      justify-content: center;
      width: 100%;
      border: none !important;
      margin-left: 0;
      margin-top: 20px;
      margin-bottom: 0;
    }

    .modal-footer .btn {
      margin: 0 5px;
    }

    .notification-modal {
      width: 90%;
    }
  }

  /* Адаптация кнопок в карточках */
  .card-footer .btn {
    padding: 10px 10px; /* Уменьшаю горизонтальный отступ еще немного */
    font-size: 14px;
    box-sizing: border-box; /* Включаю box-sizing: border-box */
  }

  .download-disabled {
    opacity: 0.5; /* Сделаем кнопки полупрозрачными */
    pointer-events: none; /* Отключим события мыши */
    cursor: not-allowed !important; /* Изменим курсор */
    /* Возможно, потребуется скорректировать цвета или рамку для неактивного состояния */
    background: #cccccc !important; /* Серый фон */
    color: #555555 !important; /* Темно-серый текст */
    border-color: #cccccc !important; /* Серая рамка */
    box-shadow: none !important; /* Уберем тени */
  }

  .download-disabled::before {
    display: none !important; /* Скрываем градиентную рамку */
  }