:root {
  --bg-dark: #0e1118;
  --bg-darker: #080b10;
  --accent: #fff;
  --accent-hover: #e0aa3e;
  --text: #e4e8f0;
  --text-muted: #7a8099;
  --border: #1d2438;
}
body {
  font-family: "Noto Sans", system-ui, sans-serif;
  font-weight: 400;
  background-color: var(--bg-dark);
  color: var(--text);
  line-height: 1.65;
  margin: 0;
  padding: 0;
  font-size: 18px;
}
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-darker);
  border-bottom: 2px solid var(--border);
}
.moe-header-logo {
  display: flex;
}
.moe-header-logo img {
  height: auto;
}
.moe-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 15px;
}
.moe-nav-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.moe-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.moe-nav a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}
.moe-nav a:hover {
  color: var(--text);
  background: var(--border);
}
.moe-nav a.active {
  color: var(--accent);
  font-weight: 600;
}
.moe-nav-cta {
  background: rgb(255 108 189) !important;
  color: #080b10 !important;
  padding: 7px 16px !important;
  border-radius: 20px !important;
  border: 1px solid transparent;
  font-weight: 700 !important;
  transition: 0.2s ease !important;
}
.moe-nav-cta:hover {
  border: 1px solid #fff !important;
  color: #080b10 !important;
  border: 1px solid transparent;
}
.moe-auth-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.moe-auth-buttons a,
.moe-auth-buttons button {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  transition: all 0.2s;
  border: none;
  font-family: "Noto Sans", system-ui, sans-serif;
  border: 1px solid transparent;
}

#login {
  border: 1px solid #ffff;
}
#login:hover {
  background: var(--border);
}
#signup {
  background: rgb(255 108 189);
  color: #080b10;
}
#signup:hover {
  border: 1px solid #ffff;
}

.moe-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 6px;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;

  background: rgb(255 108 189);

  font-size: 1.4rem;
  line-height: 1;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  z-index: 900;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(10px);

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    background 0.2s ease;
}

.moe-to-top.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.moe-to-top:hover {
  background: rgb(251 85 177);
  transform: translateY(-3px);
}

.moe-to-top:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.moe-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 15px 80px;
}

.h2-border {
  display: inline-block;
}
h1 {
  font-family: "Barlow Condensed", "Arial Black", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
  margin: 0 0 24px;
}
h2 {
  font-family: "Barlow Condensed", "Arial Black", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 2px solid var(--border);
  padding-bottom: 8px;
  margin-top: 40px;
  margin-bottom: 16px;
}
h3 {
  font-family: "Barlow Condensed", "Arial Black", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 10px;
}
p {
  margin: 0 0 16px;
}
a {
  color: var(--accent);
}
ul,
ol {
  padding-left: 22px;
  margin: 0 0 16px;
}
li {
  margin-bottom: 6px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.93rem;
}
th,
td {
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--border);
}
th {
  background: #13192a;
  color: var(--accent);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
}
tr:nth-child(even) td {
  background: rgba(8, 11, 16, 0.5);
}
.moe-mobile-image {
  float: right;
  width: 300px;
  max-width: 50%;
  margin: 0 0 20px 30px;
}
.moe-mobile-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.moe-container p a {
  color: rgb(255 108 189);
  text-underline-offset: 2px;
  transition: 0.2s ease;
}
.moe-container p a:hover {
  color: rgb(223 0 123);
  transition: 0.2s ease;
}
.moe-bonus-box {
  display: block;
  margin-bottom: 50px;
}
.moe-bonus-box img {
  display: block;
  max-width: 100%;
}
.moe-bonus-box > * {
  position: relative;
}

.moe-get-bonus {
  display: inline-block;
  background: var(--accent);
  color: #080b10;
  padding: 16px 54px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(200, 150, 42, 0.35);
  transition: all 0.25s;
}
.moe-get-bonus:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200, 150, 42, 0.45);
  color: #080b10;
}
.moe-get-box {
  text-align: center;
  margin: 40px 0;
}
.moe-get-box .moe-get {
  display: inline-block;
  background: rgb(255 108 189);
  color: #080b10;
  padding: 15px 48px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(200, 150, 42, 0.3);
  transition: all 0.25s;
  border: 1px solid transparent;
}
.moe-get-box .moe-get:hover {
  border: 1px solid #ffff;
  transform: translateY(-2px);
  color: #080b10;
}
.moe-gallery-container {
  margin: 0 0 40px;
}
.moe-gallery {
  --gap: 10px;
  --min-size: 190px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--min-size), 1fr));
  gap: var(--gap);
}
.moe-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: var(--bg-darker);
  aspect-ratio: auto;
  border: 1px solid var(--border);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.moe-gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 28px rgba(200, 150, 42, 0.2);
  border-color: var(--accent);
}
.moe-gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.moe-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s;
}
.moe-gallery-item:hover img {
  transform: scale(1.07);
}
img.lazy {
  opacity: 0;
  transition: opacity 0.4s;
}
img.lazy.loaded {
  opacity: 1;
}
.moe-faq {
  margin-top: 40px;
}
.moe-faq details {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 10px;
  background: var(--bg-darker);
  overflow: hidden;
}
.moe-question {
  cursor: pointer;
  padding: 14px 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.moe-question::-webkit-details-marker {
  display: none;
}
.moe-question::before {
  content: "+";
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
details[open] .moe-question::before {
  content: "\2212";
}
.moe-answer {
  padding: 12px 18px 16px 44px;
  margin: 0;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  line-height: 1.6;
}
.moe-payments {
  text-align: center;
  margin-top: 48px;
}
.moe-payments h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.moe-payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  align-items: center;
}
.moe-payment-icons .icon-wrapper {
  width: 120px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-darker);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  transition: border-color 0.2s;
  overflow: hidden;
}
.moe-payment-icons .icon-wrapper:hover {
  border-color: var(--accent);
}
.moe-payment-icons .icon-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
footer {
  background-color: var(--bg-darker);
  color: var(--text-muted);
  text-align: center;
  padding: 24px 20px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
}
@media (max-width: 768px) {
  .moe-header-inner {
    gap: 10px;
  }
  .moe-nav-wrap {
    flex-wrap: wrap;
    gap: 8px;
  }
  .moe-nav {
    flex-wrap: wrap;
    gap: 6px;
  }
  .moe-nav a {
    font-size: 0.83rem;
    padding: 5px 8px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .moe-bonus-box {
    margin-bottom: 20px;
  }
  .moe-get-bonus {
    padding: 14px 36px;
    font-size: 1.1rem;
  }
  .moe-payment-icons .icon-wrapper {
    width: 90px;
    height: 54px;
  }
  .moe-gallery {
    --min-size: 150px;
    --gap: 8px;
  }
  .moe-mobile-image {
    float: none;
    display: block;
    width: 100%;
    margin: 20px auto;
  }
  .h2-border {
    display: block;
  }
}

@media (max-width: 576px) {
  body,
  .moe-auth-buttons a {
    font-size: 16px;
  }
  .moe-auth-buttons a {
    padding: 5px 15px;
  }
  .moe-container {
    padding: 15px 20px 60px;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: 1.7rem;
  }

  .moe-gallery {
    --min-size: 120px;
    --gap: 6px;
  }
  .moe-get-bonus,
  .moe-get-box .moe-get {
    padding: 12px 24px;
    font-size: 1rem;
  }
  .moe-header-inner {
    flex-direction: column;
  }
  .moe-auth-buttons {
    width: 100%;
  }
  .moe-auth-buttons a {
    width: 100%;
  }
  .moe-mobile-image {
    max-width: 100%;
  }
}
