/* === GENERAL === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: #eee; 
  font-family: 'Oswald', sans-serif;
}

a:hover {
  color: red;
}

/* === SPACING === */
.top-space,
.space {
  width: 100%;
}

.top-space {
  height: 30px;
}

.space {
  height: 50px;
}

/* === CONTAINERS === */
.container2,
.lassres {
  width: 65%;
  margin: auto;
  box-sizing: border-box;
}

.content {
  width: 100%;
  border: 1px solid #e05d00;
  width: 100%;
  background: #ffffff;
  border: 1px solid #ff0000;
  border-radius: 22px;
  border-bottom: 4px solid #ff0000;
}

/* === HEADER / LOGO === */
.logo-header {
  text-align: center;
  padding: 30px 15px;
  background: linear-gradient(145deg, #ddb2b2, #ffffff);
  border-top: 4px solid #ff0000;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  border-radius: 24px;
}

.logo-header h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(36px, 6vw, 64px);
  color: #797979;
  text-shadow: 5px 5px 2px rgba(0, 0, 0, 0.2);
  margin: 0;
  letter-spacing: 2px;
}

.logo-header h1 span {
  font-family: 'Lobster', cursive;
  color: #ff0000;
  font-size: 1.2em;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* === NAVIGATION === */
.menumonyetbali {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 8px 0;
  text-align: center;
  background: linear-gradient(0deg, #ff0000, #ff2121 25%, #e72d2d 50%, #ff4747 75%, #ffb4b4);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  border-radius: 12px;
}

.menumonyetbali a {
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
  background-color: transparent;
}

.menumonyetbali a:hover {
  background: #b70000;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .menumonyetbali {
    flex-direction: column;
  }
  .menumonyetbali a {
    display: block;
    width: 80%;
    font-size: 16px;
    border: 1px solid #fff;
    background-color: rgba(255,255,255,0.1);
  }
}

/* === BANNERS === */
.banner,
.banner1,
.banner2,
.headerbanner {
  display: block;
  text-align: center;
}

.banner img,
.banner1 img,
.banner2 img,
.headerbanner img,
.banner-top img,
.banner-float img {
  display: block;
  width: 100%;
  margin: 0;
}

.banner1 img,
.floating-top img,
.floating-bottom img {
  width: 49%;
}

.banner-top img,
.banner-float img {
  width: 728px;
}

/* === FLOATING ELEMENTS === */
.floating-top,
.floating-bottom,
.banner-float {
  position: fixed;
  width: 100%;
  text-align: center;
  z-index: 1001;
  left: 0;
  padding: 0;
}

.floating-top {
  top: 0;
  background: transparent;
}

.floating-bottom {
  bottom: 0;
  background: transparent;
}

.banner-float {
  bottom: 0;
  z-index: 9999;
}

/* === TYPOGRAPHY === */
h1, h2, h3 {
  text-align: center;
}

h3 {
  font-family: Arial, sans-serif;
  margin: 40px 0;
  font-size: 28px;
  color: black;
}

.title-head,
.title-footer {
  font-size: 24px;
  text-decoration: none;
  color: black;
}

.title-footer {
  font-size: 28px;
}

.content p {
  font-size: 16px;
  color: #000;
  margin: 10px;
}

/* === TABLES & FORMS === */
.t1, .t2, .t3 {
  padding: 5px 0 5px 10px;
  border: 1px solid #989898;
  background: #fff;
  font-size: 16px;
}

.t1 { width: 40%; }
.t2, .t3 { width: 30%; }

.lassres table {
  width: 100%;
  border: 1px solid white;
}

.lassres img {
  max-width: 100%;
  height: auto;
  padding-top: 1px;
}

/* === OUT LINKS === */
.out-link {
  list-style-type: square;
  margin: 0 35px;
  color: white;
}

.out-link a {
  text-decoration: none;
  color: white;
}

/* === IKLAN === */
.iklan,
.iklan img {
  width: 100%;
}

/* === FAQ === */
.faq {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: #fff8f0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: 'Oswald', sans-serif;
}

.faq h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #ff0000;
}

.faq details {
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid #ffb347;
  border-radius: 8px;
  padding: 10px 15px;
}

.faq summary {
  font-weight: bold;
  cursor: pointer;
  color: #ff0000;
}

.faq summary:hover {
  text-decoration: underline;
}

.faq p {
  margin-top: 10px;
  color: #333;
}

/* === FOOTER WARNING === */
.footer-warning {
  background: #ffefef;
  border-top: 2px solid #ff0000;
  padding: 20px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  color: #333;
  margin-top: 40px;
  border-radius: 22px 22px;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
}

.footer-warning p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-warning p strong {
  color: #ff0000;
  font-weight: bold;
}

.footer-warning .disclaimer {
  font-size: 12px;
  color: #666;
  font-style: italic;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1000px) {
  .floating-top img,
  .floating-bottom img,
  .headerbanner img,
  .banner1 img,
  .banner2 img,
  .banner-top img,
  .banner-float img {
    width: 100%;
  }

  .container2,
  .lassres {
    width: 100%;
  }

  .banner img {
    display: inline-block;
    width: 48%;
    margin: 5px;
  }

  h3,
  .title-footer {
    font-size: 14px;
  }

  .banner {
    background: #3a3a3a;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-warning {
    padding: 15px 10px;
  }

  .footer-warning p {
    font-size: 13px;
  }

  .footer-warning .disclaimer {
    font-size: 11px;
  }
}

@media (max-width: 550px) {
  .logo {
    width: 205px;
    margin: auto;
  }

  .banner1 img {
    width: 100%;
  }
}

.asu{font-weight:100}.e1,.e2,.e3,.e4,.e5,.e6,.e7,.e8,.e9,.e0{background-color:#ff4d4d;border-radius:0;color:#fff}.k1,.k2,.k3,.k4,.k5,.k6,.k7,.k8,.k9,.k0{background-color:green;border-radius:0;color:#fff}.c1,.c2,.c3,.c4,.c5,.c6,.c7,.c8,.c9,.c0{background-color:blue;border-radius:0;color:#fff}.a1,.a2,.a3,.a4,.a5,.a6,.a7,.a8,.a9,.a0{background-color:orange;border-radius:0;color:#fff}.highlight{padding:1px 4px;margin:0 -4px}input.cari{width:50px;text-align:center;color:red;font-weight:700;background:#f0f7f2}#rb{background:#ffe000;}

fieldset {border: none;margin: 0;padding: 0;list-style: none;vertical-align: baseline;}  .head th{background:#9C1512;color:#fff}.entry-content th,.entry-content td,.comment-content th,.comment-content td{padding:0!important}textarea{width:100%}.asux{background:none repeat scroll 0 0 #fff;color:#d7d1d1;font-weight:400}tr:nth-last-child(5n+1){background:none repeat scroll 0 0 #e8e4e7!important}.colormenu{background:none 0 0 repeat scroll #d9d9d9;border:2px solid #d9d9d9;width:796px;height: 30px; center: unset;z-index:99999;padding:0;max-width:100%;margin-bottom:10px}.colormenu.fixed{position:fixed;height: 30px; center: unset;width: 796px;top:0;left:0}.intro td{background:none repeat scroll 0 0 #ffffff!important}table{background:#fff none repeat scroll 0 0;margin:1px;min-width:500px}#drawing-table thead td{background: #dd9933!important;width:100%;background: #0000f4 !important;margin:0;margin-top:10px}#drawing-table td {border: 1px solid #d9d9d9;text-align: center;padding: 0;font-family: 'Roboto', sans-serif;font-size: 13px;font-weight: bold;padding: 3px 0 3px 0;}#color-selector .color{float:left;height:25px;position:relative;width:11%;cursor:pointer}#color-selector .color.eraser{background:none repeat scroll 0 0 #fff}#color-selector .color.Blue{background:#43a2ff}#color-selector .color.Aqua{background:#00F5FF}#color-selector .color.Teal{background:#43CD80}#color-selector .color.Lime{background:#01FF70}#color-selector .color.Yellow{background:#FFDC00}#color-selector .color.Orange{background:#FF851B}#color-selector .color.Red{background:#FF4136}#color-selector .color.Pink{background:#F012BE}#color-selector .color.Purple{background:#A23BEC}#color-selector .color.Silver{background:#a9a9a9}#color-selector .selected{box-shadow:inset 0 0 0 2px #000}#btnSubmit{float:left;margin-top:0;font-size:9px;background:#333;color:#FFF;font-weight:600;border:none;height:25px;line-height:25px;width:10%;cursor:pointer;text-transform:uppercase}#table-wrap{font-weight:700;position:relative}#table-wrap table{position:relative;z-index:10}#toggle-tracing-mode{display:none}#html-wrap textarea{height:50px;margin:0 0 10px;overflow:auto;width:100%}#btnSubmit{float:left;margin-top:0}@media (max-width:767px){#drawing-table{min-width:100%;margin-right:-10px;margin-left:-10px}}@media (max-width:370px){#drawing-table td{font-size:10px}}