body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url("assets/fffon.png") no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
  }
  
  /* Скрываем скроллбар для всех элементов */
  * {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
  }
  
  /* Скрываем скроллбар для WebKit браузеров (Chrome, Safari, Edge) */
  *::-webkit-scrollbar {
    display: none;
  }
  
  .logo-container {
    margin-bottom: 40px;
    animation: logoFloat 3s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 1000px;
  }
  
  @keyframes logoFloat {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  .overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 20px;
    max-width: 700px;
    margin-bottom: 50px;
  }
  
  .logo {
    width: 500px;
    filter: drop-shadow(0 0 20px rgba(255, 165, 0, 0.3));
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 30px rgba(255, 165, 0, 0.6));
  }
  
  .we-take-text {
    width: 400px;
    margin-top: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 165, 0, 0.4));
    transition: all 0.3s ease;
  }
  
  .we-take-text:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(255, 165, 0, 0.6));
  }
  
  h1 {
    font-size: 3em;
    margin: 0;
  }
  
  .desc {
    margin: 10px 0;
    font-size: 1.2em;
  }
  
  .desc-small {
    font-size: 0.9em;
    margin-bottom: 20px;
    opacity: 0.8;
  }
  
  .pdf-button-container {
    margin: 20px 0;
    position: absolute;
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
  }
  
  .pdf-button {
    width: 120px;
    height: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.3));
    animation: pdfFloat 3s ease-in-out infinite;
  }
  
  @keyframes pdfFloat {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  .pdf-button:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(255, 165, 0, 0.6));
  }
  
  .pdf-button:active {
    transform: scale(0.95);
  }
  
  button {
    background: orange;
    border: none;
    padding: 15px 40px;
    font-size: 1.2em;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  button:hover {
    background: darkorange;
  }
  
  /* Модальное окно */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
  }

  .modal-content {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    margin: 10% auto;
    padding: 30px;
    border: 2px solid #f39c12;
    border-radius: 20px;
    width: 80%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
  }

  @keyframes modalSlideIn {
    from {
      opacity: 0;
      transform: translateY(-50px) scale(0.9);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .close {
    color: #f39c12;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    transition: all 0.3s ease;
  }

  .close:hover,
  .close:focus {
    color: #e74c3c;
    transform: scale(1.2);
  }

  #result {
    margin-top: 20px;
    font-size: 1.2em;
    color: #ecf0f1;
    text-align: center;
    line-height: 1.6;
  }

  #result ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }

  #result li {
    margin: 10px 0;
  }

  #result a {
    color: #f39c12;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #f39c12;
    border-radius: 10px;
    display: inline-block;
    transition: all 0.3s ease;
    background: rgba(243, 156, 18, 0.1);
  }

  #result a:hover {
    background: #f39c12;
    color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
  }

  /* Модальное окно покупки */
  .purchase-modal {
    max-width: 400px;
    text-align: center;
  }

  .buy-button {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    color: white;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .buy-button:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
  }

  .buy-button:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(243, 156, 18, 0.3);
  }
  