  * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      background: #000800;
      font-family: 'Arial', sans-serif;
      color: #fff;
      min-height: 100vh;
      overflow-x: hidden;
    }
.logo_link{
  font-family: 'Arial', sans-serif;
    position: absolute;
    font-weight: 900;
    top: -117px;
    left: 20px;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
}
    body::before {
      content: '';
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(30, 80, 10, 0.45) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    header {
      position: relative;
      z-index: 10;
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
      padding: 18px 32px 0;
      gap: 40px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: radial-gradient(circle, #3a5a2a 0%, #1a2e12 100%);
      border: 2px solid #4a7a2a;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: 900;
      color: #c8e060;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .logo-text .top {
      font-size: 20px;
      font-weight: 900;
      color: #c8e060;
      letter-spacing: 1px;
    }

    .logo-text .bottom {
      font-size: 13px;
      font-weight: 700;
      color: #8ab040;
      letter-spacing: 4px;
      text-transform: uppercase;
    }

    .promo-section {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-top: 4px;
    }

    .reg-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #7ddf40;
      color: #0a1a06;
      font-size: 18px;
      font-weight: 800;
      padding: 14px 36px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      margin-top: 18px;
      transition: background 0.2s, transform 0.15s;
      letter-spacing: 0.3px;
    }

    .reg-btn:hover {
      background: #8ef050;
      transform: translateY(-2px);
    }

    .steam-icon {
      width: 26px;
      height: 26px;
      fill: #0a1a06;
    }

    .hero-section {
      position: relative;
      z-index: 5;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      margin-top: -20px;
      padding: 0 20px;
      min-height: 420px;
    }

    .hero-main {
      position: relative;
      z-index: 6;
      width: 420px;
      margin-bottom: -30px;
      filter: drop-shadow(0 20px 60px rgba(0,0,0,0.8));
    }

    .hero-side {
         position: absolute;
        right: calc(53% - 605px);
    bottom: -100px;
    width: 514px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6));
    }
    .left-content {
          position: absolute;
    left: 119px;
    top: 259px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    }

    .left-heading {
      font-size: 42px;
      font-weight: 900;
      color: #fff;
      line-height: 1.15;
      letter-spacing: -0.5px;
      margin-bottom: 22px;
      max-width: 340px;
      text-shadow: 0 2px 18px rgba(0,0,0,0.7);
    }

    .promo-startbonus {
      display: flex;
    gap: 20px;
      align-items: flex-start;
      margin-top: 16px;
    }

    .startbonus-row {
      display: flex;
      align-items: center;
      gap: 10px;
      border: 1.5px dashed #7ddf40;
      border-radius: 8px;
      padding: 8px 14px;
    }

    .startbonus-code {
      font-size: 15px;
      font-weight: 900;
      color: #fff;
      letter-spacing: 1.5px;
    }

    .social-icons {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: 4px;
    }

    .social-icon {
      width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .social-icon svg {
      width: 22px;
      height: 22px;
    }

    .startbonus-sub {
      margin-top: 6px;
      margin-left: 4px;
    }

    .startbonus-sub .sub-label {
      font-size: 12px;
      color: #aaa;
    }

    .startbonus-sub .sub-value {
      font-size: 20px;
      font-weight: 900;
      color: #7ddf40;
      line-height: 1;
    }

    .promo-arrow-svg {
      position: absolute;
    top: -133px;
    left: -101px;
    width: 140px;
    height: 274px;
    pointer-events: none;
    z-index: 5;
    overflow: visible;
    }

    .cards-section {
      position: relative;
      z-index: 10;
      display: flex;
      justify-content: center;
      gap: 16px;
      padding: 0 24px 40px;
      flex-wrap: wrap;
    }

    .card {
      position: relative;
      width: 300px;
      height: 340px;
      border-radius: 14px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    }

    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .card-overlay {
      position: absolute;
      top: 0; left: 0; right: 0;
      padding: 14px 16px;
      background: linear-gradient(180deg, rgba(0,0,0,0.72) 0%, transparent 100%);
    }

    .card-title {
      font-size: 22px;
      font-weight: 800;
      line-height: 1.3;
      color: #fff;
      text-shadow: 0 2px 6px rgba(0,0,0,0.9);
    }

    .card-1 .card-overlay { background: linear-gradient(180deg, rgba(100,10,10,0.8) 0%, transparent 100%); }
    .card-2 .card-overlay { background: linear-gradient(180deg, rgba(10,80,10,0.85) 0%, transparent 100%); }
    .card-3 .card-overlay { background: linear-gradient(180deg, rgba(40,10,80,0.85) 0%, transparent 100%); }

    .card-c4-bg {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #1a0a3a 0%, #2a0a50 40%, #3a1060 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .c4-bomb {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .c4-device {
      width: 140px;
      height: 120px;
      background: #1a1a1a;
      border-radius: 16px;
      border: 3px solid #333;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 30px rgba(255,80,80,0.4), inset 0 0 20px rgba(0,0,0,0.5);
      position: relative;
    }

    .c4-screen {
      background: #000;
      border: 2px solid #444;
      border-radius: 8px;
      padding: 8px 16px;
      font-family: 'Courier New', monospace;
      font-size: 32px;
      font-weight: 900;
      color: #ff4444;
      text-shadow: 0 0 10px #ff4444;
      letter-spacing: 3px;
      margin-bottom: 8px;
    }

    .c4-wires {
      display: flex;
      gap: 6px;
    }

    .wire {
      width: 28px;
      height: 6px;
      border-radius: 3px;
    }

    .wire-red   { background: #e03030; box-shadow: 0 0 6px #e03030; }
    .wire-green { background: #30e030; box-shadow: 0 0 6px #30e030; }
    .wire-blue  { background: #3060e0; box-shadow: 0 0 6px #3060e0; }
    .wire-yellow{ background: #e0d030; box-shadow: 0 0 6px #e0d030; }

    .page-wrapper {
      position: relative;
      max-width: 1100px;
      margin: 0 auto;
    }
    @media (max-width: 865px) {
      .hero-side { display: none; }
    }