* { box-sizing: border-box; }
    
    .new-wrapper {
      position: fixed;
      right: 20px;
      bottom: 65px;
      width: 340px;
      max-width: calc(100vw - 24px);
      background: #0f172af5;
      border: 1px solid var(--border);
      border-radius: 20px;
      box-shadow: var(--shadow);
      padding: 18px;
      z-index: 9999;
      backdrop-filter: blur(10px);
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 32px;
      height: 32px;
      border: none;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.12);
      color: var(--text);
      font-size: 18px;
      cursor: pointer;
    }

    .close-btn:hover {
      background: rgba(148, 163, 184, 0.2);
    }

    .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0px 15px;
    border-radius: 999px;
    background: #287dfa;
    color: #FFF;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 15px;
    }

    .new-wrapper h1 {
      margin: 0 0 5px;
    font-size: 45px;
    text-align: center;
    color: #FFF;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    font-family: 'oswald', sans-serif;
    }
    .new-wrapper .Hurry-Up{
    padding: 0 8px 0 8px;
    line-height: 1.25;
    border-radius: 5px;
    font-family: 'impact', sans-serif!important;
    background: #c00;
    background: linear-gradient(90deg, rgba(0, 170, 108, 0.96), rgba(0, 123, 255, 0.96));
      border: 1px solid var(--border);
    }

    .subtitle {
    margin: 10px 0 14px;
    font-size: 0.9rem;
    padding-right: 28px;
    line-height: 1;
    text-align: justify;
    font-family: 'Helvetica Neue', sans-serif;
    color: #FFF;
    }

    .countdown-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      margin-bottom: 14px;
    }

    .new-card {
      background: linear-gradient(180deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 14px 8px;
      text-align: center;
    }

    .new-card-live {
      background: linear-gradient(180deg, rgba(204, 0, 0, 0.5), rgba(204, 0, 0, 0.96));
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 14px 8px;
      text-align: center;
    }

    .value {
      font-size: 1.5rem;
      font-weight: 600;
      line-height: 1;
      margin-bottom: 8px;
      color: #FFF;
      font-family: 'Helvetica Neue', sans-serif;
    }

    .label {
      font-size: 0.72rem;
      color: #FFF;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .progress-wrap {
      margin-top: 8px;
    }

    .progress-head {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      color: #FFF;
      font-size: 0.86rem;
      margin-bottom: 8px;
    }

    .progress {
      width: 100%;
      height: 10px;
      background: rgba(148, 163, 184, 0.12);
      border-radius: 999px;
      overflow: hidden;
      border: 1px solid rgba(0, 170, 108, 0.5);
    }

    .progress-bar {
      height: 100%;
      width: 0%;
      border-radius: inherit;
      background: linear-gradient(90deg, #00aa6c, #00aa6c);
      transition: width 0.4s ease;
    }

    .footer-note-float {
      margin: 10px 0 5px;
      text-align: center;
      font-size: 0.9rem;
      line-height: 1;
      font-family: 'Helvetica Neue', sans-serif;
      color: #FFF;
    }
    .promocode h3 {
      font-family: 'Helvetica Neue', sans-serif;
      text-align: center;
      color: #FFF;
      padding: 0 0 15px 0;
      font-size: 0.9rem;
    }

    @media (max-width: 480px) {
      .new-wrapper {
        right: 12px;
        bottom: 12px;
        left: 12px;
        width: auto;
        max-width: none;
      }

      .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }