    /* MATENI BLOCK TEXT DI SEMUA ELEMEN WEB */
    * {
      user-select: none !important;
      -webkit-user-select: none !important;
      -ms-user-select: none !important;
    }

    body {
      background: var(--background-light);
      transition: background var(--transition);
      margin: 0;
      padding: 0;
      height: 100vh;
      display: flex;
      flex-direction: column;
      font-family: "Times New Roman", Times, serif;
      overflow: hidden;
    }
    :root[data-theme="dark"] body {
      background: var(--background-dark);
    }
    
    /* HEADER */
    header {
      background: var(--header-light);
      color: var(--text-trigger-dark);
      box-shadow: var(--header-shadow-dark);
      transition: background var(--transition), color var(--transition), box-shadow var(--transition);
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      padding: 5px;
      height: 65px; /* tinggi fix */
      backdrop-filter: blur(6px);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 1);
      border-radius: 0 0 20px 20px;
      display: flex;
      align-items: center;
      justify-content: center; /* semua isi tetap di tengah horizontal */
      z-index: 1000;
    }
    :root[data-theme="dark"] header {
      background: var(--header-dark);
      color: var(--text-trigger-light);
      box-shadow: var(--header-shadow-light);
    }
    
    .header-container {
      display: flex;
      align-items: center;
      justify-content: center; /* biar tetap rata tengah */
      gap: 10px; /* jarak antar elemen */
    }
    
    .header-container h1 {
      font-size: 20px;
      line-height: 1.2;  /* jarak antar baris, bisa disetel */
    }
    
    /* MAIN (isi bisa scroll) */
    main {
      flex: 1;
      margin-top: 10px;   /* biar tidak ketutupan header */
      margin-bottom: 10px;/* biar tidak ketutupan footer */
      box-sizing: border-box;
      overflow-y: auto;   /* isi bisa discroll */
    }

    .frame-exel {
      margin-top: 75px;   /* biar tidak ketutupan header */
      margin-bottom: 75px;/* biar tidak ketutupan footer */
      padding-left: 10px;
      padding-right: 13px;
      height: 100vh;
    }

    .exel {
      border-radius: 10px;
      border: 2px solid grey;
    }
    
    .content {
      background-color: white;
      padding: 15px;
      border-radius: 15px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
      text-align: center;
    }
    
    .content a {
      color: blue;
      font-size: 18px;
      word-break: break-all;
    }
    
    /* FOOTER FIXED */
    .sheet-footer {
      background: var(--footer-light);
      color: var(--text-trigger-dark);
      box-shadow: var(--footer-shadow-dark);
      transition: background var(--transition), color var(--transition), box-shadow var(--transition);
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60px;
      padding: 5px;
      text-align: center;
      font-size: 14px;
      z-index: 1000;
      backdrop-filter: blur(6px);
      border-radius: 20px 20px 0 0;
    }
    :root[data-theme="dark"] .sheet-footer {
      background: var(--footer-dark);
      color: var(--text-trigger-light);
      box-shadow: var(--footer-shadow-light);
    }
    
    .blur-box {
      padding: 10px 20px;
      border-radius: 50px;
    }
    
    /* TEKS BERGERAK */
    .doa {
      font-weight: bold;
      background: linear-gradient(
        90deg,
        red, black, #b31d1d,
        red, black, #b31d1d,
        red, black, #b31d1d,
        red, black, #b31d1d,
        red
      );
      background-size: 500% 100%;
      background-repeat: repeat;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: doa 7s linear infinite;
      transition: background var(--transition);
    }
    :root[data-theme="dark"] .doa {
      background: linear-gradient(
        90deg,
        cyan, white, grey,
        cyan, white, grey,
        cyan, white, grey,
        cyan, white, grey,
        cyan
      );
      background-size: 500% 100%;
      background-repeat: repeat;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: doa 7s linear infinite;
    }
    @keyframes doa {
      0%   { background-position: 0% 0%; }
      100% { background-position: 100% 0%; }
    }
    
    .datetime {
      margin-top: 0px;
      font-family: "Times New Roman", Times, serif;
      font-weight: bold;
    }

    .foto-rgb {
      position: relative;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 2px solid #8a8a8a;
      box-shadow:
        0 0 2px red,
        0 0 6px green,
        0 0 10px cyan;
      animation: rgbGlow 4s infinite linear;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    @keyframes rgbGlow {
      0%   { box-shadow: 0 0 2px cyan, 0 0 5px green, 0 0 8px blue; }
      25%  { box-shadow: 0 0 4px green, 0 0 7px blue, 0 0 10px red; }
      50%  { box-shadow: 0 0 6px cyan, 0 0 9px red, 0 0 12px green; }
      75%  { box-shadow: 0 0 4px red, 0 0 7px green, 0 0 10px blue; }
      100% { box-shadow: 0 0 2px cyan, 0 0 5px green, 0 0 8px blue; }
    }
    
    .fotomuter {
      height: 100%;
      width: 100%;
      animation: muterTerus 5s linear infinite;
      animation-play-state: paused;
      transform-origin: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    @keyframes muterTerus {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
    
    .fotoframe {
      height: 100%;
      width: 100%;
      border-radius: 50%;
      object-fit: cover;
    }
    
    #playPauseBtn {
      position: absolute;
      z-index: 9999;
      height: 50px;
      width: 50px;
      font-size: 5px;
      border-radius: 50%;
      background-color: transparent;
      color: white;
      border: none;
      cursor: pointer;
    }
    
    .fredericka-the-great-regular {
      font-family: "Fredericka the Great", serif;
      font-weight: 400;
      font-style: normal;
      font-size: 40px;
      line-height: 1.4;
      display: inline-flex;
      flex-direction: column;  /* biar vertikal */
      align-items: center;     /* rata tengah */
    }

    .fredericka-the-great-regular .line {
      display: inline-block;
    }

    .fredericka-the-great-regular .divider {
      height: 1px;
      margin: 0.5px 0;
      border-radius: 0.5px;
      align-self: stretch;
      /* pola lurus horizontal */
      background: repeating-linear-gradient(
        to right,     /* lurus ke samping */
        cyan 0px,
        cyan 20px,
        blue 20px,
        blue 40px,
        cyan 40px,
        cyan 60px,
        red 60px,
        red 80px
      );
      background-size: 80px 100%; /* ulangi pola sepanjang lebar */
      animation: barber 2s linear infinite;
      transition: background var(--transition);
    }
    :root[data-theme="dark"] .fredericka-the-great-regular .divider {
      background: repeating-linear-gradient(
        to right,     /* lurus ke samping */
        white 0px,
        white 20px,
        blue 20px,
        blue 40px,
        white 40px,
        white 60px,
        red 60px,
        red 80px
      );
      background-size: 80px 100%; /* ulangi pola sepanjang lebar */
      animation: barber 2s linear infinite;
    }

    @keyframes barber {
      from { background-position: 0 0; }
      to   { background-position: 80px 0; }
    }
