@charset "UTF-8";
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: "Source Sans Pro", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  background-color: var(--dark);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  height: 120vmax;
}
html::before {
  content: "";
}

body {
  margin-top: 66px;
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #FFD700 !important;
  text-align: left;
  background-color: transparent;
}
.overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1;
}
.landing-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 100%;
  margin: auto;
  background: rgba(0,0,0,0.35);
  border-radius: 18px;
  box-shadow: 0 4px 32px #0005;
  padding: 48px 40px;
  text-align: center;
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}
.landing-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #FFD700;
  text-shadow: 0 2px 16px #222, 0 0 8px #FFD700;
  letter-spacing: 1px;
  text-align: center;
}
.landing-desc {
  font-size: 1.18rem;
  line-height: 1.8;
  margin-bottom: 6px;
  color: #fff;
  text-shadow: 0 1px 8px #222;
}
.landing-desc p {
  margin: 0 0 6px 0;
  padding: 0;
  text-align: left;
  font-size: 1.22rem;
  letter-spacing: 0.5px;
  line-height: 1.9;
}
.landing-desc p:last-child {
  margin-bottom: 0;
}
.landing-desc strong {
  color: #FFD700;
  font-weight: 700;
  text-shadow: 0 0 8px #FFD700;
}
.landing-btn {
  color: #FFD700 !important;
  font-weight: bold;
  background: linear-gradient(90deg, rgba(255,215,0,0.55) 0%, rgba(192,250,17,0.55) 50%, rgba(255,215,0,0.55) 100%) !important; /* lebih pekat */
  border-color: #ff2600ff !important;
  box-shadow: 0 0 18px 0 #ff2600ff, 0 2px 8px 0 #FFD700;
  text-shadow: 0 0 8px #FFD700, 0 0 2px #c0fa11ff, 0 0 18px #FFD700;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 38px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: box-shadow 0.3s, color 0.3s, background 0.3s;
  text-align: center;
  margin-top: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.landing-btn strong {
  color: #FFD700 !important;
  font-weight: bold;
  margin: 0;
  transition: color 0.3s, text-shadow 0.3s;
}
.landing-btn:hover, .landing-btn:focus {
  color: #ff2600ff !important;
  background: linear-gradient(90deg, #FFD700 0%, #c0fa11ff 50%, #FFD700 100%) !important;
  border-color: #ff2600ff !important;
  box-shadow: 0 0 18px 0 #ff2600ff, 0 2px 8px 0 #FFD700;
  text-shadow: 0 0 8px #FFD700, 0 0 2px #c0fa11ff, 0 0 18px #ff2600ff;
}
.landing-btn:hover strong,
.landing-btn:focus strong {
  color: #ff2600ff !important;
  text-shadow: 0 0 8px #FFD700, 0 0 2px #c0fa11ff, 0 0 18px #ff2600ff;
}
@media (max-width: 800px) {
  .landing-content {
    max-width: 98vw;
    padding: 18px 4vw;
  }
  .landing-title {
    font-size: 1.5rem;
  }
  .landing-desc p {
    font-size: 1rem;
  }
}