html {
            scroll-behavior: smooth;
          }
          body {
            margin: 0;
            font-family: "Inter", sans-serif;
            color: #1b0f2e;
            background: #f8f3f8;
            -webkit-font-smoothing: antialiased;
          }
          .man {
            font-family: "Manrope", sans-serif;
          }
          .ms {
            font-family: "Material Symbols Rounded";
            font-weight: normal;
            font-style: normal;
            line-height: 1;
            display: inline-block;
            font-size: 24px;
          }
          .wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            box-sizing: border-box;
          }
          .mut {
            color: #5c4e68;
          }
          .h2 {
            font-family: "Sora", sans-serif;
            font-weight: 800;
            font-size: 20px;
            letter-spacing: -0.4px;
            margin: 0;
          }
          .hdr {
            background: #1b0f2e;
            color: #fff;
            position: sticky;
            top: 0;
            z-index: 50;
          }
          .hrow {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
          }
          .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
          }
          .logotx {
            font-family: "Manrope", sans-serif;
            font-weight: 800;
            font-size: 20px;
            color: #fff;
            letter-spacing: -0.3px;
          }
          .hbadge {
            font-family: "Manrope", sans-serif;
            font-weight: 800;
            font-size: 10.5px;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            color: #ff6bc4;
            border: 1px solid rgba(255, 107, 196, 0.4);
            border-radius: 6px;
            padding: 4px 8px;
          }
          .huser {
            display: flex;
            align-items: center;
            gap: 12px;
          }
          .uava {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e01e96, #6d1b78);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: "Manrope", sans-serif;
            font-weight: 800;
            font-size: 15px;
            color: #fff;
            flex: none;
          }
          .uinfo {
            line-height: 1.25;
            text-align: right;
          }
          .logout {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.16);
            color: #fff;
            border-radius: 10px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.2s;
          }
          .logout:hover {
            background: rgba(224, 30, 150, 0.4);
          }
          .sec {
            padding: 28px 24px;
          }
          .summary {
            background: linear-gradient(
              120deg,
              #1b0f2e 0%,
              #6d1b78 70%,
              #e01e96 130%
            );
            border-radius: 20px;
            padding: 26px 28px;
            color: #fff;
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 24px;
            align-items: center;
          }
          .sumlbl {
            font-size: 12.5px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0 0 4px;
          }
          .sumval {
            font-family: "Manrope", sans-serif;
            font-weight: 800;
            font-size: 20px;
            margin: 0;
          }
          .statuspill {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(255, 255, 255, 0.14);
            border-radius: 999px;
            padding: 6px 13px;
            font-size: 13px;
            font-weight: 600;
            margin-top: 6px;
          }
          .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #4ed8a0;
            flex: none;
            box-shadow: 0 0 0 3px rgba(78, 216, 160, 0.25);
          }
          .paybtn {
            background: #fff;
            color: #1b0f2e;
            border: none;
            border-radius: 12px;
            padding: 13px 20px;
            font-family: "Manrope", sans-serif;
            font-weight: 800;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
            transition: transform 0.2s;
          }
          .paybtn:hover {
            transform: translateY(-2px);
          }
          .dgrid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
            align-items: start;
            margin-top: 20px;
          }
          .lcol {
            display: flex;
            flex-direction: column;
            gap: 20px;
          }
          .card {
            background: #fff;
            border: 1px solid #ece1ee;
            border-radius: 18px;
            padding: 22px;
          }
          .qgrid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
          }
          .qa {
            background: #fbf7fb;
            border: 1px solid #ece1ee;
            border-radius: 14px;
            padding: 15px 14px;
            text-decoration: none;
            color: #1b0f2e;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition:
              transform 0.2s,
              box-shadow 0.2s,
              border-color 0.2s;
            position: relative;
          }
          .qa:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 30px rgba(224, 30, 150, 0.12);
            border-color: #f4c8e4;
            background: #fff;
          }
          .qico {
            width: 38px;
            height: 38px;
            border-radius: 11px;
            background: #fce9f5;
            color: #e01e96;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: none;
          }
          .qt {
            font-weight: 700;
            font-size: 13px;
            line-height: 1.3;
          }
          .qbadge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #e01e96;
            color: #fff;
            font-size: 10px;
            font-weight: 800;
            border-radius: 999px;
            min-width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 5px;
          }
          .plan-mini {
            display: flex;
            flex-direction: column;
            gap: 14px;
          }
          .metric {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            font-size: 14px;
          }
          .bar {
            height: 8px;
            border-radius: 999px;
            background: #f1e8f0;
            overflow: hidden;
            margin-top: 6px;
          }
          .barfill {
            height: 100%;
            border-radius: 999px;
            background: linear-gradient(90deg, #6d1b78, #e01e96);
          }
          .suprow {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
          }
          .supbtn {
            flex: 1;
            min-width: 100px;
            border: 1.5px solid #ece1ee;
            border-radius: 12px;
            padding: 13px;
            background: #fff;
            color: #1b0f2e;
            font-weight: 600;
            font-size: 13px;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 7px;
            text-align: center;
            transition:
              border-color 0.2s,
              color 0.2s;
          }
          .supbtn:hover {
            border-color: #e01e96;
            color: #e01e96;
          }
          .notif {
            display: flex;
            gap: 12px;
            padding: 11px 0;
            border-bottom: 1px solid #f1e8f0;
          }
          .notif:last-child {
            border-bottom: none;
            padding-bottom: 0;
          }
          .ndot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #e01e96;
            flex: none;
            margin-top: 6px;
          }
          .svcgrid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
          }
          .svc {
            background: #fbf7fb;
            border: 1px solid #ece1ee;
            border-radius: 16px;
            padding: 18px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            transition:
              box-shadow 0.2s,
              transform 0.2s;
          }
          .svc:hover {
            box-shadow: 0 14px 30px rgba(224, 30, 150, 0.1);
            transform: translateY(-3px);
            background: #fff;
          }
          .svctop {
            display: flex;
            align-items: center;
            gap: 12px;
          }
          .svcico {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: #fce9f5;
            color: #e01e96;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: none;
          }
          .st {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border-radius: 999px;
            padding: 4px 10px;
            font-size: 12px;
            font-weight: 700;
          }
          .st-on {
            background: #e9f9f1;
            color: #1e9e6a;
          }
          .sdot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: currentColor;
            flex: none;
          }
          .svcmeta {
            display: flex;
            flex-direction: column;
            gap: 6px;
            font-size: 13px;
          }
          .svcmr {
            display: flex;
            justify-content: space-between;
            gap: 10px;
          }
          .svclbl {
            color: #8a7a94;
          }
          .svcval {
            font-weight: 600;
            text-align: right;
          }
          .svclink {
            font-family: "Manrope", sans-serif;
            font-weight: 800;
            font-size: 13px;
            color: #e01e96;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
          }
          .svclink:hover {
            gap: 9px;
          }
          .upsell {
            background: linear-gradient(
              120deg,
              #1b0f2e,
              #6d1b78 85%,
              #e01e96 130%
            );
            border-radius: 16px;
            padding: 18px;
            color: #fff;
            margin-top: 2px;
          }
          .upplan {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 12px;
            padding: 13px;
            margin-top: 10px;
          }
          .upbtn {
            background: #fff;
            color: #1b0f2e;
            border: none;
            border-radius: 10px;
            padding: 11px 16px;
            font-family: "Manrope", sans-serif;
            font-weight: 800;
            font-size: 13px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            justify-content: center;
            transition: transform 0.2s;
            white-space: nowrap;
            margin-top: 12px;
          }
          .upbtn:hover {
            transform: translateY(-2px);
          }
          .planinfo {
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-size: 13px;
            margin-top: 2px;
          }
          .pir {
            display: flex;
            justify-content: space-between;
            gap: 10px;
          }
          .pilbl {
            color: #8a7a94;
          }
          .refjoin {
            background: linear-gradient(
              120deg,
              #1b0f2e 0%,
              #6d1b78 68%,
              #e01e96 128%
            );
            border-radius: 16px;
            padding: 24px;
            color: #fff;
            position: relative;
            overflow: hidden;
          }
          .refburst {
            position: absolute;
            right: -24px;
            top: -24px;
            font-size: 140px;
            opacity: 0.1;
            color: #fff;
            pointer-events: none;
          }
          .refbtn {
            background: #fff;
            color: #1b0f2e;
            border: none;
            border-radius: 12px;
            padding: 13px 22px;
            font-family: "Manrope", sans-serif;
            font-weight: 800;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s;
            margin-top: 16px;
          }
          .refbtn:hover {
            transform: translateY(-2px);
          }
          .codebox {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            border: 1.5px dashed #e01e96;
            background: #fce9f5;
            border-radius: 14px;
            padding: 13px 16px;
          }
          .codeval {
            font-family: "Manrope", sans-serif;
            font-weight: 800;
            font-size: 19px;
            letter-spacing: 1px;
            color: #e01e96;
          }
          .icbtn {
            border: none;
            background: #e01e96;
            color: #fff;
            border-radius: 10px;
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            flex: none;
            transition: background 0.2s;
          }
          .icbtn:hover {
            background: #6d1b78;
          }
          .sharerow {
            display: flex;
            gap: 10px;
            margin-top: 14px;
            flex-wrap: wrap;
          }
          .sh {
            width: 40px;
            height: 40px;
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #fff;
            transition: transform 0.2s;
          }
          .sh:hover {
            transform: translateY(-2px);
          }
          .sh-wa {
            background: #25d366;
          }
          .sh-fb {
            background: #1877f2;
          }
          .sh-x {
            background: #1b0f2e;
          }
          .sh-mail {
            background: #6d1b78;
          }
          .copied {
            position: fixed;
            bottom: 26px;
            left: 50%;
            transform: translateX(-50%);
            background: #1b0f2e;
            color: #fff;
            border-radius: 999px;
            padding: 11px 22px;
            font-size: 14px;
            font-weight: 600;
            z-index: 70;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
          }
          .wafab {
            position: fixed;
            right: 22px;
            bottom: 22px;
            z-index: 60;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: #25d366;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
            text-decoration: none;
            transition: transform 0.2s;
          }
          .wafab:hover {
            transform: scale(1.08);
          }
          @media (max-width: 900px) {
            .summary {
              grid-template-columns: 1fr 1fr;
              gap: 16px;
            }
            .dgrid {
              grid-template-columns: 1fr;
            }
            .qgrid {
              grid-template-columns: repeat(2, 1fr);
            }
            .uinfo {
              display: none;
            }
          }
          @media (max-width: 520px) {
            .qgrid {
              grid-template-columns: 1fr 1fr;
            }
            .summary {
              grid-template-columns: 1fr;
            }
          }
