    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
	
    :root {
      --bg: #f4f1ea;
      --paper: rgba(255, 252, 246, 0.78);
      --paper-strong: #fffaf2;
      --ink: #1e1a16;
      --muted: #6f665d;
      --line: rgba(30, 26, 22, 0.12);
      --accent: #8a3d12;
      --accent-2: #c86d2c;
      --accent-soft: rgba(138, 61, 18, 0.1);
      --success: #245c3a;
      --info: #234a78;
      --mark-bg: #ffe76a;
      --mark-ink: #2b2200;
      --shadow: 0 20px 50px rgba(62, 41, 20, 0.12);
      --radius: 20px;
      --radius-sm: 14px;
      --container: 1480px;
    }


    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "IBM Plex Sans", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at 20% 10%, rgba(200, 109, 44, 0.12), transparent 28%),
        radial-gradient(circle at 80% 20%, rgba(138, 61, 18, 0.08), transparent 24%),
        linear-gradient(180deg, #f8f4ed 0%, #f2ede4 100%);
      min-height: 100vh;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.3;
      background-image:
        linear-gradient(rgba(30, 26, 22, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 26, 22, 0.02) 1px, transparent 1px);
      background-size: 24px 24px;
    }

    .container {
      width: min(var(--container), calc(100% - 32px));
      margin-inline: auto;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .hero {
      position: relative;
      padding: 56px 0 28px;
      overflow: clip;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 24px;
      align-items: end;
    }

    .hero-panel,
    .meta-panel,
    .controls,
    .table-shell,
    .footer-panel {
      background: var(--paper);
      border: 1px solid rgba(255, 255, 255, 0.55);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-radius: var(--radius);
    }

    .hero-panel {
      padding: clamp(28px, 4vw, 46px);
      position: relative;
      isolation: isolate;
    }

    .hero-panel::after {
      content: "";
      position: absolute;
      right: -40px;
      top: -40px;
      width: 180px;
      height: 180px;
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(200, 109, 44, 0.18), rgba(138, 61, 18, 0.05));
      transform: rotate(18deg);
      z-index: -1;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent);
      font-size: 0.84rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent-2);
      box-shadow: 0 0 0 6px rgba(200, 109, 44, 0.12);
    }

    h1, h2, h3 {
      font-family: "Space Grotesk", sans-serif;
      line-height: 0.95;
      margin: 0;
      letter-spacing: -0.04em;
    }

    h1 {
      font-size: clamp(2.6rem, 6vw, 5.8rem);
      max-width: 10ch;
    }

    .hero-desc {
      margin-top: 18px;
      max-width: 58ch;
      color: var(--muted);
      font-size: clamp(1rem, 1.4vw, 1.08rem);
      line-height: 1.7;
    }

    .meta-panel {
      padding: 22px;
      display: grid;
      gap: 14px;
      min-height: 100%;
    }

    .meta-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 4px;
    }

    .meta-title h2 {
      font-size: 1.2rem;
    }

    .version-badge {
      display: inline-flex;
      align-items: center;
      padding: 7px 12px;
      border-radius: 999px;
      background: #efe7db;
      color: var(--ink);
      font-size: 0.82rem;
      font-weight: 600;
    }

    .stats {
      display: grid;
      gap: 12px;
    }

    .stat {
      display: grid;
      gap: 4px;
      padding: 16px;
      border-radius: 16px;
      background: rgba(255, 250, 242, 0.9);
      border: 1px solid var(--line);
    }

    .stat-label {
      color: var(--muted);
      font-size: 0.84rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .stat-value {
      font-family: "Space Grotesk", sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      letter-spacing: -0.03em;
    }

    main {
      padding-bottom: 48px;
    }

    .controls {
      margin-top: 18px;
      padding: 18px;
    }

    .controls-grid {
      display: grid;
      grid-template-columns: 1fr 0.4fr 0.4fr auto auto auto;
      gap: 14px;
      align-items: end;
    }

    .field {
      display: grid;
      gap: 8px;
    }

    .field label {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--ink);
    }

    .input,
    .select,
    .button,
    .button-secondary {
      min-height: 52px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--line);
      font: inherit;
      transition: 0.25s ease;
    }

    .input,
    .select {
      width: 100%;
      background: rgba(255, 255, 255, 0.86);
      color: var(--ink);
      padding: 0 16px;
      outline: none;
    }

    .input:focus,
    .select:focus {
      border-color: rgba(138, 61, 18, 0.35);
      box-shadow: 0 0 0 4px rgba(138, 61, 18, 0.08);
    }

    .button,
    .button-secondary {
      cursor: pointer;
      padding: 0 18px;
      font-weight: 700;
      font-family: "Space Grotesk", sans-serif;
      letter-spacing: -0.02em;
    }

    .button {
      background: linear-gradient(180deg, var(--accent-2), var(--accent));
      color: #fff;
      box-shadow: 0 12px 24px rgba(138, 61, 18, 0.18);
      border: none;
    }

    .button-secondary {
      background: linear-gradient(180deg, #315f95, var(--info));
      color: #fff;
      box-shadow: 0 12px 24px rgba(35, 74, 120, 0.18);
      border: none;
    }

    .button:hover,
    .button-secondary:hover {
      transform: translateY(-2px) scale(1.01);
    }

    .button:active,
    .button-secondary:active {
      transform: translateY(0) scale(0.99);
    }

    .table-shell {
      margin-top: 18px;
      overflow: hidden;
    }

    .table-topbar {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      padding: 18px 18px 0;
    }

    .table-topbar h2 {
      font-size: clamp(1.4rem, 2vw, 2rem);
    }

    .table-topbar p {
      margin: 0;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .table-wrap {
      overflow: auto;
      padding: 18px;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 1040px;
      background: transparent;
    }

    thead th {
      position: sticky;
      top: 0;
      z-index: 1;
      text-align: left;
      font-family: "Space Grotesk", sans-serif;
      font-size: 0.95rem;
      letter-spacing: -0.02em;
      background: #f5ede1;
      color: var(--ink);
      border-bottom: 1px solid var(--line);
      padding: 14px 16px;
      white-space: nowrap;
    }

    tbody td {
      padding: 14px 16px;
      border-bottom: 1px solid var(--line);
      vertical-align: top;
      font-size: 0.95rem;
      line-height: 1.55;
    }

    tbody tr {
      transition: background 0.2s ease, transform 0.2s ease;
    }

    tbody tr:hover {
      background: rgba(200, 109, 44, 0.06);
    }

    .col-nim {
      font-variant-numeric: tabular-nums;
      font-weight: 600;
      white-space: nowrap;
    }

    .col-prodi {
      white-space: nowrap;
      color: var(--accent);
      font-weight: 600;
    }

    .col-lulus {
      white-space: nowrap;
    }

    .badge-lulus {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(36, 92, 58, 0.09);
      color: var(--success);
      font-weight: 600;
      font-size: 0.84rem;
    }

    .badge-lulus::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: currentColor;
    }

    mark {
      background: linear-gradient(180deg, rgba(255, 231, 106, 0.35), rgba(255, 231, 106, 0.95));
      color: var(--mark-ink);
      padding: 0.02em 0.12em;
      border-radius: 0.18em;
      box-shadow: inset 0 -0.08em 0 rgba(0, 0, 0, 0.06);
    }

    .empty-state,
    .loading-state,
    .error-state {
      padding: 32px 18px 8px;
      color: var(--muted);
      font-size: 1rem;
    }

    .error-state {
      color: #8b1e1e;
    }

    .pagination {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
      padding: 0 18px 18px;
    }

    .pagination-info {
      color: var(--muted);
      font-size: 0.94rem;
    }

    .pagination-controls {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .page-btn {
      min-width: 42px;
      height: 42px;
      border-radius: 12px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.82);
      color: var(--ink);
      font: inherit;
      font-weight: 600;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .page-btn:hover:not(:disabled) {
      border-color: rgba(138, 61, 18, 0.35);
      background: #fff;
      transform: translateY(-1px);
    }

    .page-btn.active {
      background: var(--accent);
      color: #fff;
      border-color: var(--accent);
      box-shadow: 0 10px 20px rgba(138, 61, 18, 0.16);
    }

    .page-btn:disabled {
      opacity: 0.45;
      cursor: not-allowed;
    }

    .footer-panel {
      padding: 18px 22px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      margin-top: 18px;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .stagger-1 { animation: rise 0.75s ease both; animation-delay: 0.05s; }
    .stagger-2 { animation: rise 0.75s ease both; animation-delay: 0.14s; }
    .stagger-3 { animation: rise 0.75s ease both; animation-delay: 0.22s; }

    @keyframes rise {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 1200px) {
      .controls-grid {
        grid-template-columns: repeat(3, minmax(160px, 1fr));
      }
    }

    @media (max-width: 980px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }

      .controls-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 20px, var(--container));
      }

      .hero {
        padding-top: 20px;
      }

      .controls-grid {
        grid-template-columns: 1fr;
      }

      .table-topbar,
      .table-wrap,
      .pagination,
      .controls {
        padding-left: 14px;
        padding-right: 14px;
      }

      .pagination {
        align-items: stretch;
      }

      .pagination-controls {
        width: 100%;
      }

      .button,
      .button-secondary {
        width: 100%;
      }
    }
	
	/* Wadah luar untuk menyembunyikan teks yang keluar batas */
	.marquee-container {
		width: 100%;
		overflow: hidden;
		white-space: nowrap;
		//background-color: #f1f1f1;
		padding: 10px 0;
		//box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
	}

	/* Teks yang akan digerakkan */
	.marquee-text {
		display: inline-block;
		padding-left: 100%; /* Mulai teks dari ujung kanan luar */
		animation: jalan-kiri 15s linear infinite;
		//font-family: sans-serif;
		//font-size: 18px;
		//color: #333;
	}

	/* Berhenti berjalan saat kursor mouse diarahkan ke teks */
	.marquee-container:hover .marquee-text {
		animation-play-state: paused;
	}

	/* Definisi gerakan animasi */
	@keyframes jalan-kiri {
		0% {
			transform: translate3d(0, 0, 0);
		}
		100% {
			transform: translate3d(-100%, 0, 0);
		}
	}