    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html,
    body {
      height: 100%;
    }

    body {
      background: #0b1320;
      color: #eaf3ff;
      font: 16px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .page-wrap {
      min-height: 100%;
      display: flex;
      flex-direction: column;
    }

    .container {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 16px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 10;
      background: #162332;
      border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .site-header-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding:15px;
      flex-flow:column;
    }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .brand-logo img {
      width: 132px;
      height: 32px;
      object-fit: contain;
      filter: drop-shadow(0 0 10px rgba(124, 97, 255, .35));
    }


    .header-buttons {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-flow:column;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      border-radius: 999px;
      font-weight: 900;
      letter-spacing: .2px;
      transition: .2s;
      font-size:13px;
    }

    .btn-outline {
      border: 2px solid rgba(255, 255, 255, .35);
      background: rgba(255, 255, 255, .06);
    }

    .btn-outline:hover {
      transform: translateY(-1px);
      box-shadow: 0 0 18px rgba(255, 255, 255, .18);
    }

    .btn-accent {
      background: linear-gradient(90deg, #c7ff00 0%, #9dff42 100%);
      color: #07131d;
      box-shadow: 0 12px 26px rgba(199, 255, 0, .28);
    }

    .btn-accent:hover {
      transform: translateY(-1px);
      filter: saturate(1.12);
    }

    .promo-banner {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .06);
    }

    .promo-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, .20), rgba(0, 0, 0, .55)),
        center / cover no-repeat;
      z-index: 0;
      filter: saturate(1.05) brightness(1.06);
    }

    .promo-banner::after {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 36%;
      background:
        linear-gradient(135deg, rgba(255, 122, 0, .25), rgba(123, 97, 255, .25)),
        linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .25));
      mask: linear-gradient(75deg, transparent 18%, #000 18% 100%);
      -webkit-mask: linear-gradient(75deg, transparent 18%, #000 18% 100%);
      pointer-events: none;
      z-index: 1;
    }

    .promo-content {
      max-width: 1200px;
      margin: 0 absolute;
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      gap: 16px;
      min-height: 340px;
      padding: 52px 16px 60px;
    }

    .promo-corner {
      position: absolute;
      width: 40px;
      height: 40px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .02));
      border: 1px solid rgba(255, 255, 255, .14);
      backdrop-filter: blur(2px);
      z-index: 1;
    }

    .corner-tl {
      left: 10px;
      top: 10px;
    }

    .corner-tr {
      right: 10px;
      top: 10px;
    }

    .corner-bl {
      left: 10px;
      bottom: 10px;
    }

    .corner-br {
      right: 10px;
      bottom: 10px;
    }

    .promo-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      color: #c7ff00;
      background: rgba(199, 255, 0, .22);
      border: 1px solid rgba(199, 255, 0, .52);
      font-weight: 900;
      letter-spacing: .3px;
    }

    .promo-title {
      font-weight: 900;
      max-width: 500px;
      font-size: 30px;
      letter-spacing: .2px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, .25);
    }

    .promo-text {
      opacity: .95;
      font-size: 18px;
      max-width: 720px;
    }

    .promo-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px;
      margin-top: 6px;
    }

    .promo-note {
      font-size: 14px;
      opacity: .9;
    }
    .promo-chip{
    margin-left:10px;
    }
    .promo-chip a{
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .14);
    }

    .promo-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ff7a00;
      box-shadow: 0 0 0 2px rgba(255, 122, 0, .28);
    }

    .content-section {
      padding: 24px 0;
      border-top: 1px solid rgba(255, 255, 255, .06);
      background: #121b2b;
      min-height: 80px;
    }

    .site-footer {
      margin-top: auto;
      background:
        radial-gradient(900px 180px at 20% 0%, rgba(123, 97, 255, .10), transparent 60%),
        radial-gradient(700px 160px at 85% 0%, rgba(255, 122, 0, .10), transparent 60%),
        linear-gradient(180deg, #101b2a 0%, #0b1420 100%);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
    }

    .footer-inner {
      padding: 28px 0;
      display: flex;
      flex-direction: column;
      gap: 18px;
      align-items: stretch;
    }

    .footer-meta a{
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: #cfd8e6;
      font-size: 14px;
      opacity: .95;
    }

    .bottom-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }


    @media (min-width: 760px) {
      .footer-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
      }

      .bottom-links:first-of-type {
        justify-content: flex-start;
      }

      .footer-meta {
        justify-content: center;
      }

      .bottom-links:last-of-type {
        justify-content: flex-end;
      }
    }


    .bottom-links a {
      display: inline-flex;
      align-items: center;
      font-weight: 700;
      border: 0;
      background: transparent;
      color: #eaf1ff;
      padding: 0;
      border-radius: 0;
      transition: all .2s ease;
    }


    .bottom-links:first-of-type a:nth-child(1) {

      padding: 12px 22px;
      border-radius: 999px;
      background: linear-gradient(90deg, #c7ff00 0%, #9dff42 100%);
      color: #07131d;
      box-shadow: 0 10px 22px rgba(199, 255, 0, .28);
    }

    .bottom-links:first-of-type a:nth-child(1):hover {
      transform: translateY(-1px);
      filter: saturate(1.1);
    }

    .bottom-links:first-of-type a:nth-child(2) {

      padding: 11px 20px;
      border-radius: 999px;
      border: 2px solid rgba(255, 255, 255, .28);
      background: rgba(255, 255, 255, .05);
      color: #eaf3ff;
    }

    .bottom-links:first-of-type a:nth-child(2):hover {
      box-shadow: 0 0 14px rgba(255, 255, 255, .16);
      transform: translateY(-1px);
    }


    .bottom-links:last-of-type a {

      padding: 6px 0;
      border-radius: 6px;
      color: #cfe0ff;
      font-weight: 600;
      opacity: .9;
    }

    .bottom-links:last-of-type a:hover {
      opacity: 1;
      text-decoration: underline;
    }

    @media (min-width: 760px) {
      .footer-meta a{
        position: relative;
        padding: 0 16px;
      }
    }

    .footer-btn-sm {
      padding: 8px 14px;
      border-radius: 999px;
    }

    .footer-btn-lg {
      padding: 14px 26px;
      border-radius: 999px;
    }

    .content__fixed {
      background: #101b2a;
      color: #eaf3ff;
      padding: 24px 15px;
      max-width: 1200px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .content__fixed h2 {
      margin-bottom: 12px;
      font-size: 26px;
      line-height: 1.25;
    }

    .content__fixed h3 {
      margin: 20px 0 10px;
      font-size: 20px;
    }

    .content__fixed p {
      margin-bottom: 12px;
      opacity: 0.95;
    }

    .content__fixed ul {
      margin: 0 0 12px 18px;
      padding: 0;
    }

    .content__fixed ul li {
      margin-bottom: 6px;
    }

    .content__fixed a {
      color: #c7ff00;
      text-decoration: none;
    }

    .content__fixed table {
      width: 100%;
      border-collapse: collapse;
      background: #0b1420;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      overflow: hidden;
    }

    .content__fixed table thead {
      background: rgba(199, 255, 0, 0.08);
    }

    .content__fixed table th,
    .content__fixed table td {
      text-align: left;
      padding: 12px 14px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .content__fixed table tr:nth-child(even) {
      background: rgba(255, 255, 255, 0.02);
    }

    .faq-section {
      color: #e6ecf3;
      padding: 30px;
      margin: 40px auto;
    }

    .faq-section h2 {
      font-size: 28px;
      margin-bottom: 20px;
      text-align: start;
      color: #ffd65a;
      padding-bottom: 10px;
    }

    .faq-item {
      padding: 18px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .faq-item:last-child {
      border-bottom: none;
    }

    .faq-item h3 {
      font-size: 18px;
      margin-bottom: 8px;
      color: #ffffff;
    }

    .faq-item p {
      font-size: 15px;
      line-height: 1.6;
      color: rgba(230, 236, 243, 0.85);
    }

    @media (min-width: 560px) {
    .header-buttons{
    flex-flow:nowrap;
    }
    .btn {
    font-size:16px;
    }
.site-header-inner{
flex-flow:nowrap;
}

      .promo-content {
        min-height: 380px;
        padding: 64px 20px 72px;
      }

      .promo-title {
        font-size: 36px;
      }

      .footer-inner {
        flex-direction: row;
        align-items: center;
        flex-flow: column;
        justify-content: space-between;
      }
    }

    @media (min-width: 1000px) {

      .promo-content {
        min-height: 420px;
        padding: 80px 24px 92px;
      }

      .promo-title {
        font-size: 44px;
      }

      .promo-text {
        font-size: 19px;
      }
    }