:root {
  --bg: #000;
  --text: #fff;
  --maroon: #600000;
  --blue: #2f73c5;
  --link-color: #FFA1A1;
  --gold: #ffd27a;
  --orange: #ffa500;
}
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
}
html {
  scroll-behavior: smooth;
}
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #111;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(#600000, #ffcc66);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ffcc66;
}
body {
font: 500 0.875rem/1.5 system-ui, Arial, sans-serif;
background: linear-gradient(180deg,#1c1c1c,#000);
  color: var(--text);
}

::selection {
  background: #6a0dad;
  color: #fff;
}

a {
  position: relative;
  color: var(--link-color);
  text-decoration: none;
}

a:before {
 content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffff00;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
    transition: transform 0.3s ease, visibility 0.3s ease;
}

a:hover {
  cursor: url("/icon/cursor-white.png"), auto;
  color: #ffff00;
  text-shadow: 0 0 6px rgba(136,0,0,0.6);
}

a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Segoe UI", Arial, sans-serif;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 16px;
  color: #ffd27a;
  text-shadow: 2px 2px 6px rgba(96,0,0,0.7);
  border-bottom: 2px solid #600000;
  padding-bottom: 6px;
}
h2 {
  font-size: 15px;
  color: #f2f2f2;
  text-shadow: 0 0 6px rgba(47,115,197,0.6);
  padding-left: 8px;
}
h3 {
  font-size: 14px;
  color: #ffa500;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}
h4 {
  font-size: 13px;
  color: #ffcc66;
}
h5 {
  font-size: 12px;
  color: #ccc;
}
h6 {
  font-size: 11px;
  color: #888;
  font-style: italic;
}
hr {
  border: none;
  border-top: 1px solid #2f73c5;
  width: 90%;
  margin: 20px auto; 
  opacity: 0.7;
}

hr.smooth {
  border-top: 1px solid #ddd;
  width: 80%;
  margin: 30px auto;
  opacity: 0.6;
}

hr.thick {
  border-top: 2px solid #ff5722;
  width: 80%;
  margin: 30px auto;
}
p {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #e8e8e8;
  margin: 10px 0;
  padding: 5px 0;
  text-align: center;
  letter-spacing: 0.5px;
}
.txt {
  font-weight: bold;
  color: #fff;
}
#container {
  max-width:1100px;
  margin:auto;
  padding:15px;
}

#header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  position: relative;
}

#header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #600000,
    #ffcc66,
    #600000,
    transparent
  );
}
#logo img {
  width: 214px;
  height: auto;
  max-width: 100%;
  transition: 0.3s;
}

#logo img:hover {
  transform: scale(1.08);
}
#subtitle {
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 20px;
  color: #2f73c5;

  letter-spacing: 1.1px;
  font-style: italic;
  font-weight: 600;

  text-shadow: 0 0 6px rgba(47,115,197,0.4);
}

#nav {
  background: rgba(37, 37, 37, 0.95);
  margin: 4px 0 8px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
#menus {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  list-style: none;   
  border-radius: 0 0 10px 10px;
}
#menus li a {
  display: block;
  padding: 12px 15px;
  color: #f2f2f2;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  position: relative;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
}
#menus li a:hover {
  background: linear-gradient(
    90deg,
    rgba(47,115,197,0.15),
    rgba(0,0,0,0)
  );
  color: #ffd27a;
  padding-left: 18px;
  letter-spacing: 0.5px;
}
.show-menu {
  display: none;
  padding: 12px 15px;
  background: #252525;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.show-menu span {
  float: right;
}
#menu-toggle {
  display: none;
}
.special {
  font-family: "Trebuchet MS", sans-serif;
  width: 100%;
  background: #000;
  margin-bottom: 12px;
  border: 1px solid #2f73c5;
   box-shadow:
    inset 0 0 0 1px rgba(47,115,197,0.25),
    0 8px 18px rgba(0,0,0,0.75);
}
.special-row {
  display: flex;
transition: 0.2s;
}
.special-row > div {
  flex: 1;
  padding: 8px;
  font-size: 12px;
  text-align: center;
  color: #ffa500;
  border-right: 1px solid rgba(47,115,197,0.7);
  border-bottom: 1px solid rgba(47,115,197,0.4);
  transition: background 0.25s ease, color 0.25s ease;
}
.special-row > div img {
 max-width: 100%;
 height: 100%;
  display: block;
}
.special-row:hover > div {
  background: rgba(47,115,197,0.10);
  color: #ffd27a;
}
#content {
  display:flex;
  gap:20px;
}
.main-content { flex: 3; min-width: 0; }
.sidebar { flex: 1; }
/* Styling untuk sidebar */
.sidebar ul {
  list-style: none;
  padding: 10px;
  margin: 0;
}
.sidebar li {
  margin-left: 17px;
  list-style-image: url('/icon/bdt.png'); 
}
.sidebar li a {
  display: flex;
  align-items: center;
  padding: 10px 2px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  border-bottom: 1px solid #2a2a2a;
}
.card {
  background:#000;
  border: 1px solid var(--maroon);
  margin-bottom:10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  position:relative;
  padding: 2px;
}
.card-title {
  background:#400000;
  padding:8px;
  text-align:center;
  font-size: 15px;
  letter-spacing: 1px;
}
.card .special {
  margin-top: 60px;
}
.card-body {
  padding:3px;
  font:bold 14px/16px "times new roman", times, serif;
  color: #ffa500;
}
.desc {
  font-family: 'Roboto', 'Segoe UI', sans-serif;
  padding: 8px 12px;
  margin: 8px 0 10px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #bfbfbf;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(120, 20, 20, 0.85);
  border-left: 3px solid rgba(140, 30, 30, 0.95);
  border-radius: 6px;
  box-shadow:
  inset 0 0 6px rgba(96,0,0,0.15),
  0 2px 6px rgba(0,0,0,0.4);
  transition: all 0.2s ease;
}
.info-box {
  margin-bottom: 10px;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  color: #bfbfbf;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(47,115,197,0.6);
  border-left: 3px solid var(--blue);
  border-radius: 6px;
  box-shadow:
    inset 0 0 6px rgba(47,115,197,0.15),
    0 2px 6px rgba(0,0,0,0.4);

  transition: all 0.2s ease;
}
.related-posts {
  background: linear-gradient(180deg, #080808, #000);
  border: 1px solid rgba(47, 115, 197, 0.25);
  padding: 20px;
  margin: 40px 0 22px;
  border-radius: 12px;
  
    box-shadow:
    0 20px 40px -10px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(47, 115, 197, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  position: relative;
  overflow: hidden;
}
.related-posts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--blue), var(--gold), transparent);
  opacity: 0.8;
  box-shadow: 0 0 10px var(--blue);
}
.related-posts h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
  padding: 6px 12px;
  color: transparent;
  background-image: linear-gradient(90deg, var(--gold), #fff, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  border-left: 3px solid var(--blue);
  background-color: rgba(47, 115, 197, 0.05);
  border-radius: 4px;
  letter-spacing: 1px;
}
.related-posts ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.related-posts ul li a {
  display: flex;
  align-items: center;
  padding: 12px 14px;

  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-left: 3px solid rgba(47, 115, 197, 0.5);

  font-size: 14px;
  text-decoration: none;
  border-radius: 6px;
  will-change: transform;

  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
  position: relative;
  overflow: hidden;
}
.related-posts ul li a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255,255,255,0.06) 50%,
    transparent 70%
  );

  transform: translateX(-100%) skewX(-20deg);
  transition: transform 0.6s ease;
}
.related-posts ul li a:hover::after {
   transform: translateX(100%) skewX(-20deg);
}
.related-posts ul li a:hover {
  background: rgba(47, 115, 197, 0.06);
  border-left-color: var(--gold);
  border-color: rgba(47, 115, 197, 0.12);
  transform: translateX(3px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.related-posts ul li a:active {
  transform: scale(0.98) translateX(1px);
}
.footer {
  background: #400000;
  padding: 15px;
  text-align: center;
  color: #e8e8e8;
  font-size: 13px;
}
.footer p {
  margin: 6px 0;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(232, 232, 232, 0.85);

  letter-spacing: 0.3px;

  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.footer p:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 6px;
}
.footer-powered {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-top: 20px;
}

.footer-powered a {
  color: #ffcc66;
  font-weight: bold;
  text-decoration: none;
}

.footer-powered a:hover {
  color: #ffd27a;
  text-decoration: underline;
}
@media (max-width: 768px) {

  /* ===== LAYOUT CONTENT ===== */
   #header {
    flex-direction: column;
    text-align: center;
  }
 #logo img {
    width: 190px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  #subtitle {
    font-size: 20px;
  }
  #container {
    padding: 5px;
  }
  #content {
    flex-direction: column;
    gap: 10px;
  }

 .main-content,
  .sidebar {
    width: 100%;
  }

  .sidebar {
    margin-top: 10px;
  }


  .special-row {
    flex-direction: column;
  }

  .special-row > div {
    border-right: none;
    border-bottom: 1px solid rgba(47,115,197,0.5);
    font-size: 13px;
    padding: 6px;
  }
  .show-menu {
    display: block;
    padding: 12px 15px;
    background: #252525;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
  }
  #menus {
    display: flex;
    flex-direction: column;
    background: #1a1a1a;
    margin: 0;
    padding: 0;
    backdrop-filter: blur(6px);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  }
  #menu-toggle:checked ~ #menus {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
  }

  #menus li {
    border-bottom: 1px solid #333;
  }

  #menus li a {
    display: block;
    padding: 12px 14px;
    font-size: 14px;
    color: #f2f2f2;
    text-shadow: 0 0 2px rgba(255,255,255,0.1);
    text-align: left;
    transition: all 0.2s ease;
  }

  #menus li a:active {
    transform: scale(0.97);
    background: rgba(96,0,0,0.5);
    color: #ffd27a;
  } 
}

