    <style>
        /* Reset & базовые настройки — высокая производительность */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
            background: linear-gradient(125deg, #f0f9ff 0%, #e6f0fa 100%);
            color: #0a2540;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        /* контейнер с ограничением ширины для CLS контроля */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
        }

        /* карточка основного контента (белая, легкая тень) */
        .article-card {
            background: #ffffff;
            border-radius: 2rem;
            box-shadow: 0 12px 30px rgba(0, 60, 110, 0.08);
            overflow: hidden;
            transition: box-shadow 0.2s ease;
        }

        /* хедер с волновой графикой */
        .hero {
            background: linear-gradient(135deg, #1e4a76 0%, #2c6e9e 100%);
            padding: 2.5rem 2rem;
            color: white;
            border-bottom-left-radius: 1.8rem;
            border-bottom-right-radius: 1.8rem;
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(to right, #ffffff, #caf0ff);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 0.75rem;
        }

        .hero-tag {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-top: 0.5rem;
        }

        .content-body {
            padding: 2rem 2rem 1.8rem;
        }

        .stat-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            justify-content: space-between;
            margin-bottom: 2rem;
        }

        .stat-item {
            background: #f0f7fe;
            border-radius: 1.5rem;
            padding: 1rem 1.3rem;
            flex: 1;
            min-width: 140px;
            text-align: center;
            border: 1px solid #cbe4fe;
        }

        .stat-number {
            font-size: 1.9rem;
            font-weight: 800;
            color: #1e5a8a;
        }

        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 1.6rem 0 1rem 0;
            color: #0c4a6e;
            border-left: 5px solid #2c9cd4;
            padding-left: 1rem;
        }

        h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin: 1.2rem 0 0.5rem 0;
            color: #1e5a8a;
        }

        p {
            margin-bottom: 1rem;
            color: #1f3a4c;
            font-weight: 400;
        }

        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 0.9rem;
            margin: 1.8rem 0;
        }

        .link-list a {
            background: #f5faff;
            padding: 0.85rem 1.2rem;
            border-radius: 1.2rem;
            text-decoration: none;
            color: #0b4f6c;
            font-weight: 500;
            transition: all 0.2s;
            border: 1px solid #d9eaff;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }

        .link-list a:hover {
            background: #e3f0fc;
            border-color: #80c0e8;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px -8px rgba(0,90,130,0.2);
        }

        .badge-blue {
            background: #d4e9ff;
            border-radius: 50px;
            padding: 0.2rem 0.8rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: #005c99;
        }

        .bonus-block {
            background: linear-gradient(120deg, #eef5ff, #ffffff);
            border-radius: 1.4rem;
            padding: 1.2rem 1.5rem;
            margin: 1.5rem 0;
            border-left: 6px solid #35b0e8;
        }

        footer {
            margin-top: 2rem;
            text-align: center;
            font-size: 0.8rem;
            color: #3b6e9f;
            border-top: 1px solid #cfe2f2;
            padding-top: 1.5rem;
        }

        @media (max-width: 680px) {
            .container {
                padding: 1rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .content-body {
                padding: 1.5rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }

        /* оптимизация анимаций для Core Web Vitals */
        .link-list a, .stat-item {
            will-change: transform;
        }
    .bodas {
      background: linear-gradient(145deg, #0a0f1e 0%, #0c1222 100%);
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: 'Segoe UI', 'Poppins', 'Inter', system-ui, -apple-system, 'Roboto', sans-serif;
      padding: 1.5rem;
    }

    /* контейнер для карточек с кнопками */
    .buttons-showcase {
      max-width: 1000px;
      width: 100%;
      background: rgba(15, 25, 45, 0.55);
      backdrop-filter: blur(3px);
      border-radius: 4rem;
      padding: 2.5rem 2rem;
      box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .bodas h2 {
      text-align: center;
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: -0.3px;
      background: linear-gradient(135deg, #FFF5E0, #FFD89A);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 0.5rem;
      text-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .sub {
      text-align: center;
      color: #b9c7dd;
      margin-bottom: 2.5rem;
      font-weight: 500;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
      border-bottom: 1px dashed rgba(255,200,100,0.4);
      display: inline-block;
      width: auto;
      margin-left: auto;
      margin-right: auto;
      padding-bottom: 6px;
    }

    /* грид сетка для кнопок */
    .button-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      align-items: center;
      margin: 2rem 0 1rem;
    }

    /* база для каждой кнопки */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-weight: 800;
      font-size: 1.35rem;
      font-family: inherit;
      padding: 1rem 2.2rem;
      border: none;
      border-radius: 60px;
      cursor: pointer;
      transition: all 0.25s cubic-bezier(0.2, 1.2, 0.4, 1);
      text-decoration: none;
      background: none;
      letter-spacing: 1px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 12px 20px -10px rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(2px);
    }

    /* эффект пульсации при наведении у ярких кнопок */
    .btn::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0%;
      height: 0%;
      background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 80%);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.4s ease-out, height 0.4s ease-out;
      pointer-events: none;
    }

    .btn:hover::after {
      width: 200%;
      height: 200%;
    }

    /* активный клик */
    .btn:active {
      transform: scale(0.94);
      filter: brightness(1.05);
      transition: 0.05s linear;
    }

    /* Кнопка РЕГИСТРАЦИЯ – неоновая розово-оранжевая */
    .btn-register {
      background: linear-gradient(125deg, #FF2D75, #FF7A2F);
      color: white;
      text-shadow: 0 1px 2px rgba(0,0,0,0.3);
      box-shadow: 0 0 12px #FF4D6D, 0 12px 25px -8px #c41e3a;
      border: 1px solid rgba(255, 215, 170, 0.7);
    }

    .btn-register:hover {
      background: linear-gradient(125deg, #FF477E, #FF8E42);
      box-shadow: 0 0 22px #FF6B8B, 0 14px 28px -8px #b11f3c;
      transform: translateY(-3px) scale(1.02);
    }

    /* Кнопка ПЕРЕЙТИ – электрик-голубая с фиолетовым акцентом */
    .btn-go {
      background: linear-gradient(105deg, #0B8CFF, #6C3BFF);
      color: white;
      text-shadow: 0 1px 1px rgba(0,0,0,0.2);
      box-shadow: 0 0 14px #2E7DFF, 0 12px 20px -8px #1f2f6b;
      border: 1px solid rgba(180, 220, 255, 0.6);
    }

    .btn-go:hover {
      background: linear-gradient(105deg, #2E9CFF, #8255FF);
      box-shadow: 0 0 24px #4A8EFF, 0 14px 26px -8px #142566;
      transform: translateY(-3px) scale(1.02);
    }

    /* Кнопка ЗДЕСЬ - СТАРТ (со вспышкой) */
    .btn-start {
      background: radial-gradient(circle at 30% 10%, #F9E45B, #F4A261);
      color: #1F2A3A;
      text-shadow: 0 1px 2px rgba(255,235,120,0.8);
      font-weight: 900;
      box-shadow: 0 0 18px #FFC107, 0 12px 20px -7px #c5731a;
      border: 1px solid #FFF0A3;
    }

    .btn-start:hover {
      background: radial-gradient(circle at 30% 10%, #FFEF7A, #FFB347);
      box-shadow: 0 0 32px #FFD966, 0 16px 30px -8px #ac5f17;
      transform: translateY(-3px) scale(1.02);
    }

    /* дополнительная вызывающая кнопка – МГНОВЕННЫЙ СТАРТ (вариант с неоном) */
    .btn-flash {
      background: linear-gradient(145deg, #00F2FE, #4FACFE);
      color: #0A0F2A;
      font-weight: 800;
      text-shadow: 0 0 3px white;
      box-shadow: 0 0 20px #0AEFFF, 0 10px 24px -6px #0080b0;
      border: 1px solid rgba(255,255,210,0.8);
    }

    .btn-flash:hover {
      background: linear-gradient(145deg, #37F5FF, #6BBEFF);
      box-shadow: 0 0 32px #32F5FF, 0 12px 28px -6px #006688;
      transform: translateY(-3px) scale(1.02);
    }

    /* кнопка ДЕЙСТВОВАТЬ (для дополнительного вызова) */
    .btn-action {
      background: linear-gradient(95deg, #FF3C82, #F85E00);
      color: white;
      font-size: 1.25rem;
      box-shadow: 0 0 16px #ff3366, 0 10px 24px -8px #a12200;
      border: 1px solid #ffbf96;
    }

    .btn-action:hover {
      background: linear-gradient(95deg, #FF5C9A, #FF7840);
      box-shadow: 0 0 28px #FF5377, 0 14px 28px -8px #932f00;
      transform: translateY(-3px);
    }

    /* варианты иконок через эмодзи / символы */
    .btn i.emoji {
      font-style: normal;
      font-size: 1.4rem;
      filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
    }

    /* специальные дополнительные строки */
    .row-flex {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      margin: 2rem 0 1rem;
    }

    /* описательный текст под кнопками */
    .info-note {
      text-align: center;
      margin-top: 2.8rem;
      font-size: 0.85rem;
      color: #8d9cc0;
      background: rgba(0,0,0,0.25);
      padding: 0.7rem;
      border-radius: 50px;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
      backdrop-filter: blur(5px);
      font-weight: 500;
    }

    .glow-text {
      display: inline-block;
      margin: 0 4px;
      animation: subtlePulse 1.8s infinite;
    }

    @keyframes subtlePulse {
      0% { text-shadow: 0 0 0px #ffb347; }
      70% { text-shadow: 0 0 3px #ffb347; }
      100% { text-shadow: 0 0 0px #ffb347; }
    }

    /* для мобильности кнопки не ломаются */
    @media (max-width: 680px) {
      .buttons-showcase {
        padding: 1.8rem 1rem;
      }
      .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1.1rem;
      }
      .button-grid {
        gap: 1.2rem;
      }
      .btn i.emoji {
        font-size: 1.2rem;
      }
    }

    /* анимация "внимание" для стартовой кнопки */
    @keyframes ringPulse {
      0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.6);
      }
      70% {
        box-shadow: 0 0 0 12px rgba(255, 193, 7, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
      }
    }

    .btn-start {
      animation: ringPulse 1.2s infinite ease-out;
    }

    .btn-start:hover {
      animation: none;
    }

    /* дополнительная кнопка «Погнали!» с электрик-лайм */
    .btn-letzgo {
      background: linear-gradient(125deg, #A5F82E, #6FD908);
      color: #0f2815;
      font-weight: 800;
      text-shadow: 0 1px 1px #ccff99;
      box-shadow: 0 0 20px #B9FF4B, 0 12px 20px -8px #3d7a0a;
      border: none;
    }

    .btn-letzgo:hover {
      background: linear-gradient(125deg, #C1FF5E, #8AFF1A);
      box-shadow: 0 0 36px #CCFF66, 0 14px 28px -7px #569e16;
      transform: translateY(-3px);
    }

    /* разделитель заголовков */
    .section-title {
      font-size: 1.2rem;
      margin: 1.5rem 0 0.8rem 0;
      color: #ffde9e;
      text-align: center;
      font-weight: 600;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .section-title span {
      background: rgba(255,210,90,0.2);
      padding: 0 12px;
      border-radius: 40px;
    }		
    </style>