*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html, body {
      width: 100vw;
      height: 100vh;
      overflow: hidden !important;
    }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      background-color: #ffffff;
      position: relative;
    }
    
    /* Ambient blurred background layer */
    .ambient-bg {
      position: fixed;
      inset: 0;
      background-image: url("../images/img-4.jpeg");
      background-size: cover;
      background-position: center top;
      filter: blur(50px);
      opacity: 0.35;
      z-index: 0;
      pointer-events: none;
    }
    
    .site-background-container {
      position: fixed;
      inset: 0;
      overflow: hidden;
      z-index: 1;
    }
    .site-background-img {
      display: block;
      width: 100vw;
      height: 100vh;
      object-fit: cover;
      object-position: center top;
      pointer-events: none;
      -webkit-user-drag: none;
      user-select: none;
    }
    .ads-desktop-bg {
      display: block;
    }
    .ads-mobile-bg {
      display: none;
    }
    @media (max-width: 768px) {
      .ambient-bg {
        display: none;
      }
      .site-background-img.ads-mobile-bg {
        display: block;
      }
      .ads-desktop-bg {
        display: none;
      }
    }
  


  #ads-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    background: transparent;
    pointer-events: none;
  }
  #ads-overlay.ads-show {
    display: block;
  }
  #ads-card {
    position: fixed;
    top: 50%;
    left: 50%;
    background: #ffffff;
    background: color-mix(in srgb, #32373c 6%, #ffffff);
    border: 1px solid rgba(0,0,0,0.06);
    border: 1px solid color-mix(in srgb, #32373c 15%, #ffffff);
    border-top: 4px solid #32373c;
    border-radius: 20px;
    padding: 36px 28px 28px;
    max-width: 400px;
    width: calc(100% - 40px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    text-align: center;
    box-shadow: 0 40px 80px -12px rgba(0,0,0,0.45), 0 0 0 1px rgba(0,0,0,0.06);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    animation: adsCardIn 0.45s cubic-bezier(0.34,1.56,0.64,1) both;
    pointer-events: auto;
    
  }
  @keyframes adsCardIn {
    from { transform: translate(-50%, -50%) scale(0.8) translateY(30px); opacity: 0; }
    to   { transform: translate(-50%, -50%) scale(1)   translateY(0);    opacity: 1; }
  }
  .ads-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    background: #f1f5f9;
    border-radius: 50%;
    color: #64748b;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    user-select: none;
    z-index: 10;
  }
  .ads-close-btn:hover {
    background: #e2e8f0;
    color: #334155;
  }
  #ads-icon-container { display: flex; justify-content: center; margin-bottom: 18px; }
  #ads-title  { font-size: 18px; font-weight: 700; color: #0f172a; margin: 0 0 10px; font-family: inherit; }
  #ads-desc   { font-size: 13px; color: #64748b; line-height: 1.65; margin: 0 0 24px; font-family: inherit; }
  #ads-btns   { display: flex; gap: 10px; }
  .ads-btn {
    flex: 1;
    padding: 13px 16px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.1s, filter 0.15s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ads-btn:active { transform: scale(0.96); }
  #ads-accept  { background: #16a34a; color: #fff; }
  #ads-accept:hover  { filter: brightness(0.9); }
  #ads-decline { background: #dc2626; color: #ffffff; border: none; }
  #ads-decline:hover { filter: brightness(0.9); }
  
  #ads-card del {
    text-decoration: line-through !important;
    opacity: 0.7;
  }
  
  /* SEO Section Styles */
  #ads-seo-wrapper {
    margin-top: 24px;
    border-top: 1px dashed #e2e8f0;
    padding-top: 16px;
    text-align: left;
  }
  #ads-seo-toggle {
    background: none;
    border: none;
    color: #32373c;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    justify-content: center;
    font-family: inherit;
    outline: none;
    padding: 6px 0;
    transition: opacity 0.15s;
  }
  #ads-seo-toggle:hover {
    opacity: 0.8;
  }
  #ads-seo-arrow {
    transition: transform 0.25s ease;
  }
  #ads-seo-toggle.ads-active #ads-seo-arrow {
    transform: rotate(180deg);
  }
  #ads-seo-content {
    display: none;
    margin-top: 14px;
    font-size: 12px;
    color: #475569;
    line-height: 1.6;
    max-height: 180px;
    overflow-y: auto;
    padding-right: 6px;
  }
  #ads-seo-content.ads-show {
    display: block;
  }
  #ads-seo-title {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px;
    font-family: inherit;
  }
  #ads-seo-desc {
    margin: 0 0 12px;
    font-weight: 500;
    color: #334155;
    font-family: inherit;
  }
  .ads-seo-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  .ads-seo-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-family: inherit;
  }
  .ads-seo-check {
    color: #32373c;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.2;
    user-select: none;
  }
  
  @media (max-width: 480px) {
    #ads-card  { padding: 28px 18px 22px; border-radius: 16px; }
    #ads-title { font-size: 16px; }
    #ads-btns  { flex-direction: column; }
  }



  .thanks-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    z-index: 99999999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
  }
  .thanks-modal-content {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    animation: thanksModalScaleUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    color: #0f172a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: auto;
  }
  @keyframes thanksModalScaleUp {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  .thanks-success-badge {
    width: 64px;
    height: 64px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .thanks-success-badge svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .thanks-headline {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .thanks-subheadline {
    font-size: 13px;
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.5;
  }
  .thanks-product-box {
    display: flex;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 12px;
    gap: 12px;
    text-align: left;
    margin-bottom: 20px;
    align-items: center;
  }
  .thanks-product-img-wrapper {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    overflow: hidden;
  }
  .thanks-product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .thanks-product-details {
    flex: 1;
  }
  .thanks-product-title {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
  }
  .thanks-product-desc {
    font-size: 11px;
    color: #64748b;
  }
  .thanks-steps {
    text-align: left;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 24px;
  }
  .thanks-step-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
  }
  .thanks-step-item:last-child {
    margin-bottom: 0;
  }
  .thanks-step-num {
    width: 20px;
    height: 20px;
    background: #32373c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .thanks-step-text {
    font-size: 12px;
    color: #334155;
    line-height: 1.45;
  }
  .thanks-step-text strong {
    color: #0f172a;
  }
  .thanks-btn {
    display: inline-block;
    width: 100%;
    background: #32373c;
    color: #ffffff;
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    transition: filter 0.15s, transform 0.1s;
  }
  .thanks-btn:hover {
    filter: brightness(0.92);
  }
  .thanks-btn:active {
    transform: scale(0.98);
  }
  .thanks-footer {
    font-size: 10px;
    color: #94a3b8;
    margin-top: 16px;
    line-height: 1.4;
  }