 
      :root{
        --bg: #ffffff;
        --fg: #0f0f0f;
        --muted: #6b7280;
        --red-600: #dc2626;
        --red-700: #b91c1c;
        --rose-500: #f43f5e;
        --rose-600: #e11d48;
        --border: #f4d7d7;
        --ring: rgba(220,38,38,.35);
        --card: #ffffff;
        --shadow: 0 10px 30px rgba(220,38,38,.08), 0 2px 6px rgba(0,0,0,.06);
        --radius: 14px;
        --container: 1120px;
      }

      /* Reset-ish */
      * { box-sizing: border-box; }
      html, body { height: 100%; }
      body{
        margin: 0;
        font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Arial, "Apple Color Emoji", "Segoe UI Emoji";
        color: var(--fg);
        background: var(--bg);
        line-height: 1.5;
      }

      .visually-hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 1px, 1px);
        border: 0;
        white-space: nowrap;
      }

      .shell{
        min-height: 100dvh;
        position: relative;
        overflow: hidden;
        isolation: isolate;
      }

      /* Animated background blobs */
      .bg-blobs {
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: -1;
      }
      .blob{
        position: absolute;
        border-radius: 9999px;
        filter: blur(60px);
        opacity: .65;
        mix-blend-mode: multiply;
        animation: float 12s ease-in-out infinite;
      }
      .blob.one{
        width: 44rem; height: 44rem;
        top: -12rem; right: -16rem;
        background: radial-gradient(40% 40% at 50% 50%, rgba(244,63,94,.35), rgba(220,38,38,.25));
        animation-delay: 0s;
      }
      .blob.two{
        width: 40rem; height: 40rem;
        bottom: -12rem; left: -14rem;
        background: radial-gradient(40% 40% at 50% 50%, rgba(220,38,38,.28), rgba(225,29,72,.22));
        animation-delay: 1.2s;
      }
      .blob.three{
        width: 28rem; height: 28rem;
        top: 20%; left: 10%;
        background: radial-gradient(40% 40% at 50% 50%, rgba(225,29,72,.22), rgba(244,63,94,.18));
        animation-delay: .6s;
      }
      @keyframes float {
        0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
        50% { transform: translate3d(0, -10px, 0) scale(1.02); }
      }

      .container{
        width: 100%;
        max-width: var(--container);
        margin-inline: auto;
        padding: 24px 20px;
      }

      header .brand{
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .logo{
        width: 100px; height: 100px;
        border-radius: 12px;
        background: white;
        background-image: url(large.png);
        object-fit: cover;
        display: grid; place-items: center;
        color: #ffffff;
        box-shadow: 0 10px 20px rgba(0, 255, 149, 0.25);
      }
      .logo svg{ width: 26px; height: 26px; }

      h1{
        margin: 0;
        font-size: clamp(1.35rem, 1rem + 1.2vw, 1.85rem);
        font-weight: 900;
        letter-spacing: -0.02em;
      }
      .subtitle{
        margin: 2px 0 0;
        color: var(--muted);
        font-size: .95rem;
      }

      .card{
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
      }

      .pad{
        padding: 20px;
      }
      @media (min-width: 640px){
        .pad{ padding: 24px; }
      }

      .title-row{
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 700;
      }
      .title-row svg{ color: var(--red-600); }

      .form{
        margin-top: 14px;
        display: grid;
        gap: 12px;
      }
      @media (min-width: 640px){
        .form{
          grid-template-columns: 1fr auto;
          align-items: center;
        }
      }

      * {
  -webkit-tap-highlight-color: transparent; /* For Chrome/Safari on mobile */
  -webkit-touch-callout: none; /* Disable callout (long-press menu) */
}


      .hidden {
    display: none;
}

.show {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.site-footer {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 15px 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #555;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

.footer-center a {
  margin: 0 10px;
  color: #f44336;
  text-decoration: none;
  font-weight: 500;
}

.footer-center a:hover {
  text-decoration: underline;
}

.footer-left, .footer-right {
  min-width: 200px;
}

.footer-right p {
  margin: 3px 0;
}

/* Mobile View */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-center {
    margin: 10px 0;
  }
}



.download1 {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}

      .field{
        position: relative;
      }
      .input{
        width: 100%;
        height: 52px;
        border-radius: 12px;
        border: 1px solid var(--border);
        padding: 0 44px 0 14px;
        font-size: 15px;
        outline: none;
        transition: box-shadow .15s ease, border-color .15s ease, transform .06s ease;
        background: #fff;
      }
      .input:focus{
        border-color: var(--red-600);
        box-shadow: 0 0 0 6px var(--ring);
      }
      .input:active{ transform: scale(.998); }

      .search-ico{
        position: absolute;
        right: 12px; top: 50%;
        transform: translateY(-50%);
        width: 22px; height: 22px;
        color: var(--muted);
        opacity: .7;
        pointer-events: none;
      }

      .faq {
        border: 1px solid #ff0000;
        border-radius: 10px;
  max-width: 800px;
  margin: auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  color: #000000;
}

.faq h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #d32f2f;
}

.faq details {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 10px 15px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.faq summary {
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.faq details[open] {
  border-color: #f44336;
}

      

      .btn{
        appearance: none;
        border: none;
        height: 52px;
        padding: 0 22px;
        border-radius: 12px;
        cursor: pointer;
        color: #fff;
        font-weight: 700;
        background: linear-gradient(90deg, var(--red-600), var(--rose-500));
        box-shadow: 0 8px 18px rgba(220,38,38,.25);
        transition: transform .08s ease, filter .15s ease, box-shadow .15s ease;
      }
      .btn:hover{ filter: brightness(1.03); box-shadow: 0 10px 22px rgba(220,38,38,.3); }
      .btn:active{ transform: translateY(1px) scale(.995); }
      .btn:focus-visible{ outline: none; box-shadow: 0 0 0 6px var(--ring), 0 10px 22px rgba(220,38,38,.3); }

      .results{
        margin-top: 18px;
        display: grid;
        gap: 18px;
      }
      .option {
  
  
  gap: 10px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  width: 100%;
  max-width: 400px; /* Default for mobile */
  margin: auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}





      .media{
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
      }
      @media (min-width: 720px){
        .media{
          grid-template-columns: 280px 1fr;
          gap: 18px;
        }
      }

      .actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.actions .btn {
    flex: 1;
    background: #ff4444;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

      .thumb{
        aspect-ratio: 16 / 9;
        border-radius: 14px;
        border: 1px solid var(--border);
        background:
          linear-gradient(135deg, rgba(220,38,38,.08), rgba(244,63,94,.06)),
          repeating-linear-gradient(90deg, rgba(0,0,0,.03) 0 2px, transparent 2px 4px);
        display: grid; place-items: center;
        color: var(--muted);
        position: relative;
        overflow: hidden;
      }
      .badge{
        position: absolute;
        top: 10px; left: 10px;
        background: var(--red-600);
        color: #fff;
        font-size: 12px;
        font-weight: 800;
        border-radius: 999px;
        padding: 6px 10px;
        letter-spacing: .02em;
        box-shadow: 0 8px 18px rgba(220,38,38,.25);
      }

      .meta h2{
        margin: 0 0 6px;
        font-size: clamp(1rem, .95rem + .5vw, 1.15rem);
      }
      .meta .byline{
        color: var(--muted);
        font-size: .925rem;
      }
      .meta .hint{
        margin-top: 10px;
        display: flex;
        align-items: flex-start;
        gap: 8px;
        color: var(--muted);
        font-size: .9rem;
      }
      .hint svg{ color: var(--red-600); flex: 0 0 auto; margin-top: 2px; }

      .grid{
        
        display: grid;
        gap: 20px;
      }
      @media (min-width: 720px){
        .grid{
          grid-template-columns: repeat(4, 1fr);
        }
      }

      .option{
        margin-top: 50px;
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 14px;
        display: grid;
        gap: 10px;
        transition: transform .08s ease, box-shadow .15s ease, border-color .15s ease;
        background: #fff;
      }
      .option:hover{ transform: translateY(-1px); box-shadow: var(--shadow); border-color: rgba(220,38,38,.22); }

      .opt-title{
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 800;
      }
      .opt-title svg{ color: var(--red-600); }

      .kv{
        color: var(--muted);
        font-size: .9rem;
        display: grid;
        gap: 2px;
      }
      .download-btn{
        width: 100%;
        height: 42px;
        border: none;
        border-radius: 10px;
        background: linear-gradient(90deg, var(--red-600), var(--rose-600));
        color: #fff;
        font-weight: 800;
        
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        box-shadow: 0 8px 18px rgba(220,38,38,.18);
      }

      .thumb {
  width: 100%;
  aspect-ratio: 16 / 9; /* keeps correct ratio */
  background: #ccc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills box, crops if needed */
  display: block;
}

@font-face {
  font-family: "Aero BC";
  src: url("AeroBC.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

h1 {
  font-family: "Aero BC", sans-serif;
  letter-spacing: 4px;
}
.font {
  font-family: "Aero BC", sans-serif;
  letter-spacing: 1px;
}


      .download-btn svg{ width: 18px; height: 18px; }

      .option.disabled{
        opacity: .6;
        filter: grayscale(.1);
      }

      .progress{
        height: 8px;
        background: #f3f4f6;
        border-radius: 999px;
        overflow: hidden;
      }
      .progress > span{
        display: block;
        height: 100%;
        width: 35%;
        background: linear-gradient(90deg, var(--red-600), var(--rose-500));
        animation: indeterminate 1.4s ease-in-out infinite;
      }
      @keyframes indeterminate {
        0% { transform: translateX(-100%); }
        50% { transform: translateX(10%); }
        100% { transform: translateX(120%); }
      }

      footer{
        color: var(--muted);
        font-size: .85rem;
        margin-top: 14px;
      }

      /* Reduce motion */
      @media (prefers-reduced-motion: reduce) {
        .blob, .download-btn, .option, .btn, .input, .progress > span { animation: none !important; }
      }
 