body{
background:#000;
font-family:'Poppins',sans-serif;
}


/* ================= RADIO HERO ================= */

.radio-hero {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* BACKGROUND */
.radio-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;

  background-image: url("/images/radio.jpg");
  background-size: cover;
  background-position: center;

  filter: brightness(0.75);
  z-index: 1;
}

/* OVERLAY */
.radio-bg::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3),
    rgba(0,0,0,0.7)
  );
}

/* CONTENT */
.radio-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 20px;

  color: white !important;
}

/* TITLE */
.radio-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  letter-spacing: 4px;

  color: white !important;

  text-shadow:
    0 0 20px rgba(255,255,255,0.7),
    0 0 40px rgba(255,255,255,0.4);
}

/* TEXT HERO */
.radio-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  opacity: 0.9;
  text-align: center;

  color: white !important;
}

/* ================= TEXT SECTION ================= */

.vote-section {
  color: white !important;
}

.vote-wrapper {
  max-width: 750px;
  margin: auto;
  padding: 0 20px;
}

.vote-text {
  max-width: 680px;
  margin: auto;
  padding: 0 10px;
}

.vote-text p {
  color: white !important;
  opacity: 0.85;
  margin-bottom: 22px;
  line-height: 1.9;
  transition: 0.3s;
}

/* HOVER HALUS */
.vote-text p:hover {
  opacity: 1;
}

/* ================= NOTES ================= */

.jimin-voting-guide {
  max-width: 750px;
  margin: auto;
  padding: 80px 20px;
  color: white !important;
}

.guide-title {
  color: white !important;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  letter-spacing: 3px;
  margin-bottom: 40px;
}

.guide-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guide-list li {
  color: white !important;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
}

/* ICON */
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 28px;
  height: 28px;

  margin-right: 14px;

  border-radius: 50%;
  background: linear-gradient(135deg, #00e6ff, #0088ff);

  color: white;
  font-size: 16px;

  box-shadow: 0 4px 12px rgba(0,180,255,0.4);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .radio-hero {
    height: 65vh;
  }

  .radio-content h1 {
    font-size: 36px;
  }

  .radio-content p {
    font-size: 14px;
  }

  .vote-wrapper,
  .jimin-voting-guide {
    padding: 0 18px;
  }

  .vote-text p {
    font-size: 15px;
    line-height: 1.8;
  }

  .guide-title {
    font-size: 28px;
    text-align: center;
  }

  .guide-list {
    gap: 18px;
  }

}

/* ================= FOLLOW RADIO ================= */

.radio-follow {
  padding: 80px 20px;
  text-align: center;
}

.radio-follow-wrapper {
  max-width: 700px;
  margin: auto;
}

/* TEXT */
.radio-follow-text {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  opacity: 0.8;
  margin-bottom: 30px;
  color: white;
}

/* LINKS WRAPPER */
.radio-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ================= BUTTON ================= */

.radio-link {
  position: relative;

  display: inline-block;
  padding: 14px 20px;

  border-radius: 30px;

  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;

  color: white;
  border: 1px solid rgba(255,255,255,0.25);

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);

  overflow: hidden;

  transition: all 0.3s ease;

  box-shadow:
    0 0 10px rgba(255,255,255,0.1),
    inset 0 0 10px rgba(255,255,255,0.05);
}

/* GLOW BORDER */
.radio-link::after {
  content: "";
  position: absolute;
  inset: -2px;

  border-radius: 30px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.8),
    transparent
  );

  opacity: 0;
  transition: 0.4s;
}

/* SHINE */
.radio-link::before {
  content: "";
  position: absolute;

  top: 0;
  left: -120%;

  width: 120%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.9),
    transparent
  );

  transition: 0.6s;
}

/* HOVER */
.radio-link:hover {
  transform: translateY(-4px);

  background: rgba(255,255,255,0.12);

  box-shadow:
    0 15px 35px rgba(0,0,0,0.8),
    0 0 25px rgba(255,255,255,0.25),
    inset 0 0 15px rgba(255,255,255,0.15);

  border-color: white;
}

.radio-link:hover::before {
  left: 120%;
}

.radio-link:hover::after {
  opacity: 1;
}

/* CLICK */
.radio-link:active {
  transform: scale(0.95);

  background: white;
  color: black;

  box-shadow:
    0 5px 15px rgba(0,0,0,0.5);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .radio-follow {
    padding: 60px 18px;
  }

  .radio-follow-text {
    font-size: 14px;
  }

  .radio-link {
    font-size: 13px;
    padding: 13px 18px;
  }

}

/* ================= RADIO GUIDE ================= */

.radio-guide-section {
  padding: 100px 20px;
  text-align: center;
}

.radio-guide-wrapper {
  max-width: 750px;
  margin: auto;
}

/* IMAGE */
.radio-guide-img {
  margin: 40px 0;
}

.radio-guide-img img {
  width: 100%;
  max-width: 600px;
  height: 300px;

  object-fit: cover;

  border-radius: 20px;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.8);

  transition: 0.4s;
}

/* HOVER IMAGE */
.radio-guide-img img:hover {
  transform: scale(1.03);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.9),
    0 0 40px rgba(255,255,255,0.1);
}

/* LINKS spacing */
.radio-guide-section .radio-links {
  margin-top: 30px;
}

/* MOBILE */
@media (max-width: 768px) {

  .radio-guide-section {
    padding: 70px 18px;
  }

  .radio-guide-img img {
    height: 220px;
  }

}

/* ================= RADIO REQUEST ================= */

.radio-request {
  padding: 100px 20px;
  text-align: center;
}

.radio-follow-wrapper {
  max-width: 700px;
  margin: auto;
}

/* TEXT */
.radio-follow-text {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 25px;
  color: white;
}

/* IMAGE */
.radio-guide-img img {
  width: 100%;
  max-width: 600px;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  margin: 30px 0;

  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

/* LINKS */
.radio-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ================= BUTTON ================= */

.radio-link {
  position: relative;

  display: inline-block;
  padding: 14px 20px;

  border-radius: 30px;

  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;

  color: white;
  border: 1px solid rgba(255,255,255,0.25);

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);

  overflow: hidden;

  transition: all 0.3s ease;

  box-shadow:
    0 0 10px rgba(255,255,255,0.1),
    inset 0 0 10px rgba(255,255,255,0.05);
}

/* GLOW BORDER */
.radio-link::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.8),
    transparent
  );

  opacity: 0;
  transition: 0.4s;
}

/* SHINE */
.radio-link::before {
  content: "";
  position: absolute;

  top: 0;
  left: -120%;

  width: 120%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.9),
    transparent
  );

  transition: 0.6s;
}

/* HOVER */
.radio-link:hover {
  transform: translateY(-4px);

  background: rgba(255,255,255,0.12);

  box-shadow:
    0 15px 35px rgba(0,0,0,0.8),
    0 0 25px rgba(255,255,255,0.25),
    inset 0 0 15px rgba(255,255,255,0.15);

  border-color: white;
}

.radio-link:hover::before {
  left: 120%;
}

.radio-link:hover::after {
  opacity: 1;
}

/* CLICK */
.radio-link:active {
  transform: scale(0.95);
  background: white;
  color: black;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .radio-request {
    padding: 70px 18px;
  }

  .radio-guide-img img {
  width: 100%;
  max-width: 700px;

  height: auto; /* 🔥 BIAR FULL */
  object-fit: contain; /* 🔥 TIDAK KEPOTONG */

  border-radius: 20px;
  margin: 30px 0;

  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}


  .radio-follow-text {
    font-size: 14px;
  }

}

