 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
font-family: 'Montserrat', sans-serif;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;

    background-image: url('https://cs2api.store/images/2e7f6c7a-b54a-48e1-ac3a-79e81b0606e2.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed; /* фон закреплен при прокрутке */
    margin: 0; /* убираем отступы */
    height: 100vh; /* чтобы тело занимало весь экран */

    }
    header {
      padding: 2.5rem 2rem;
      text-align: center;
      background: linear-gradient(to right, #1f1f1f, #3a3a3a);
      animation: fadeInDown 1.2s ease-out;
    }
    header h1 {
      font-size: 3rem;
      font-weight: 800;
      background: linear-gradient(to right, #00ffe7, #a700ff);
      -webkit-background-clip: text;
      color: transparent;
      animation: pulse 3s infinite;
    }
    section {
      padding: 3rem 2rem;
      max-width: 1000px;
      margin: 0 auto;
      animation: fadeInUp 1s ease;
    }
    .block {
      margin-bottom: 2rem;
      padding: 1.5rem;
      background: #1a1a1a;
      border-radius: 12px;
      box-shadow: 0 0 25px rgba(0, 255, 255, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: fadeInUp 0.8s ease forwards;
      opacity: 0;
    }
    .block:hover {
      transform: scale(1.03);
      box-shadow: 0 0 35px rgba(0, 255, 255, 0.2);
    }
    .block:nth-child(n) {
      animation-delay: calc(0.1s * var(--i));
    }
    h2 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      color: #00ffe7;
    }
    ul {
      margin-left: 1.2rem;
    }
    ul li {
      margin-bottom: 0.5rem;
    }
    .team {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
      margin-top: 2rem;
    }
    .member {
      background: #2a2a2a;
      padding: 1.5rem;
      border-radius: 10px;
      text-align: center;
      width: 220px;
      transition: transform 0.3s ease;
    }
    .member:hover {
      transform: scale(1.05);
    }
    .member img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin-bottom: 0.8rem;
      border: 3px solid #00ffe7;
    }
    .member h3 {
      color: #00ffe7;
      margin-bottom: 0.3rem;
      font-size: 1.1rem;
    }
    .member p {
      color: #ccc;
      font-size: 0.9rem;
    }
    footer {
      padding: 2rem;
      text-align: center;
      background: #111;
      color: #999;
      font-size: 0.95rem;
      animation: fadeInUp 1s ease;
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInDown {
      0% { opacity: 0; transform: translateY(-30px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse {
      0% { text-shadow: 0 0 10px #a700ff; }
      50% { text-shadow: 0 0 25px #00ffe7; }
      100% { text-shadow: 0 0 10px #a700ff; }
    }
	.slider {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  margin-top: 1rem;
}

.slides {
  display: flex;
  transition: transform 0.8s ease-in-out;
  width: 300%;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 12px;
}

.slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #00ffe7;
  font-size: 2rem;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  z-index: 2;
  border-radius: 8px;
  transition: background 0.3s;
}
.slider button:hover {
  background: rgba(0, 0, 0, 0.7);
}
.prev {
  left: 10px;
}
.next {
  right: 10px;
}
 /* Верхнее меню */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #1c1c1c;
      padding: 15px 30px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }

    .navbar a {
      color: white;
      text-decoration: none;
      margin: 0 15px;
      font-size: 18px;
      position: relative;
      transition: color 0.3s ease;
    }

    .navbar a:hover {
      color: #00bcd4;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-content {
      display: none;
      /*position: static;*/
      background-color: #222;
      top: 40px;
      right: 0;
      min-width: 160px;
      z-index: 1;
      border-radius: 6px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }

    .dropdown-content a {
      display: block;
      padding: 12px 16px;
      color: white;
      text-decoration: none;
    }

    .dropdown-content a:hover {
      background-color: #333;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    /* Формы */
    .form-container {
      display: none;
      max-width: 400px;
      margin: 40px auto;
      background: #1e1e1e;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0,255,255,0.2);
    }

    .form-container h2 {
      margin-bottom: 20px;
      color: #00bcd4;
      text-align: center;
    }

    .form-container input {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      background: #2b2b2b;
      border: none;
      border-radius: 6px;
      color: #fff;
      font-size: 16px;
    }

    .form-container button {
      width: 100%;
      padding: 12px;
      background-color: #00bcd4;
      border: none;
      border-radius: 6px;
      color: white;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .form-container button:hover {
      background-color: #0097a7;
    }

    @media (max-width: 600px) {
      .navbar {
        flex-direction: column;
        align-items: flex-start;
      }
      .navbar a {
        margin: 10px 0;
      }
      .dropdown-content {
        right: auto;
        left: 0;
      }
    }
.container {
max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
	margin-top: 7px;
    align-content: center;
  }

.card {
    background: #1c1c1c;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    flex: 0 1 calc(33.333% - 40px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 280px;
  }

  h2, h3 {
    margin: 0;
    color: #fff;
	font-size: 1.1rem;
  }

  p, label {
    color: #ccc;
    font-size: 15px;
  }

  input {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #2d2d2d;
    color: #fff;
    width: 100%;
    margin-bottom: 10px;
    font-size: 14px;
  }

  button, .buy-btn, .recharge-btn, .install-btn, #checkUpdateBtn, #installUpdateBtn, #connectProtectionBtn {
    background: #1da1f2;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  button:hover {
    background: #0d8cd4;
  }

  .logout {
    text-decoration: none;
    color: #f44336;
    font-weight: bold;
    align-self: flex-start;
    margin-top: 5px;
  }

  code {
    background: #2a2a2a;
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-block;
    color: #ffd700;
  }

  .download-btn {
    background: #4caf50;
    padding: 10px;
    border-radius: 6px;
    display: inline-block;
    color: white;
    text-decoration: none;
  }

  .download-btn:hover {
    background: #3e8e41;
  }

  #rechargeModal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  #rechargeModal > div {
    background: #262626;
    padding: 25px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    position: relative;
    color: #fff;
  }

  #closeModal {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
  }

  #updateStatus {
    color: #ffd700;
    font-weight: 500;
  }

  #protectionStatus {
    color: #4caf50;
    font-weight: bold;
    display: none;
  }

  #terminal {
    background: #000;
    color: #0f0;
    font-family: monospace;
    padding: 10px;
    height: 200px;
    overflow-y: auto;
    border-radius: 6px;
  }

.logout1 {
  display: inline-block;
  margin-top: 10px;
  color: #f85149;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.logout:hover {
  color: #ff7b72;
}

.install-btn[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
}
