      @font-face {
        font-family: "CustomFont";
        src: url("font/GoogleSans-Bold.ttf") format("opentype");
      }

      :root {
        --primary-color: #8b0000;
        --secondary-color: #ffd700;
      }

      body {
        font-family: "Google Sans", sans-serif;
        font-weight: 700;
        text-align: center;
        background: linear-gradient(180deg, #ff234f, #ec065c, #d70065, #bf006b, #a5096e, #8b146e, #711a6a, #571d62, #3f1c58, #29194a, #15143b, #050b2b);
        padding: 0;
        margin: 0;
        color: white;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        overflow-x: hidden;
      }

     .container {
        max-width: 450px;
        width: 100%;
        margin: 40px auto;
        background: white;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
        position: relative;
        box-sizing: border-box;
      }
      
      h3 {
        color: var(--primary-color);
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 1.2rem;
    }
      
      .notif {
        background-color: #ffdddd;
        border-left: 6px solid #ffc43a;
        border-radius: 5px;
        margin-bottom: 0px;
        padding: 0px 85px;
      }

      /* Styling Slider Baru */
      .slider-group {
        background: #f0f0f0;
        padding: 10px;
        border-radius: 8px;
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        gap: 5px;
      }
      .slider-label {
        font-size: 12px;
        color: #555;
        display: flex;
        justify-content: space-between;
      }

      input[type="text"] {
        width: calc(100% - 24px);
        padding: 12px;
        font-size: 18px;
        border: 1px solid #ccc;
        border-radius: 8px;
        margin-bottom: 12px;
        text-align: center;
        display: block;
        margin-left: auto;
        margin-right: auto;
      }

      input[type="range"] {
        width: 100%;
      }

      button,
      #downloadLink {
        width: 100%;
        padding: 12px;
        font-size: 18px;
        border: none;
        border-radius: 8px;
        margin-bottom: 12px;
        text-align: center;
        background: linear-gradient(90deg, rgb(255, 0, 52) 0%, rgb(137, 1, 226) 100%);
        color: white;
        cursor: pointer;
        font-weight: bold;
        transition: 0.3s;
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-decoration: none;
        box-sizing: border-box;
      }

      button:hover,
      #downloadLink:hover {
        opacity: 0.8;
      }

      .loading {
        display: none;
        font-size: 16px;
        color: #8b0000;
        font-weight: bold;
      }

      canvas {
        display: none;
        margin: 20px auto;
        max-width: 100%;
        border-radius: 8px;
      }

      #downloadSection {
        display: none;
        margin-top: 20px;
      }

      .footer {
        font-size: 14px;
        color: black;
        text-align: center;
        width: 100%;
        padding: 15px 0;
        margin-top: 20px;
        position: relative;
      }
      
      a:link, a:visited, a:hover, a:active {
        text-decoration: none;
      }