    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: url('images/hero2.jpg') no-repeat center center fixed;
      background-size: cover;
      color: #fff;
      position: relative;
    }

    .overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom right, rgba(20, 20, 20, 0.85), rgba(40, 40, 40, 0.95));
      z-index: -1;
    }

    header {
      text-align: center;
      padding: 60px 20px 30px;
    }

    header h1 {
      font-size: 3em;
      margin: 20px 0 10px;
      background: linear-gradient(to right, #f39c12, #e67e22);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    header p {
      font-size: 1.2em;
      color: #ddd;
      max-width: 700px;
      margin: 0 auto;
    }

    .section {
      max-width: 900px;
      margin: 40px auto;
      padding: 30px;
      background: rgba(30, 30, 30, 0.95);
      border-radius: 20px;
      backdrop-filter: blur(12px);
      box-shadow: 0 0 35px rgba(0,0,0,0.4);
    }

    .section h2 {
      color: #f39c12;
      margin-bottom: 20px;
      font-size: 1.9em;
      border-bottom: 1px solid #555;
      padding-bottom: 10px;
    }

    ul {
      list-style: none;
      padding: 0;
    }

    ul li {
      padding: 10px 0;
      border-bottom: 1px solid #444;
      color: #ccc;
    }

    .download-links {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .download-links a {
      width: 120px;
      height: 120px;
      border-radius: 15px;
      overflow: hidden;
      background: #1e1e1e;
      position: relative;
      z-index: 0;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .download-links a::before {
      content: '';
      position: absolute;
      top: -3px;
      left: -3px;
      right: -3px;
      bottom: -3px;
      border-radius: 18px;
      z-index: -1;
      opacity: 0.8;
    }

    .download-links a.google::before {
      background: linear-gradient(45deg, #34a853, #0f9d58, #34a853);
      animation: glowing-border-google 3s linear infinite;
    }

    .download-links a.yandex::before {
      background: linear-gradient(45deg, #ffcc00, #ff6600, #ffcc00);
      animation: glowing-border-yandex 3s linear infinite;
    }

    .download-links a.mega::before {
      background: linear-gradient(45deg, #d9323e, #ff006e, #d9323e);
      animation: glowing-border-mega 3s linear infinite;
    }

    @keyframes glowing-border-google {
      0% { filter: hue-rotate(0deg); }
      100% { filter: hue-rotate(360deg); }
    }

    @keyframes glowing-border-yandex {
      0% { filter: hue-rotate(0deg); }
      100% { filter: hue-rotate(360deg); }
    }

    @keyframes glowing-border-mega {
      0% { filter: hue-rotate(0deg); }
      100% { filter: hue-rotate(360deg); }
    }

    .download-links a:hover {
      transform: scale(1.1);
      box-shadow: 0 0 25px #f39c12;
    }

    .download-links img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .instructions {
      display: grid;
      gap: 15px;
      margin-top: 20px;
    }

    .step {
      background: rgba(255, 255, 255, 0.04);
      padding: 15px;
      border-radius: 12px;
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .step-number {
      background-color: #f39c12;
      color: #000;
      font-weight: bold;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      text-align: center;
      line-height: 32px;
      flex-shrink: 0;
      font-size: 1em;
    }

    .step-text {
      flex-grow: 1;
      font-size: 1.05em;
      line-height: 1.6;
    }

    .exe-image {
      display: block;
      margin: 25px auto;
      max-width: 680px;
      border-radius: 12px;
      box-shadow: 0 0 18px rgba(255, 255, 255, 0.1);
    }

    .buttons {
      text-align: center;
      margin-top: 30px;
    }

    .btn {
      display: inline-block;
      margin: 10px;
      padding: 14px 28px;
      font-size: 1.1em;
      color: white;
      background: linear-gradient(to right, #e67e22, #f39c12);
      border: none;
      border-radius: 14px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 0 14px rgba(255, 165, 0, 0.35);
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 30px rgba(255, 165, 0, 0.65);
    }

    @media (max-width: 600px) {
      header h1 {
        font-size: 2em;
      }

      header p {
        font-size: 1em;
      }

      .step {
        flex-direction: column;
        align-items: flex-start;
      }

      .download-links a {
        width: 90px;
        height: 90px;
      }
    }

    .floating-logo {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
      max-width: 100px;
      padding: 5px;
      animation: glowPulse 2s infinite ease-in-out;
    }

    .floating-logo img {
      max-width: 100%;
      height: auto;
      animation: rotate 12s linear infinite;
      filter: drop-shadow(0 0 15px #f39c12);
    }

    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @keyframes glowPulse {
      0% { filter: drop-shadow(0 0 5px #f39c12); }
      50% { filter: drop-shadow(0 0 20px #f39c12); }
      100% { filter: drop-shadow(0 0 5px #f39c12); }
    }

/* остальной код остался без изменений, дай знать если что-то ещё улучшить! */

	
	
	.requirements-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.requirement-box {
  flex: 1 1 400px;
  background: rgba(40, 40, 40, 0.85);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.requirement-box h3 {
  color: #f39c12;
  margin-bottom: 10px;
  font-size: 1.4em;
}

.requirement-box p {
  font-size: 0.95em;
  color: #ccc;
  margin-bottom: 10px;
}

.inline-downloads {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.inline-downloads a {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  background: #1e1e1e;
  position: relative;
}

.inline-downloads img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.driversBlock {
    display: flex;
    margin-bottom: 30px
}

.stepText {
    color: #fff;
    margin: 12px 0;
    font-size: 11pt
}

.driverName {
    font-size: 14pt;
    font-weight: 700
}

.driverDesc, .modalText {
    color: #fff;
    font-size: 10pt
}

.startBlock .onlyBorder {
    height: 48px;
}

.startBlock .button:nth-child(2n) {
    margin-left: 10px;
}

.driverIcon {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 12px;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}



.btn-driver {
  display: inline-block;
  margin: 6px 5px;
  padding: 10px 18px;
  background-color: #f5c518;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-driver:hover {
  background-color: #e0b600;
  color: #000;
}

.driverElement, .startStep {
    position: relative;
    width: calc(48% - 30px);
    margin: 10px 1%;
    padding: 15px
}

    .driverElement .bigBorder, .startStep .bigBorder {
        z-index: -1
    }

/* === Общий стиль блока с драйверами === */
.driversBlock {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 40px 20px;
  background-color: #121212;
}

/* === Элемент драйвера === */
.driverElement {
  background: #1e1e1e;
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 24px;
  width: 300px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.driverElement:hover {
  transform: translateY(-6px);
}

/* === Иконки драйверов === */
.driverIcon {
  width: 48px;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 14px;
}

/* Пример путей к иконкам — подкорректируй под свои файлы */
.driverIcon.directx    { background-image: url('images/icons/directx.png'); }
.driverIcon.nvidia     { background-image: url('images/icons/nvidia.png'); }
.driverIcon.amd        { background-image: url('images/icons/amd.png'); }
.driverIcon.mscpp      { background-image: url('images/icons/vcredist.png'); }
.driverIcon.dotnet     { background-image: url('images/icons/dotnet.png'); }
.driverIcon.winrar     { background-image: url('images/icons/winrar.png'); }
.driverIcon.zip    { background-image: url('images/icons/zip.png'); }

/* Название драйвера */
.driverName {
  font-size: 1.3em;
  font-weight: 600;
  color: #f5c518;
  margin-bottom: 12px;
}

/* Текст описания */
.driverDesc p {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 10px;
}

/* Кнопка */
/* === Стиль кнопок для драйверов (WinRar и 7-Zip) === */
.btn-driver {
    display: inline-block;
    margin: 6px 6px 0 0;
    padding: 10px 16px;
    background: linear-gradient(145deg, #f5c518, #e0b600);
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-driver:hover {
    background: #ffe168;
    transform: scale(1.05);
}

/* === Светящиеся рамки по типу === */
.driverElement:hover .driverIcon.directx  { box-shadow: 0 0 15px #00ff99; }
.driverElement:hover .driverIcon.nvidia   { box-shadow: 0 0 15px #00ff66; }
.driverElement:hover .driverIcon.amd      { box-shadow: 0 0 15px #ff4444; }
.driverElement:hover .driverIcon.mscpp    { box-shadow: 0 0 15px #6699ff; }
.driverElement:hover .driverIcon.dotnet   { box-shadow: 0 0 15px #9933ff; }
.driverElement:hover .driverIcon.winrar  { box-shadow: 0 0 15px #ff3399; }
.driverElement:hover .driverIcon.zip    { box-shadow: 0 0 15px #66ccff; }

/* === Адаптив === */
@media screen and (max-width: 768px) {
  .driverElement {
    width: 90%;
  }

  .btn-driver {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}

.driverElement {
  animation: fadeUp 0.6s ease both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-register-inline {
  display: inline-block;
  margin-left: 10px;
  padding: 4px 12px;
  background-color: #ffcc00;
  color: #000;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-register-inline:hover {
  background-color: #e6b800;
}

/* 🌟 UI Enhancements Patch by ChatGPT */

/* 1. Общая плавность для transform, цветовых и теневых эффектов */
* {
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* 2. Улучшенная читаемость текста в секциях */
.section {
  line-height: 1.65;
  font-size: 1.05em;
  letter-spacing: 0.3px;
}

/* 3. Анимация появления элементов */
.section,
.section h2,
.requirement-box,
.driverElement {
  animation: fadeInUp 0.6s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 4. Ховер-эффект на секции и блоки требований */
.section:hover,
.requirement-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.07);
}

/* 5. Подсветка фокуса кнопок */
.btn:focus,
.btn-driver:focus {
  outline: 2px solid #f39c12;
  outline-offset: 3px;
}

/* 6. Градиентный текст у важных заголовков */
.driverName,
.requirement-box h3 {
  background: linear-gradient(to right, #f5c518, #ffec85);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 7. Мобильные правки — чуть меньше отступов и текста */
@media screen and (max-width: 480px) {
  .section {
    padding: 20px;
  }

  .driverName {
    font-size: 1.1em;
  }

  .step-text {
    font-size: 0.95em;
  }
}
