    :root {
      --cream: #f8f1df;
      --cream-light: #fffaf0;
      --gold: #b99036;
      --gold-light: #e2c873;
      --green: #075b35;
      --green-dark: #043922;
      --text: #7a5a1d;
    }

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

    body {
      min-height: 100vh;
      font-family: "Times New Roman", "Amiri", "Cairo", serif;
      color: var(--text);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background:
        radial-gradient(circle at 18% 18%, rgba(226, 200, 115, 0.26), transparent 30%),
        radial-gradient(circle at 82% 78%, rgba(7, 91, 53, 0.10), transparent 34%),
        linear-gradient(135deg, #f7efd9 0%, #fffaf0 48%, #efe2c1 100%);
    }

    /* Islamic ornament background */
    .islamic-pattern {
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.30;
      background-image:
        url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23b99036' stroke-width='1.1' opacity='.58'%3E%3Cpath d='M90 8 L107 53 L154 72 L112 98 L123 146 L90 120 L57 146 L68 98 L26 72 L73 53 Z'/%3E%3Cpath d='M90 26 L101 58 L133 72 L105 91 L112 124 L90 106 L68 124 L75 91 L47 72 L79 58 Z'/%3E%3Ccircle cx='90' cy='90' r='50'/%3E%3Ccircle cx='90' cy='90' r='28' opacity='.55'/%3E%3Cpath d='M0 90 H180 M90 0 V180 M27 27 L153 153 M153 27 L27 153' opacity='.25'/%3E%3C/g%3E%3C/svg%3E");
      background-size: 180px 180px;
      animation: movePattern 32s linear infinite;
    }

    .gold-glow {
      position: fixed;
      width: 430px;
      height: 430px;
      border-radius: 50%;
      background: rgba(226, 200, 115, 0.22);
      filter: blur(26px);
      pointer-events: none;
      animation: floatGlow 8s ease-in-out infinite alternate;
    }

    .gold-glow.one { top: -130px; right: -110px; }
    .gold-glow.two { bottom: -150px; left: -120px; animation-delay: -3s; }

    .page {
      position: relative;
      z-index: 2;
      width: min(920px, 100%);
      min-height: 570px;
      padding: 50px 28px 58px;
      border-radius: 34px;
      border: 1px solid rgba(185, 144, 54, 0.30);
      background: rgba(255, 250, 240, 0.78);
      box-shadow: 0 28px 90px rgba(88, 62, 17, 0.18);
      backdrop-filter: blur(12px);
      overflow: hidden;
      display: grid;
      place-items: center;
      text-align: center;
    }

    .page::before,
    .page::after {
      content: "";
      position: absolute;
      width: 240px;
      height: 240px;
      border: 1px solid rgba(185, 144, 54, 0.23);
      border-radius: 34px;
      transform: rotate(45deg);
      animation: rotateSoft 22s linear infinite;
      pointer-events: none;
    }

    .page::before { top: -145px; right: -90px; }
    .page::after { bottom: -145px; left: -90px; animation-direction: reverse; }

    .content {
      position: relative;
      z-index: 3;
      max-width: 720px;
      width: 100%;
    }

    .logo-box {
      width: 205px;
      height: 240px;
      margin: 0 auto 18px;
      position: relative;
      animation: floatLogo 4.4s ease-in-out infinite;
    }

    .logo-link {
      display: block;
      width: 100%;
      height: 100%;
      border-radius: 26px;
      overflow: hidden;
      background: rgba(255, 250, 240, 0.70);
      border: 1px solid rgba(185, 144, 54, 0.30);
      box-shadow: 0 18px 42px rgba(88, 62, 17, 0.18);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .logo-link:hover {
      transform: translateY(-4px) scale(1.02);
      border-color: rgba(185, 144, 54, 0.62);
      box-shadow: 0 25px 55px rgba(88, 62, 17, 0.24);
    }

    .logo-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .spark {
      position: absolute;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold-light);
      box-shadow: 0 0 18px rgba(226, 200, 115, 0.95);
      animation: sparkle 2.8s ease-in-out infinite;
      pointer-events: none;
    }

    .spark.s1 { top: 18px; right: 22px; }
    .spark.s2 { bottom: 32px; left: 14px; animation-delay: .9s; }
    .spark.s3 { top: 78px; left: -8px; animation-delay: 1.6s; }

    h1 {
      color: var(--gold);
      font-size: clamp(34px, 5.8vw, 62px);
      line-height: 1.05;
      letter-spacing: -1px;
      margin-bottom: 10px;
      text-shadow: 0 7px 18px rgba(185, 144, 54, 0.15);
    }

    .green-ribbon {
      display: inline-block;
      color: #fff;
      background: linear-gradient(90deg, var(--green-dark), var(--green), var(--green-dark));
      padding: 10px 36px 12px;
      border-radius: 4px;
      font-size: clamp(18px, 2.4vw, 24px);
      font-weight: 700;
      box-shadow: 0 12px 30px rgba(7, 91, 53, 0.22);
      position: relative;
      overflow: hidden;
      margin-bottom: 28px;
    }

    .green-ribbon::after {
      content: "";
      position: absolute;
      inset: 0;
      transform: translateX(120%);
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.30), transparent);
      animation: sweep 3.4s ease-in-out infinite;
    }

    .subtitle {
      color: var(--green-dark);
      font-size: clamp(23px, 3vw, 34px);
      font-weight: 800;
      margin-bottom: 12px;
    }

    .desc {
      max-width: 630px;
      margin: 0 auto 26px;
      font-size: clamp(17px, 2vw, 21px);
      line-height: 1.85;
      color: rgba(82, 60, 19, 0.88);
    }

    .progress-box {
      width: min(520px, 100%);
      margin: 0 auto 22px;
      text-align: right;
    }

    .progress-title {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      color: var(--green-dark);
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 9px;
    }

    .bar {
      height: 12px;
      border-radius: 999px;
      background: rgba(185, 144, 54, 0.18);
      overflow: hidden;
      border: 1px solid rgba(185, 144, 54, 0.24);
    }

    .bar span {
      display: block;
      height: 100%;
      width: 72%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--green), var(--gold-light), var(--gold));
      animation: loading 2.6s ease-in-out infinite alternate;
    }

    .dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin: 20px 0 32px;
    }

    .dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gold);
      animation: bounce 1.2s ease-in-out infinite;
    }

    .dots span:nth-child(2) { animation-delay: .16s; background: var(--green); }
    .dots span:nth-child(3) { animation-delay: .32s; }

    .actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }

    .btn {
      text-decoration: none;
      padding: 13px 24px;
      border-radius: 999px;
      font-size: 17px;
      font-weight: 700;
      transition: .25s ease;
      border: 1px solid rgba(185, 144, 54, 0.42);
    }

    .btn.primary {
      color: #fff;
      background: var(--green);
      box-shadow: 0 12px 24px rgba(7, 91, 53, 0.22);
    }

    .btn.secondary {
      color: var(--gold);
      background: rgba(255, 250, 240, 0.70);
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 34px rgba(88, 62, 17, 0.18);
    }



    .social-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin: 2px auto 24px;
    }

    .social-link {
      width: 54px;
      height: 54px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 2px solid rgba(255, 250, 240, 0.78);
      box-shadow: 0 12px 24px rgba(88, 62, 17, 0.14);
      text-decoration: none;
    }

    .social-icon-img {
      width: 24px;
      height: 24px;
      display: block;
      object-fit: contain;
    }

    .social-link.tiktok { background: #000000; }
    .social-link.instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
    .social-link.facebook { background: #1877f2; }
    .social-link.youtube { background: #ff0000; }
    .social-link.email { background: #b99036; }
    .social-link.whatsapp { background: #25d366; }
    .social-link.phone { background: var(--green); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
    }

    .btn .btn-icon-img {
      width: 19px;
      height: 19px;
      display: block;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .footer-note {
      position: absolute;
      bottom: 18px;
      left: 24px;
      right: 24px;
      z-index: 3;
      text-align: center;
      color: rgba(122, 90, 29, 0.68);
      font-size: 14px;
    }

    @keyframes movePattern {
      from { background-position: 0 0; }
      to { background-position: 360px 180px; }
    }

    @keyframes floatGlow {
      from { transform: translate(0, 0) scale(1); }
      to { transform: translate(34px, 26px) scale(1.12); }
    }

    @keyframes rotateSoft {
      from { transform: rotate(45deg); }
      to { transform: rotate(405deg); }
    }

    @keyframes floatLogo {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    @keyframes sparkle {
      0%, 100% { transform: scale(.55); opacity: .25; }
      50% { transform: scale(1.25); opacity: 1; }
    }

    @keyframes sweep {
      0%, 45% { transform: translateX(120%); }
      65%, 100% { transform: translateX(-120%); }
    }

    @keyframes loading {
      from { width: 55%; filter: brightness(.95); }
      to { width: 84%; filter: brightness(1.08); }
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); opacity: .45; }
      50% { transform: translateY(-8px); opacity: 1; }
    }

    @media (max-width: 640px) {
      body {
        padding: 14px;
        overflow-y: auto;
      }

      .page {
        min-height: calc(100vh - 28px);
        border-radius: 24px;
        padding: 36px 18px 58px;
      }

      .logo-box {
        width: 165px;
        height: 195px;
      }

      .green-ribbon {
        padding-inline: 22px;
      }

      .actions {
        flex-direction: column;
      }

      .social-link {
        width: 48px;
        height: 48px;
      }

      .btn {
        width: 100%;
      }
    }
  
