/* =============== RESET =============== */
*{margin:0;padding:0;box-sizing:border-box}
html,body{height:100%}
body{
  font-family:'Poppins',sans-serif;
  color:#fff;
  overflow-x: hidden;
}

/* =============== VIDEO BACKGROUND =============== */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

#bgVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.7);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}

/* =============== MAIN CONTENT =============== */
.page{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
  position:relative;
  z-index: 1;
}

/* =============== CARD (DENGAN BORDER LUAR KHUSUS) =============== */
.card{
  width:min(650px,92vw);
  border-radius:16px;
  padding:20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.5),
    inset 0 0 20px rgba(255, 210, 0, 0.05);
  animation: cardAppear 0.8s ease-out;
  
  /* BORDER LUAR KHUSUS */
  position: relative;
  overflow: hidden;
}

@keyframes cardAppear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Border luar dengan efek gradient */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  
  /* Gradient border multi-warna */
  background: linear-gradient(
    45deg,
    rgba(255, 210, 0, 0.8) 0%,
    rgba(255, 165, 0, 0.8) 25%,
    rgba(255, 140, 0, 0.8) 50%,
    rgba(255, 165, 0, 0.8) 75%,
    rgba(255, 210, 0, 0.8) 100%
  );
  
  padding: 2px;
  
  /* Mask untuk membuat hanya border yang terlihat */
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  
  z-index: 0;
  pointer-events: none;
}

/* Efek glow di luar border */
.card::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(
    45deg,
    rgba(255, 210, 0, 0.3) 0%,
    rgba(255, 165, 0, 0.3) 25%,
    rgba(255, 140, 0, 0.3) 50%,
    rgba(255, 165, 0, 0.3) 75%,
    rgba(255, 210, 0, 0.3) 100%
  );
  border-radius: 20px;
  z-index: -1;
  filter: blur(8px);
  pointer-events: none;
  animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

.card-inner{
  padding:10px;
  position: relative;
  z-index: 1;
}

/* Corner decorations */
.corner-decoration {
  position: absolute;
  width: 30px;
  height: 30px;
  z-index: 2;
  pointer-events: none;
}

.corner-tl {
  top: 10px;
  left: 10px;
  border-top: 2px solid #ffd200;
  border-left: 2px solid #ffd200;
  border-radius: 6px 0 0 0;
}

.corner-tr {
  top: 10px;
  right: 10px;
  border-top: 2px solid #ffd200;
  border-right: 2px solid #ffd200;
  border-radius: 0 6px 0 0;
}

.corner-bl {
  bottom: 10px;
  left: 10px;
  border-bottom: 2px solid #ffd200;
  border-left: 2px solid #ffd200;
  border-radius: 0 0 0 6px;
}

.corner-br {
  bottom: 10px;
  right: 10px;
  border-bottom: 2px solid #ffd200;
  border-right: 2px solid #ffd200;
  border-radius: 0 0 6px 0;
}

/* =============== HEADER =============== */
.logo-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 30px;
  min-height: 60px;
  position: relative;
  padding: 15px 0;
}

.logo-container {
  position: relative;
  display: contents;
  padding: 15px 30px;
  border-radius: 20px;
  background: rgba(255, 210, 0, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: 
    inset 0 0 30px rgba(255, 210, 0, 0.1),
    0 10px 40px rgba(0, 0, 0, 0.4);
}

.logo{
  height: 150px;
  opacity: 0.95;
  filter: 
    drop-shadow(0 0 10px rgba(255, 210, 0, 0.6))
    drop-shadow(0 0 20px rgba(255, 210, 0, 0.3))
    drop-shadow(0 0 30px rgba(255, 210, 0, 0.1));
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    filter: 
      drop-shadow(0 0 10px rgba(255, 210, 0, 0.6))
      drop-shadow(0 0 20px rgba(255, 210, 0, 0.3))
      drop-shadow(0 0 30px rgba(255, 210, 0, 0.1));
  }
  50% {
    transform: scale(1.05);
    filter: 
      drop-shadow(0 0 15px rgba(255, 210, 0, 0.8))
      drop-shadow(0 0 30px rgba(255, 210, 0, 0.4))
      drop-shadow(0 0 45px rgba(255, 210, 0, 0.2));
  }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.logo:hover {
  animation: none;
  transform: scale(1.1) rotate(3deg);
  filter: 
    drop-shadow(0 0 20px rgba(255, 210, 0, 0.9))
    drop-shadow(0 0 40px rgba(255, 210, 0, 0.5))
    drop-shadow(0 0 60px rgba(255, 210, 0, 0.2));
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 80px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 210, 0, 0.4) 0%,
    rgba(255, 210, 0, 0.2) 30%,
    rgba(255, 210, 0, 0.1) 50%,
    transparent 70%
  );
  filter: blur(25px);
  z-index: 1;
  animation: glowPulse 4s ease-in-out infinite;
  border-radius: 40px;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.logo-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 210, 0, 0.7);
  border-radius: 50%;
  animation: particleFloat 6s linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(var(--tx, 0));
    opacity: 0;
  }
}

.headline{
  text-align:center;
  font-weight:800;
  letter-spacing:2px;
  line-height:1;
  margin-top:8px;
  margin-bottom:15px;
  font-size:48px;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
}
.headline-white{color:#fff;text-shadow: 0 0 10px rgba(255, 255, 255, 0.3)}
.headline-yellow{
  color:#ffd200;
  text-shadow: 
    0 0 15px rgba(255, 210, 0, 0.5),
    0 0 30px rgba(255, 210, 0, 0.2);
}
.sub{
  text-align:center;
  font-size:15px;
  opacity:.95;
  margin-bottom:16px;
  font-weight:500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.guide-link{
  display:block;
  text-align:center;
  color:#ffd200;
  font-weight:700;
  text-decoration:underline;
  margin-bottom:24px;
  cursor:pointer;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.2s;
}
.guide-link:hover {
  color: #ffda33;
  text-shadow: 0 0 10px rgba(255, 210, 0, 0.5);
}

/* =============== FORM LAYOUT =============== */
.form{width:100%}
.row{
  display:grid;
  grid-template-columns: 150px 1fr;
  gap:16px;
  align-items:center;
  margin: 16px 0;
}
.lbl{
  font-size:15px;
  font-weight:600;
  opacity:.95;
  text-align:left;
  padding-left:8px;
  line-height:1.1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.fld{
  width:100%;
  height:46px;
  border-radius:12px;
  background:rgba(20,20,20,0.5);
  color:#fff;
  padding:0 16px;
  outline:none;
  font-size:15px;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
  box-shadow: 
    inset 0 0 0 1px rgba(255,210,0,0.3),
    0 4px 12px rgba(0, 0, 0, 0.2);
}
.fld:hover{
  background:rgba(25,25,25,0.6);
  box-shadow: 
    inset 0 0 0 1px rgba(255,210,0,0.5),
    0 6px 16px rgba(0, 0, 0, 0.3);
}
.fld:focus{
  box-shadow: 
    inset 0 0 0 2px rgba(255,210,0,0.7),
    0 6px 20px rgba(255,210,0,0.2);
  background:rgba(30,30,30,0.7);
}
.fld::placeholder{color:rgba(255,255,255,0.5)}
.select{
  appearance:none;
  background-image:
    linear-gradient(45deg, transparent 50%, #ffd200 50%),
    linear-gradient(135deg, #ffd200 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%,
    0 0;
  background-size:6px 6px, 6px 6px, 100% 100%;
  background-repeat:no-repeat;
  padding-right:42px;
}

.file-row{align-items:start}
.file-native{
  width:100%;
  height:46px;
  border-radius:12px;
  background:rgba(20,20,20,0.5);
  color:#fff;
  padding:8px 12px;
  cursor:pointer;
  backdrop-filter: blur(5px);
  transition: all 0.3s;
  box-shadow: 
    inset 0 0 0 1px rgba(255,210,0,0.3),
    0 4px 12px rgba(0, 0, 0, 0.2);
}
.file-native:hover{
  background:rgba(25,25,25,0.6);
  box-shadow: 
    inset 0 0 0 1px rgba(255,210,0,0.5),
    0 6px 16px rgba(0, 0, 0, 0.3);
}
.file-native:focus{
  box-shadow: 
    inset 0 0 0 2px rgba(255,210,0,0.7),
    0 6px 20px rgba(255,210,0,0.2);
  background:rgba(30,30,30,0.7);
}

/* =============== IMAGE PREVIEW =============== */
.image-preview-container {
  margin-top: 16px;
  margin-bottom: 24px;
  border-radius: 12px;
  padding: 18px;
  background: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease-in-out;
  box-shadow: 
    inset 0 0 0 1px rgba(255, 210, 0, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 210, 0, 0.2);
}

.preview-title {
  color: #ffd200;
  font-weight: 700;
  font-size: 17px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.preview-remove {
  background: rgba(255, 50, 50, 0.2);
  color: #ff6b6b;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  backdrop-filter: blur(5px);
  box-shadow: 
    inset 0 0 0 1px rgba(255, 107, 107, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.2);
}

.preview-remove:hover {
  background: rgba(255, 50, 50, 0.3);
  transform: scale(1.1);
  box-shadow: 
    inset 0 0 0 1px rgba(255, 107, 107, 0.5),
    0 6px 20px rgba(255, 107, 107, 0.3);
}

.preview-image-wrapper {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  margin-bottom: 14px;
  backdrop-filter: blur(5px);
  box-shadow: 
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 4px 12px rgba(0, 0, 0, 0.2);
}

.preview-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.preview-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.preview-info span {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 10px;
  border-radius: 6px;
  backdrop-filter: blur(5px);
}

/* =============== BUTTON (DENGAN BORDER KHUSUS) =============== */
.btn{
  width:100%;
  height:58px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg, #ffd200, #ffb300);
  color:#1b1b1b;
  font-weight:800;
  letter-spacing:1px;
  font-size:18px;
  margin-top:24px;
  cursor:pointer;
  transition: all 0.3s;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 
    0 4px 15px rgba(255, 179, 0, 0.3),
    0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

/* Border khusus untuk button */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 14px;
  background: linear-gradient(
    45deg,
    rgba(255, 210, 0, 0.8) 0%,
    rgba(255, 165, 0, 0.8) 50%,
    rgba(255, 210, 0, 0.8) 100%
  );
  z-index: 1;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  pointer-events: none;
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn:hover{
  background:linear-gradient(135deg, #ffda33, #ffc107);
  transform: translateY(-2px);
  box-shadow: 
    0 8px 25px rgba(255, 179, 0, 0.4),
    0 12px 35px rgba(0, 0, 0, 0.3);
}

.btn:hover::before {
  background: linear-gradient(
    45deg,
    rgba(255, 210, 0, 1) 0%,
    rgba(255, 165, 0, 1) 50%,
    rgba(255, 210, 0, 1) 100%
  );
}

.btn:active{
  transform: translateY(0);
}
.btn:disabled {
  background: #ffb300;
  cursor: not-allowed;
  opacity: 0.8;
  transform: none;
  box-shadow: 0 2px 10px rgba(255, 179, 0, 0.2);
}

/* =============== FOOTER LINKS =============== */
.footer{
  margin-top:24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  padding-bottom:8px;
}
.footer-help{
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,.8);
  text-decoration:none;
  font-size:14px;
  cursor:pointer;
  transition: all 0.2s;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.footer-help:hover{
  color:#fff;
  transform: translateY(-1px);
}
.q{
  width:24px;
  height:24px;
  border-radius:50%;
  background:rgba(255,255,255,.15);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  color:#fff;
  transition: all 0.2s;
}
.footer-help:hover .q{
  background:rgba(255,255,255,.25);
  transform: scale(1.1);
}
.footer-admin{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#25D366;
  font-weight:700;
  font-size:17px;
  cursor:pointer;
  transition: all 0.3s;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(37, 211, 102, 0.1);
  box-shadow: 
    inset 0 0 0 1px rgba(37, 211, 102, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.2);
}
.footer-admin:hover {
  color: #1da851;
  transform: translateY(-2px);
  background: rgba(37, 211, 102, 0.2);
  box-shadow: 
    inset 0 0 0 1px rgba(37, 211, 102, 0.4),
    0 8px 20px rgba(37, 211, 102, 0.2);
}
.wa-icon{
  font-size:22px;
  color:#25D366;
  filter: drop-shadow(0 0 3px rgba(37, 211, 102, 0.3));
}

/* =============== MODAL POPUP =============== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.98));
  border-radius: 18px;
  width: min(500px, 95vw);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.7),
    inset 0 0 0 1px rgba(255, 210, 0, 0.1),
    0 0 40px rgba(255, 210, 0, 0.15);
  backdrop-filter: blur(10px);
  animation: modalAppear 0.4s ease-out;
}

@keyframes modalAppear {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  padding: 24px 28px 16px;
  border-bottom: 1px solid rgba(255, 210, 0, 0.3);
  position: relative;
}

.modal-title {
  color: #ffd200;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 10px rgba(255, 210, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
  backdrop-filter: blur(5px);
  box-shadow: 
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
  box-shadow: 
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 6px 20px rgba(0, 0, 0, 0.3);
}

.modal-body {
  padding: 28px;
}

.guide-list {
  list-style-type: none;
  counter-reset: guide-counter;
  margin: 0 0 28px 0;
  padding: 0;
}

.guide-list li {
  counter-increment: guide-counter;
  margin-bottom: 18px;
  padding-left: 40px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.guide-list li::before {
  content: counter(guide-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #ffd200, #ffb300);
  color: #1b1b1b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(255, 179, 0, 0.3);
}

.guide-list strong {
  color: #ffd200;
}

.modal-note {
  background: rgba(255, 210, 0, 0.1);
  border-radius: 14px;
  padding: 20px;
  margin-top: 28px;
  backdrop-filter: blur(5px);
  box-shadow: 
    inset 0 0 0 1px rgba(255, 210, 0, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal-note p {
  margin: 10px 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-note p:first-child {
  margin-top: 0;
}

.modal-note p:last-child {
  margin-bottom: 0;
}

.modal-note strong {
  color: #ffd200;
}

.modal-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.modal-ok-btn {
  background: linear-gradient(135deg, #ffd200, #ffb300);
  color: #1b1b1b;
  border: none;
  border-radius: 14px;
  padding: 16px 45px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
}

.modal-ok-btn:hover {
  background: linear-gradient(135deg, #ffda33, #ffc107);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 179, 0, 0.4);
}

.modal-ok-btn:active {
  transform: translateY(0);
}

/* =============== RESPONSIVE =============== */
@media (max-width:520px){
  .logo{
    height:120px;
  }
  .logo-wrap{
    margin-top:10px;
    margin-bottom:16px;
    min-height:35px;
  }
  .logo-glow {
    width: 120px;
    height: 65px;
    filter: blur(20px);
  }
  .headline{font-size:42px}
  .row{grid-template-columns: 130px 1fr; gap:12px}
  .modal-title{font-size:22px}
  .guide-list li{font-size:15px;padding-left:36px}
  .modal-body{padding:24px}
  .preview-image-wrapper{height:180px}
  .card{
    padding:16px;
    border-radius:14px;
  }
  .card::before {
    border-radius: 14px;
    padding: 1.5px;
  }
  .card::after {
    border-radius: 16px;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
  }
  .corner-decoration {
    width: 20px;
    height: 20px;
  }
  .btn::before {
    border-radius: 12px;
    padding: 1.5px;
  }
}

@media (max-width:420px){
  .logo{
    height:120px;
  }
  .logo-wrap{
    margin-top:8px;
    margin-bottom:14px;
    min-height:30px;
  }
  .logo-glow {
    width: 100px;
    height: 55px;
    filter: blur(15px);
  }
  .headline{font-size:38px; letter-spacing:1px}
  .row{grid-template-columns: 120px 1fr; gap:10px}
  .lbl{font-size:14px}
  .modal-content{border-radius:16px}
  .modal-header{padding:20px 24px 14px}
  .modal-body{padding:20px}
  .modal-footer{padding:16px 20px 24px}
  .modal-ok-btn{padding:14px 35px;min-width:180px;font-size:16px}
  .preview-image-wrapper{height:160px}
  .preview-header{padding-bottom:8px;margin-bottom:12px}
  .preview-title{font-size:16px}
  .btn{height:56px;font-size:17px}
  .footer-admin{font-size:16px;padding:6px 14px}
  .wa-icon{font-size:20px}
  .card{
    padding:14px;
    border-radius:12px;
  }
  .card::before {
    border-radius: 12px;
    padding: 1px;
  }
  .card::after {
    border-radius: 14px;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
  }
  .corner-decoration {
    width: 15px;
    height: 15px;
  }
  .btn::before {
    border-radius: 10px;
    padding: 1px;
  }
}

/* =============== SCROLLBAR CUSTOM =============== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #ffd200, #ffb300);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #ffda33, #ffc107);
}