.fz-page {
      background:
        radial-gradient(circle at top left, rgba(160,216,239,.35), transparent 35%),
        radial-gradient(circle at top right, rgba(92,92,188,.22), transparent 32%),
        #f8f9ff;
      min-height: 100vh;
      padding-bottom: 90px;
    }

    .fz-hero {
      padding: 90px 0 60px;
      background: linear-gradient(135deg, #172A44 0%, #1A214C 48%, #5C5CBC 100%);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .fz-hero:before {
      content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: rgba(160,216,239,.18);
      right: -120px;
      top: -120px;
    }

    .fz-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,.13);
      border: 1px solid rgba(255,255,255,.18);
      font-size: .9rem;
      margin-bottom: 18px;
    }

    .fz-hero h1 {
      font-size: clamp(2.2rem, 5vw, 4.4rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 18px;
    }

    .fz-hero p {
      max-width: 760px;
      font-size: 1.12rem;
      opacity: .9;
      line-height: 1.8;
    }

    .fz-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 30px;
    }

    .fz-btn-primary,
    .fz-btn-light {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 13px 24px;
      border-radius: 14px;
      text-decoration: none;
      font-weight: 700;
      transition: all .25s ease;
    }

    .fz-btn-primary {
      background: #A0D8EF;
      color: #172A44;
    }

    .fz-btn-light {
      background: rgba(255,255,255,.12);
      color: #fff;
      border: 1px solid rgba(255,255,255,.22);
    }

    .fz-btn-primary:hover,
    .fz-btn-light:hover {
      transform: translateY(-2px);
      color: inherit;
    }

    .fz-section {
      padding: 60px 0 0;
    }

    .fz-section-title {
      text-align: center;
      margin-bottom: 34px;
    }

    .fz-section-title h2 {
      font-weight: 800;
      color: #172A44;
      margin-bottom: 10px;
    }

    .fz-section-title p {
      color: #6f7587;
      margin: 0;
    }

    .fz-card {
      height: 100%;
      background: #fff;
      border: 1px solid rgba(23,42,68,.08);
      border-radius: 24px;
      padding: 26px;
      box-shadow: 0 16px 45px rgba(23,42,68,.07);
      transition: all .25s ease;
    }

    .fz-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 60px rgba(23,42,68,.12);
    }

    .fz-icon {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #5C5CBC, #A0D8EF);
      color: #fff;
      font-size: 1.55rem;
      margin-bottom: 18px;
    }

    .fz-card h3 {
      font-size: 1.15rem;
      font-weight: 800;
      color: #172A44;
      margin-bottom: 10px;
    }

    .fz-card p {
      color: #697086;
      line-height: 1.75;
      margin-bottom: 18px;
      font-size: .95rem;
    }

    .fz-card-link {
      color: #5C5CBC;
      font-weight: 700;
      text-decoration: none;
    }

    .fz-card-link:hover {
      color: #172A44;
    }

    .fz-login-panel {
      background: linear-gradient(135deg, #ffffff, #f4f4f8);
      border-radius: 28px;
      padding: 34px;
      border: 1px solid rgba(92,92,188,.12);
      box-shadow: 0 20px 55px rgba(23,42,68,.08);
    }

    .fz-login-panel h2 {
      color: #172A44;
      font-weight: 800;
    }

    @media (max-width: 767.98px) {
      .fz-hero {
        padding: 70px 0 45px;
      }

      .fz-hero-actions {
        flex-direction: column;
      }

      .fz-btn-primary,
      .fz-btn-light {
        justify-content: center;
      }
    }

    .login-page {
      min-height: 100vh;
      background:
        radial-gradient(circle at top left, rgba(160,216,239,.35), transparent 35%),
        radial-gradient(circle at top right, rgba(92,92,188,.22), transparent 34%),
        #f8f9ff;
      padding: 80px 0;
      font-family: "Prompt", sans-serif;
    }

    .login-card {
      max-width: 520px;
      margin: 0 auto;
      background: #fff;
      border-radius: 28px;
      padding: 42px;
      box-shadow: 0 22px 60px rgba(23,42,68,.12);
      border: 1px solid rgba(92,92,188,.12);
    }

    .login-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 15px;
      border-radius: 999px;
      background: #f4f4f8;
      color: #5C5CBC;
      font-size: .9rem;
      font-weight: 600;
      margin-bottom: 18px;
    }

    .login-card h1 {
      color: #172A44;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .login-card p {
      color: #697086;
      line-height: 1.75;
      margin-bottom: 28px;
    }

    .google-login-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 20px;
      border-radius: 14px;
      border: 1px solid rgba(23,42,68,.12);
      background: #fff;
      color: #172A44;
      font-weight: 700;
      text-decoration: none;
      transition: all .25s ease;
      box-shadow: 0 10px 28px rgba(23,42,68,.06);
    }

    .google-login-btn:hover {
      transform: translateY(-2px);
      color: #172A44;
      box-shadow: 0 16px 36px rgba(23,42,68,.1);
    }

    .login-divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 28px 0;
      color: #9aa0af;
      font-size: .9rem;
    }

    .login-divider:before,
    .login-divider:after {
      content: "";
      flex: 1;
      height: 1px;
      background: #e7e8ef;
    }

    .login-note {
      background: #f8f9ff;
      border-radius: 18px;
      padding: 18px;
      color: #697086;
      font-size: .92rem;
    }

    .login-back {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-top: 22px;
      color: #5C5CBC;
      font-weight: 700;
      text-decoration: none;
    }

    .login-back:hover {
      color: #172A44;
    }

    .fz-main-page {
      min-height: 100vh;
      background:
        radial-gradient(circle at top left, rgba(160,216,239,.32), transparent 35%),
        radial-gradient(circle at top right, rgba(92,92,188,.20), transparent 34%),
        #f8f9ff;
      padding: 70px 0 90px;
      font-family: "Prompt", sans-serif;
    }

    .fz-main-hero {
      background: linear-gradient(135deg, #172A44 0%, #1A214C 48%, #5C5CBC 100%);
      color: #fff;
      border-radius: 32px;
      padding: 38px;
      margin-bottom: 32px;
      box-shadow: 0 22px 60px rgba(23,42,68,.16);
      position: relative;
      overflow: hidden;
    }

    .fz-main-hero:before {
      content: "";
      position: absolute;
      width: 320px;
      height: 320px;
      right: -90px;
      top: -90px;
      border-radius: 50%;
      background: rgba(160,216,239,.18);
    }

    .fz-member-box {
      display: flex;
      align-items: center;
      gap: 18px;
      position: relative;
      z-index: 2;
    }

    .fz-member-avatar {
      width: 74px;
      height: 74px;
      border-radius: 22px;
      background: rgba(255,255,255,.16);
      border: 1px solid rgba(255,255,255,.22);
      object-fit: cover;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: #fff;
      overflow: hidden;
      flex: 0 0 auto;
    }

    .fz-member-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .fz-member-info h1 {
      font-size: clamp(1.7rem, 4vw, 2.6rem);
      font-weight: 800;
      margin-bottom: 6px;
    }

    .fz-member-info p {
      margin: 0;
      opacity: .86;
    }

    .fz-main-grid-title {
      margin: 40px 0 24px;
    }

    .fz-main-grid-title h2 {
      color: #172A44;
      font-weight: 800;
      margin: 0;
    }

    .fz-main-grid-title p {
      color: #697086;
      margin: 8px 0 0;
    }

    .fz-main-card {
      height: 100%;
      background: #fff;
      border-radius: 26px;
      padding: 28px;
      border: 1px solid rgba(23,42,68,.08);
      box-shadow: 0 16px 45px rgba(23,42,68,.07);
      transition: all .25s ease;
    }

    .fz-main-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 22px 60px rgba(23,42,68,.12);
    }

    .fz-main-icon {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      background: linear-gradient(135deg, #5C5CBC, #A0D8EF);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 18px;
    }

    .fz-main-card h3 {
      color: #172A44;
      font-size: 1.16rem;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .fz-main-card p {
      color: #697086;
      line-height: 1.75;
      margin-bottom: 18px;
      font-size: .95rem;
    }

    .fz-main-link {
      color: #5C5CBC;
      font-weight: 700;
      text-decoration: none;
    }

    .fz-main-link:hover {
      color: #172A44;
    }

    .fz-status-panel {
      background: #fff;
      border-radius: 26px;
      padding: 26px;
      border: 1px solid rgba(23,42,68,.08);
      box-shadow: 0 16px 45px rgba(23,42,68,.07);
    }

    .fz-status-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid #edf0f7;
    }

    .fz-status-item:last-child {
      border-bottom: 0;
    }

    .fz-status-dot {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: #f4f4f8;
      color: #5C5CBC;
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
    }

    .fz-status-text strong {
      color: #172A44;
      display: block;
    }

    .fz-status-text span {
      color: #697086;
      font-size: .9rem;
      word-break: break-word;
    }

    .fz-logout {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
      color: #dc3545;
      text-decoration: none;
      font-weight: 700;
    }

    .fz-logout:hover {
      color: #b02a37;
    }

    .fz-quick-panel {
      background: linear-gradient(135deg, #ffffff, #f4f4f8);
      border-radius: 26px;
      padding: 26px;
      border: 1px solid rgba(92,92,188,.12);
      box-shadow: 0 16px 45px rgba(23,42,68,.07);
      margin-top: 24px;
    }

    .fz-quick-panel h3 {
      color: #172A44;
      font-weight: 800;
      font-size: 1.1rem;
      margin-bottom: 10px;
    }

    .fz-quick-panel p {
      color: #697086;
      line-height: 1.7;
      margin-bottom: 0;
      font-size: .94rem;
    }

    @media (max-width: 767.98px) {
      .fz-main-page {
        padding: 45px 0 70px;
      }

      .fz-main-hero {
        padding: 28px;
        border-radius: 24px;
      }

      .fz-member-box {
        align-items: flex-start;
      }

      .fz-member-avatar {
        width: 60px;
        height: 60px;
        border-radius: 18px;
      }
    }
    
