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

        body {
          font-family: 'Segoe UI', sans-serif;
          background-color: #f0f0f2;
          color: #333;
          text-align: center;
          padding: 20px;
        }

        a {
          text-decoration: none;
          color: inherit;
        }

        .container {
          background: #ffffff;
          max-width: 400px;
          margin: 0 auto;
          padding: 30px 20px;
          border-radius: 12px;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        }

        .logo-inside-box {
          margin-bottom: 15px;
        }

        .logo-inside-box img {
          width: 100px;
          height: auto;
        }

        .profile-name {
          font-size: 22px;
          font-weight: bold;
          margin-bottom: 6px;
          color: #e60012;
        }

        .profile-tagline {
          font-size: 18px;
          font-weight: bold;
          color: #666;
          margin-bottom: 20px;
        }

        .link-button1 {
          display: flex;
          align-items: center;
          justify-content: center;
          background-color: #0072BC;
          color: #fff;
          font-size: 16px;
          padding: 14px 20px;
          margin: 10px 0;
          border-radius: 8px;
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
          transition: background-color 0.3s, transform 0.2s;
        }

        .link-button1 img.icon {
          width: 20px;
          height: 20px;
          margin-right: 10px;
        }

        .link-button1:hover {
          background-color: #e60012;
          transform: translateY(-2px);
        }

        .link-button {
          display: flex;
          align-items: center;
          justify-content: center;
          background-color: #e60012;
          color: #fff;
          font-size: 16px;
          padding: 14px 20px;
          margin: 10px 0;
          border-radius: 8px;
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
          transition: background-color 0.3s, transform 0.2s;
        }

        .link-button img.icon {
          width: 20px;
          height: 20px;
          margin-right: 10px;
        }

        .link-button:hover {
          background-color: #0072BC;
          transform: translateY(-2px);
        }

        .socials {
          margin-top: 20px;
          display: flex;
          justify-content: center;
          gap: 20px;
        }

        .socials a {
          display: inline-block;
          width: 36px;
          height: 36px;
          opacity: 0.8;
          transition: opacity 0.3s;
        }

        .socials a:hover {
          opacity: 1;
        }

        .socials img {
          width: 100%;
          height: 100%;
        }

        .footer {
          margin-top: 25px;
          font-size: 12px;
          color: #999;
        }

        /* Divider Taplink-style */
        .divider {
          width: 80%;
          max-width: 300px;
          height: 1px;
          margin: 25px auto;
          background-color: #e0e0e0;
          border: none;
          position: relative;
        }

        .divider::before {
          content: "";
          position: absolute;
          top: -6px;
          left: 50%;
          transform: translateX(-50%);
          width: 40px;
          height: 2px;
          background-color: #e60012;
          /* merah LotteMart */
          border-radius: 1px;
        }