/* ===================================================
UMUM
======================================================*/

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cairo";
  src: url("/assets/fonts/Cairo-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  src: url("/assets/fonts/Cairo-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Amiri";
  src: url("/assets/fonts/Amiri-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Amiri";
  src: url("/assets/fonts/Amiri-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (max-width: 600px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 350px) {
  html {
    font-size: 12px;
  }
}

body {
  width: 100%;
  font-family: "Poppins", "Segoe UI", Helvetica, Arial, sans-serif;
  color: #fff;
  line-height: 1.5;
  font-size: 1rem;
  padding: 5rem 2rem;
  box-sizing: border-box;
  background-image: url("/images/umum/banner-depan.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.body-gradien {
  background: linear-gradient(
    135deg,
    #e8f7f7 0%,
    #c7f1ec 35%,
    #8bd8cf 70%,
    #5bc2b7 100%
  );
}

@media (max-width: 600px) {
  body {
    padding: 85px 10px;
  }
}

a,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: inherit;
  outline: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: inherit;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

/* ===================================================
HEADER
======================================================*/

#header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: #147574;
  border-radius: 0 0 25px 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 10px 20px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

#header .site-title {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

#header .site-title img {
  height: 1.5rem;
  width: auto;
  display: block;
  border-radius: 5px;
}

#hamburger {
  cursor: pointer;
  font-size: 1.6rem;
  user-select: none;
  display: none;
  background: none;
  border: none;
  color: #fff;
  transition: opacity 0.2s;
}

#hamburger:hover {
  opacity: 0.8;
}

#menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

#menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition:
    background 0.2s,
    opacity 0.2s;
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  white-space: nowrap;
}

#menu a:hover {
  background: rgba(255, 255, 255, 0.15);
}

#menu a.active {
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 900px) {
  #header {
    justify-content: space-between;
    padding: 10px 20px;
    gap: 0;
  }

  #hamburger {
    display: block;
  }

  #menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #147574;
    border-radius: 0 0 0 15px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
    padding: 1rem;
    gap: 0.5rem;
    animation: fadeInMenu 0.25s ease;
  }

  #menu a {
    width: 100%;
    text-align: left;
    padding: 0.6rem 1rem;
  }

  #menu a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  #menu.show {
    display: flex;
  }

  #header .site-title {
    font-size: 1.2rem;
    margin: 0 auto;
  }
}

@keyframes fadeInMenu {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================================
SEARCH GOOGLE
======================================================*/

.search-google {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #147574;
  padding: 1rem 0rem 1.5rem;
  border-radius: 1rem;
  max-width: 1500px;
  margin: 0 auto;
}

.sg-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0rem;
  color: #fff;
}

.sg-subtitle {
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #fff;
}

.sg-box {
  max-width: 400px;
  width: 90%;
  background: #fff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 0.8rem;
  margin: 0.2rem auto;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.09);
}

.sg-icon {
  font-size: 1.2rem;
}

.sg-typing-area {
  font-size: 1rem;
  font-weight: 500;
  flex: 1;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.sg-cursor {
  font-size: 20px;
  font-weight: 500;
  margin-left: 2px;
  animation: sg-blink 0.7s infinite;
}

.tasheel-highlight {
  font-weight: 700;
  color: #147574;
}

@keyframes sg-blink {
  0%,
  50% {
    opacity: 0;
  }
  51%,
  100% {
    opacity: 1;
  }
}

/* ===================================================
FITUR
======================================================*/

.fitur {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #147574;
  border-radius: 1rem;
  max-width: 1500px;
  margin: 0 auto;
  padding: 1.2rem 1rem 2rem;
}

.fitur-judul-utama {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.fitur-judul-utama2 {
  font-size: 1rem;
  text-align: center;
  font-weight: 700;
  color: #147574;
  margin: 0 auto 1rem;
  background: #fff;
  padding: 0.2rem 1rem;
  border-radius: 0.5rem;
  width: fit-content;
}

.fitur-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding: 0px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.fitur-card {
  position: relative;
  display: block;
  padding: 1rem 6.5rem 1rem 1rem;
  border-radius: 16px;
  background: linear-gradient(
    165deg,
    #38d6c9 0%,
    #2fc8bc 25%,
    #25b3a8 45%,
    #1e9f95 65%,
    #1e8a84 80%
  );

  color: #fff;
  text-decoration: none;
  overflow: hidden;
  width: 100%;
  max-width: 450px;
  height: 9rem;
  max-height: 11rem;
}

.fitur-badge {
  background: rgba(255, 255, 255, 0.95);
  color: #147574;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.3rem 1rem 0.2rem;
  border-radius: 0.5rem;
  display: inline-block;
}

.fitur-judul {
  margin-top: 5px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.fitur-text {
  font-size: 1rem;
  line-height: 1.2;
  opacity: 0.95;
}

.fitur-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 4rem;
  height: auto;
}

.fitur-card:hover {
  filter: brightness(1.07);
}

/* ===================================================
HERO HOME
======================================================*/

.hero {
  position: relative;
  width: 100%;
  height: 40rem;
  padding: 5rem 1rem;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  border-radius: 1rem;
  overflow: hidden;
  max-width: 1500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
}

.hero .judul-tasheel,
.hero .judul-arab {
  margin: 0.3rem 0 0.3rem 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 0.1rem 1rem 0.5rem;
  background: #147574;
  color: #fff;
  border-radius: 5px;
}

.judul-tasheel span {
  font-size: 1.2rem;
  font-weight: 500;
  font-style: italic;
}

.hero .judul-arab {
  margin: 0rem 0rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 0.3rem 1rem;
  background: none;
  color: #fff;
  border-radius: 5px;
}

.hero .judul-tasheel {
  margin-bottom: 0;
}

.hero .judul-utama {
  margin: 15px 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: none;
}
.hero .judul-negara {
  font-size: 1.2rem;
  margin-top: 0px;
  margin-bottom: 20px;
  text-shadow: none;
}

.hero .kotak-fitur {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 20px 25px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  color: #000;
  font-weight: 500;
}

.hero .kotak-fitur div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  line-height: 1.2;
}

.hero .kotak-fitur div:last-child {
  margin-bottom: 0;
}

.hero .kotak-fitur span {
  flex-shrink: 0;
  text-align: center;
  width: 24px;
}

/* ===================================================
IKLAN
======================================================*/

.iklan {
  width: 100%;
  max-width: 1500px;
  padding: 10px 0;
  margin: 0 auto;
  background: #147574;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(20, 117, 116, 0.1);
}

.iklan-pembungkus-kartu {
  margin-top: 0px;
  overflow: hidden;
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
  transition:
    max-height 0.3s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.iklan-pembungkus-kartu.hide {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.iklan-judul {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.iklan-judul2 {
  font-size: 1rem;
  color: #fff;
  text-align: center;
  margin: 0.5rem auto 1rem;
  font-style: italic;
  padding: 0 0.5rem;
  z-index: 99;
}

.tombol-toggle {
  display: block;
  margin: 5px auto 0px;
  padding: 0px 12px;
  background: #fff;
  color: #147574;
  border: 2px solid #147574;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
}

.iklan-slider {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 5px;
  padding: 5px;
  margin: -17px 0 10px 0;
  scroll-behavior: smooth;

  scrollbar-width: none;
}
.iklan-slider::-webkit-scrollbar {
  display: none;
}

.slide {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border-radius: 10px;
  height: 130px;
  padding: 5px;
}

.slide img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

@media (min-width: 650px) {
  .slide {
    height: 200px;
  }

  .iklan-slider {
    scrollbar-width: auto;
  }

  .iklan-slider::-webkit-scrollbar {
    display: block;
    height: 10px;
  }

  .iklan-slider::-webkit-scrollbar-track {
    background: #e6f4f3;
  }

  .iklan-slider::-webkit-scrollbar-thumb {
    background: #ffcc00;
    border-radius: 4px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===================================================
KARTU DINAMIS
======================================================*/

.konten {
  background: #147574;
  padding: 0.5rem 1rem 2rem;
  border-radius: 1rem;
}

@media (max-width: 600px) {
  .konten {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    padding: 0 0 2rem 0;
  }
}

.search-box {
  text-align: center;
  margin: 20px 0;
}
.search-box input {
  padding: 8px 14px;
  width: 90%;
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
}

.kartu {
  width: 100%;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
  overflow: hidden;
}
.kartu:hover {
  filter: brightness(0.6);
}
.kartu:active {
  filter: brightness(0.5);
}

.baris {
  display: flex;
  width: 100%;
}
.baris-1 {
  height: 5.3rem;
}
.baris-2 {
  height: 2rem;
}
.kolom-1 {
  flex: 0 0 9rem;
}
.kolom-2 {
  flex: 0 0 20rem;
}

.gambar-cover {
  background: center center / cover no-repeat;
  width: 9rem;
  height: auto;
}

.keterangan {
  padding: 0rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  background: #fff;
  position: relative;
}
h2.judul {
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}
.tag {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  width: fit-content;
  margin-top: 4px;
}

.tag span {
  background: #147574;
  color: #fff;
  padding: 0.1rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.buka-tutup {
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.buka-tutup.open {
  background: #ffcc00;
  color: #000;
}
.buka-tutup.closed {
  background: #ccc;
  color: #707070;
}
.buka-tutup.soon {
  background: #ccc;
  color: #000;
}

.perkiraan {
  background: #e0f2f1;
  padding: 0rem 0.5rem;
  color: #000;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.ikhwan-akhwat {
  position: absolute;
  bottom: 5px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ikhwan-akhwat img {
  width: 1.3rem;
  height: auto;
  display: block;
}

.pembungkus-kartu {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  grid-auto-columns: 26rem;
  gap: 1rem;
  padding: 1rem 1rem;
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pembungkus-kartu::-webkit-scrollbar {
  display: none;
}

.scrollbar {
  width: 100%;
  margin: 0.5rem auto;
  overflow-x: scroll;
  overflow-y: hidden;
}

.scrollbar-inner {
  height: 1px;
}

.scrollbar::-webkit-scrollbar {
  height: 20px;
}

.scrollbar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.scrollbar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  border: 0.35rem solid transparent;
  background-clip: content-box;
}

.scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.85);
}

@media (max-width: 600px) {
  .pembungkus-kartu {
    padding: 1rem 1rem;
    grid-auto-columns: 24rem;
  }

  .scrollbar::-webkit-scrollbar {
    height: 10px;
  }

  .scrollbar::-webkit-scrollbar-thumb {
    border: 0rem solid transparent;
    background-clip: content-box;
  }
}

/* ===================================================
POSTINGAN UNIVERSITAS
======================================================*/
.box-judul h1 {
  font-size: 1.5rem;
}
.box-artikel h2 {
  font-size: 1.1rem;
}
.box-artikel h3 {
  font-weight: 700;
}

@media (max-width: 600px) {
  .box-judul h1 {
    font-size: 1.2rem;
  }
}

.image-post {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 50px 70px;
  height: auto;

  display: flex;
  justify-content: center;
  align-items: center;
}

.image-post::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.image-post img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

@media (max-width: 600px) {
  .image-post {
    padding: 0;
  }

  .image-post img {
    width: 100%;
    height: auto;
    aspect-ratio: 700 / 400;
    border-radius: 20px;
  }
}

.box-judul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
  border-radius: 20px;
  background: #147574;
  width: 100%;
  max-width: 1200px;
  margin: 1.5rem auto 0;
}

.box-judul h1 {
  background: #fff;
  width: fit-content;
  color: #147574;
  padding: 5px 12px;
  border-radius: 6px;
  display: inline-block;
  margin: 0 auto;
}
.box-judul p {
  text-align: center;
}

.logo-post {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 5px;
  background: #fff;
}

.logo-post img {
  width: 50px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
}

.kartu-deadline-post {
  max-width: 400px;
  width: 100%;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin: 1.5rem auto 0;
}

@media (max-width: 600px) {
  .kartu-deadline-post {
    max-width: 300px;
  }
  .kartu-deadline-post .isi {
    padding: 0px;
  }
}

.kartu-deadline-post .judul {
  background-color: #147574;
  color: #fff;
  padding: 10px;
  text-align: center;
}

.kartu-deadline-post .judul p {
  font-size: 1.2rem;
  font-weight: 700;
}

.kartu-deadline-post .isi {
  padding: 10px 30px 20px 30px;
}

.kartu-deadline-post .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

.kartu-deadline-post .label {
  font-weight: 500;
  color: #707070;
  font-size: 1rem;
}

.kartu-deadline-post .value {
  font-weight: 700;
  color: #000;
}

.kartu-deadline-post .status-badge {
  padding: 2px 10px;
  border-radius: 15px;
  font-weight: 700;
}

.kartu-deadline-post .deadline {
  color: #e53935;
  font-weight: 700;
}

.kartu-deadline-post .warning {
  background-color: #ffcc00;
  padding: 1rem;
  margin-top: 10px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 2.5rem;
}

.kartu-deadline-post .warning-icon {
  color: #000;
  margin-right: 10px;
  font-size: 1.5rem;
}

.kartu-deadline-post .warning-text {
  color: #000;
  line-height: 1.2;
  font-size: 0.9rem;
}

.box-artikel {
  background: #147574;
  width: 100%;
  max-width: 1200px;
  padding: 0 1.5rem 1rem 1.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin: 1.5rem auto 0;
}

.box-artikel h2 {
  background: #fff;
  width: fit-content;
  color: #147574;
  padding: 0.2rem 0.7rem;
  border-radius: 6px;
  display: inline-block;
  margin: 1.5rem 0 0.5rem 0;
}

.box-artikel p {
  text-align: justify;
}
.box-artikel ul {
  padding: 0 0 0 1rem;
}
.box-artikel a {
  display: inline-block;
  color: #ffcc00;
  background: none;
  font-weight: 300;
  text-decoration: underline;
  word-break: break-word;
  overflow-wrap: anywhere;
  padding: 0 0 0.5rem 0.5rem;
}

.box-artikel a:hover {
  color: #fcaf45;
}

.box-artikel img {
  width: 80%;
  max-width: 500px;
  display: block;
  margin: 0.5rem 0 0 0;
  border-radius: 3%;
}

@media (max-width: 600px) {
  .box-artikel img {
    width: 100%;
    margin: 0 auto;
  }
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  border-radius: 15px;
  margin: 20px auto;
  cursor: pointer;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  transition: opacity 0.3s ease;
}
.box-artikel .video-wrapper img {
  width: 100%;
  height: 100%;
  max-width: unset;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
}
.video-wrapper .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 2.5rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.video-wrapper .play-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%) scale(1.05);
}

.btn-copy-santrisaudi {
  display: inline-flex;
  align-self: flex-end;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #fff;
  color: #147574;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
  -webkit-tap-highlight-color: transparent;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  font-size: 14px;
}
.btn-copy-santrisaudi:hover,
.btn-copy-santrisaudi:active,
.btn-copy-santrisaudi:focus {
  background: #ffcc00;
  color: #147574;
}

.toast-santrisaudi {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 220px;
  padding: 12px 16px;
  background: #000;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  z-index: 999;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}
.toast-santrisaudi.show {
  visibility: visible;
  opacity: 1;
}

/* ===================================================
STATISTIK
======================================================*/

.rank-statistik {
  list-style: none;
  max-width: 1500px;
  padding: 20px;
  border-radius: 20px;
  width: 100%;
  background: #147574;
  margin: auto;
}

.note-statistik {
  background: linear-gradient(135deg, #e8f7f7 0%, #d4f0f0 100%);
  border-radius: 12px;
  padding: 20px;
  margin: 10px auto;
  box-shadow: 0 4px 12px rgba(20, 117, 116, 0.2);
  max-width: 1000px;
}

.note-text h1 {
  font-size: 1.5rem;
  line-height: 1.2;
  color: #147574;
  font-weight: 600;
  margin-bottom: 0.3em;
}

.note-text p {
  margin: 0;
  font-size: 1rem;
  color: #555;
  line-height: 1.2;
  margin-bottom: 0.3em;
}

.note-text i {
  color: #147574;
  font-style: italic;
}

.card-statistik {
  background: linear-gradient(135deg, #fff 0%, #f0f9f9 100%);
  border-radius: 12px;
  padding: 18px;
  margin: 12px auto;
  box-shadow: 0 3px 10px rgba(20, 117, 116, 0.15);
  max-width: 1000px;
  border: 1px solid #d1eaea;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.card-statistik:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(20, 117, 116, 0.25);
}

.row-statistik {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.left-statistik {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rank-num-statistik {
  background: linear-gradient(135deg, #147574 0%, #0f5c5b 100%);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.country-statistik {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #147574;
  font-size: 1.1rem;
  font-weight: 700;
}

.country-statistik img {
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.count-statistik {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  background: #2b62e3;
  padding: 4px 10px;
  border-radius: 20px;
}

.bar-statistik {
  background: #fff;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.5);
}

.fill-statistik {
  background: #2b62e3;
  height: 100%;
  border-radius: 5px;
  transition: width 1s ease-in-out;
  width: 0;
  box-shadow: 0 1px 3px rgba(20, 117, 116, 0.4);
}

/* ===================================================
TENTANG KAMI
======================================================*/

.tentang {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(20, 117, 116, 0.8);
  border-radius: 15px;
}

.tentang h1 {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.2;
}

.card {
  max-width: 1000px;
  padding: 2rem;
  margin: 20px auto;
  border-radius: 1rem;
  background: linear-gradient(135deg, #e8f7f7 0%, #c7f1ec 35%);
}

.card h2 {
  color: #147574;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 2px solid #147574;
  padding-bottom: 10px;
}

.card p {
  color: #2d4a4a;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 20px;
}

.card p b {
  color: #147574;
  font-weight: 600;
}

.card ul {
  color: #2d4a4a;
  line-height: 1.8;
  font-size: 1rem;
  padding-left: 20px;
}

.card ul li {
  margin-bottom: 10px;
}

.info-btn {
  display: inline-block;
  background: linear-gradient(135deg, #147574 0%, #0d5252 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(20, 117, 116, 0.3);
  margin-top: 15px;
}

.info-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 117, 116, 0.4);
  background: linear-gradient(135deg, #0d5252 0%, #147574 100%);
}

/* ===================================================
PPMI
======================================================*/

.pembungkus-card-ppmi {
  width: 100%;
  background: linear-gradient(135deg, #147574 0%, #0d5252 100%);
  color: white;
  font-family: "Poppins", sans-serif;
  padding: 40px 20px;
  border-radius: 25px;
}

.judul-utama-ppmi {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}
.judul-utama-ppmi span {
  display: inline-block;
  background: #fff;
  border-radius: 40px;
  padding: 8px 16px;
  color: #147574;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 10px;
}

.grid-ppmi {
  display: grid;
  justify-content: center;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, 350px);
}

.card-ppmi {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: 0.2s;
  line-height: 1.1;
  display: block;
  box-shadow: 0 4px 15px rgba(20, 117, 116, 0.1);
}

.card-ppmi:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(20, 117, 116, 0.2);
}

.card-header-ppmi {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #e8f7f7 0%, #d4f0f0 100%);
  padding: 15px;
  color: #2d4a4a;
  height: 5.5rem;
  border-bottom: 1px solid #b8e0e0;
}

.profile-img-ppmi {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
  position: relative;
  padding: 3px;
  background: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d,
    #f56040,
    #f77737,
    #fcaf45,
    #ffdc80
  );
}

.profile-img-ppmi::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: white;
  border-radius: 50%;
  z-index: -1;
}

.profile-info-ppmi h3 {
  margin-bottom: 5px;
  color: #147574;
  font-weight: 600;
}
.profile-info-ppmi p {
  color: #5a7a7a;
  font-size: 0.9rem;
}

.stats-ppmi {
  display: flex;
  justify-content: space-around;
  padding: 10px 0 14px;
  background: #f0f7f7;
  text-align: center;
  border-top: 1px solid #e0ecec;
}

.stats-ppmi div strong {
  display: block;
  line-height: 1.2;
  color: #147574;
  font-weight: 700;
}

.stats-ppmi div {
  font-size: 0.9rem;
  color: #6b8e8e;
  line-height: 1.2;
}

/* ===================================================
IG REDAKSI ATRIBUSI
======================================================*/

.ig-redaksi-pembungkus-card {
  width: 100%;
  background: linear-gradient(135deg, #147574 0%, #0d5252 100%);
  color: white;
  font-family: "Poppins", sans-serif;
  padding: 2rem 1rem;
  border-radius: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ig-redaksi-judul-utama {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.ig-redaksi-judul-utama span {
  display: inline-block;
  background: none;
  border-radius: 1rem;
  padding: 0.3rem 1rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.8rem;
  font-style: italic;
}

.ig-redaksi-grid {
  display: grid;
  justify-content: center;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, 20rem);
}

.ig-redaksi-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  transition: 0.2s;
  line-height: 1.1;
  display: block;
  box-shadow: 0 4px 15px rgba(20, 117, 116, 0.1);
}

.ig-redaksi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(20, 117, 116, 0.2);
}

.ig-redaksi-card-header {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #e8f7f7 0%, #d4f0f0 100%);
  padding: 1rem;
  color: #2d4a4a;
  height: 4.5rem;
  border-bottom: 1px solid #b8e0e0;
}

.ig-redaksi-profile-img {
  width: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
  position: relative;
  padding: 3px;
  background: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d,
    #f56040,
    #f77737,
    #fcaf45,
    #ffdc80
  );
}

.ig-redaksi-profile-img::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: white;
  border-radius: 50%;
  z-index: -1;
}

.ig-redaksi-profile-info h3 {
  margin-bottom: 5px;
  color: #147574;
  font-weight: 600;
}

.ig-redaksi-profile-info p {
  color: #5a7a7a;
  font-size: 0.9rem;
}

.ig-redaksi-stats {
  display: flex;
  justify-content: space-around;
  padding: 10px 0 14px;
  background: #f0f7f7;
  text-align: center;
  border-top: 1px solid #e0ecec;
}

.ig-redaksi-stats div {
  font-size: 0.9rem;
  color: #6b8e8e;
  line-height: 1.2;
}
.ig-redaksi-tombol-daftar {
  background: #fff;
  border-radius: 1rem;
  padding: 0.3rem 1rem;
  color: #147574;
  font-weight: 700;
  font-size: 0.8rem;
  width: fit-content;
  margin: 0.8rem auto;
  display: block;
}

/* ===================================================
REKOMENDASI
======================================================*/

.s-rek-cetak {
  font-size: 18px;
}
@media (max-width: 1000px) {
  .s-rek-cetak {
    font-size: 14px;
  }
}
@media (max-width: 800px) {
  .s-rek-cetak {
    font-size: 10px;
  }
}
@media (max-width: 600px) {
  .s-rek-cetak {
    font-size: 6px;
  }
}

.s-rek-a4 {
  width: 100%;
  max-width: 50em;
  background: white;
  border: 1px solid #ddd;
  margin: 0 auto 2em;
  padding: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1 / 1.4142;
  height: auto;
}

.s-rek-kop {
  width: 100%;
  display: block;
}

.s-rek-isi {
  padding: 0 3.7em 2.5em 3.7em;
  direction: rtl;
  text-align: right;
  line-height: 1.9;
}

.s-rek-teks {
  font-size: 1em;
  text-align: justify;
  color: #000;
  margin-top: 1.5em;
}

.s-rek-teks p {
  margin: 0 0 0.8em 0;
  line-height: 1.9;
}

.s-rek-control {
  width: 100%;
  max-width: 50em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1em;
  margin: 0 auto;
  padding: 0;
}

#s-rek-status {
  font-size: 16px;
  font-weight: 700;
  color: #147574;
  text-align: center;
}

#s-rek-progress-box {
  width: 350px;
  max-width: 100%;
  height: 10px;
  background: #d4d4d4;
  border-radius: 5px;
  overflow: hidden;
  display: none;
  margin: 0 auto;
}

#s-rek-progress {
  width: 0%;
  height: 100%;
  background: #147574;
  transition: width 0.2s;
}

.s-rek-ttd-wrap {
  margin-top: -1em;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 3em;
}

.s-rek-ttd {
  height: 5em;
  width: auto;
  transform: rotate(-3deg);
  opacity: 0.95;
  z-index: 1;
}

.s-rek-stempel {
  height: 3em;
  width: auto;
  opacity: 0.93;
  transform: rotate(2deg) translate(6em, 0.5em);
}

@media (max-width: 600px) {
  #s-rek-status {
    font-size: 12px;
  }
  #s-rek-progress-box {
    height: 8px;
  }
}
