/* ==========================================
   GLOBAL
   ========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;

  background:
    radial-gradient(
      circle at top,
      rgba(0, 191, 255, 0.15),
      transparent 35%
    ),
    linear-gradient(
      180deg,
      #07111f 0%,
      #0b1628 100%
    );

  color: #ffffff;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}


/* ==========================================
   NAVBAR
   ========================================== */

nav {
  width: 100%;
  padding: 14px 8%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;

  position: sticky;
  top: 0;

  z-index: 1000;

  background: rgba(7, 17, 31, 0.8);
  backdrop-filter: blur(14px);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.08);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;

  font-size: 1.12rem;
  font-weight: 800;
  color: #ffffff;
}

.nav-logo {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-left: auto;
}

.nav-links a {
  color: #c9d6e5;
  font-size: 0.9rem;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: #45d6ff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.nav-add,
.nav-signin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 40px;
  padding: 0 16px;

  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.nav-add {
  color: #ffffff;
  background: #5865f2;
  border: 1px solid #5865f2;
}

.nav-add:hover {
  transform: translateY(-1px);
  background: #6571f5;
}

.nav-signin {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.nav-signin:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.24);
}

.discord-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}


.account-area {
  position: relative;
  display: flex;
  align-items: center;
}

.account-avatar-btn {
  width: 38px;
  height: 38px;
  padding: 0;

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

  overflow: hidden;

  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;

  cursor: pointer;

  flex: 0 0 38px;
  vertical-align: middle;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.account-avatar-btn:hover,
.account-avatar-btn[aria-expanded="true"] {
  transform: translateY(-1px);
  border-color: rgba(69, 214, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(69, 214, 255, 0.08);
}

.account-avatar-btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#accountAvatarFallback {
  width: 100%;
  height: 100%;

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

  font-weight: 800;
  font-size: 1rem;

  background:
    linear-gradient(
      135deg,
      rgba(88, 101, 242, 0.95),
      rgba(69, 214, 255, 0.9)
    );
}

.account-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;

  width: 260px;
  padding: 12px;

  border:
    1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;

  background: rgba(10, 19, 33, 0.97);
  backdrop-filter: blur(18px);

  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.42);

  z-index: 1300;
}

.account-menu::before {
  content: "";

  position: absolute;
  top: -6px;
  right: 15px;

  width: 12px;
  height: 12px;

  transform: rotate(45deg);

  background: rgba(10, 19, 33, 0.97);

  border-left:
    1px solid rgba(255, 255, 255, 0.08);
  border-top:
    1px solid rgba(255, 255, 255, 0.08);
}

.account-menu-head {
  padding: 7px 9px 12px;

  display: flex;
  flex-direction: column;
  gap: 3px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.08);
}

.account-menu-head strong {
  color: #ffffff;
  font-size: 0.98rem;
}

.account-menu-head span {
  color: #8795a8;
  font-size: 0.78rem;
}

.account-menu-link {
  min-height: 44px;
  margin-top: 6px;
  padding: 0 9px;

  display: flex;
  align-items: center;
  gap: 11px;

  border-radius: 12px;

  color: #d9e4ef;
  font-size: 0.9rem;
  font-weight: 650;

  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.account-menu-link:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.account-menu-icon {
  width: 22px;

  display: inline-flex;
  justify-content: center;

  color: #9fb0c3;
  font-size: 1rem;
}

.account-menu-logout {
  color: #ff858f;
}

.account-menu-logout .account-menu-icon {
  color: #ff6f7d;
}

.account-menu-logout:hover {
  color: #ff9da5;
  background: rgba(255, 91, 105, 0.09);
}

/* Hamburger hidden on desktop */

.mobile-menu-btn {
  display: none;

  background: transparent;
  border: none;

  color: #ffffff;

  font-size: 28px;
  line-height: 1;

  cursor: pointer;

  padding: 4px 6px;
}


/* ==========================================
   HERO
   ========================================== */

.hero {
  min-height: 78vh;

  padding: 100px 8% 70px;

  display: flex;
  flex-direction: column;

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

  text-align: center;
}

.bot-icon {
  width: 92px;
  height: 92px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  font-size: 2.8rem;

  background:
    linear-gradient(
      135deg,
      #31c7ff,
      #5468ff
    );

  box-shadow:
    0 0 50px rgba(49, 199, 255, 0.3);

  margin-bottom: 24px;
}

.bot-icon img {
  width: 120px;
  height: 120px;

  object-fit: cover;

  border-radius: 50%;

  display: block;

  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;

  margin-bottom: 18px;

  background:
    linear-gradient(
      90deg,
      #ffffff,
      #62dcff
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  max-width: 700px;

  color: #aebed0;

  font-size: 1.15rem;
  line-height: 1.7;

  margin-bottom: 32px;
}


/* ==========================================
   BUTTONS
   ========================================== */

.buttons {
  display: flex;
  flex-wrap: wrap;

  justify-content: center;

  gap: 14px;
}

.button {
  display: inline-flex;

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

  padding: 14px 22px;

  border-radius: 12px;

  font-weight: 700;

  transition: 0.2s ease;

  border: 1px solid transparent;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  background:
    linear-gradient(
      135deg,
      #2ac7ff,
      #4f67ff
    );

  box-shadow:
    0 10px 30px rgba(47, 147, 255, 0.25);
}

.secondary {
  background:
    rgba(255, 255, 255, 0.07);

  border-color:
    rgba(255, 255, 255, 0.12);
}

.support {
  background:
    linear-gradient(
      135deg,
      #7067ff,
      #a75cff
    );
}


/* ==========================================
   GENERAL SECTIONS
   ========================================== */

section {
  padding: 75px 8%;
}

section h2 {
  text-align: center;

  font-size: 2rem;

  margin-bottom: 38px;
}


/* ==========================================
   FEATURES
   ========================================== */

.feature-grid {
  max-width: 1150px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}

.card {
  padding: 26px;

  border-radius: 18px;

  background:
    rgba(255, 255, 255, 0.055);

  border:
    1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(12px);

  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(69, 214, 255, 0.4);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.2);
}

.card span {
  font-size: 2rem;
}

.card h3 {
  margin-top: 15px;
  margin-bottom: 10px;

  font-size: 1.15rem;
}

.card p {
  color: #aebed0;

  line-height: 1.6;

  font-size: 0.95rem;
}


/* ==========================================
   DORADEX
   ========================================== */

#doradex {
  padding: 80px 20px;

  text-align: center;
}

.doradex-subtitle {
  opacity: 0.7;

  margin-bottom: 35px;
}

.doradex-grid {
  display: grid;

  grid-template-columns:
    repeat(
      auto-fit,
      minmax(180px, 1fr)
    );

  gap: 24px;

  max-width: 1200px;

  margin: auto;
}

.dora-card {
  padding: 14px;

  border-radius: 18px;

  background:
    rgba(255, 255, 255, 0.06);

  border:
    1px solid rgba(255, 255, 255, 0.12);

  transition: 0.25s;
}

.dora-card:hover {
  transform:
    translateY(-8px)
    scale(1.02);
}

.dora-card img {
  width: 100%;

  border-radius: 13px;

  aspect-ratio: 5 / 7;

  object-fit: cover;
}

.dora-card h3 {
  margin: 12px 0 4px;
}

.dora-card span {
  font-size: 14px;

  opacity: 0.75;
}


/* Card rarity effects */

.common {
  box-shadow:
    0 0 18px rgba(180, 180, 180, 0.15);
}

.rare {
  box-shadow:
    0 0 18px rgba(0, 191, 255, 0.18);
}

.epic {
  box-shadow:
    0 0 18px rgba(153, 51, 255, 0.22);
}

.mythic {
  box-shadow:
    0 0 20px rgba(255, 215, 0, 0.22);
}

.legendary {
  box-shadow:
    0 0 25px rgba(255, 0, 85, 0.3);
}

.exclusive {
  border:
    1px solid rgba(255, 80, 80, 0.6);
}

.shiny {
  border:
    1px solid rgba(255, 255, 255, 0.8);

  box-shadow:
    0 0 25px rgba(255, 255, 255, 0.35);
}


/* ==========================================
   💰 ECONOMY GUIDE
   ========================================== */

#economy {
  padding: 90px 8%;
}

.economy-section {
  max-width: 1200px;

  margin: 0 auto;
}

.section-heading {
  text-align: center;

  max-width: 650px;

  margin: 0 auto 45px;
}

.section-heading .section-tag {
  display: inline-block;

  color: #45d6ff;

  font-size: 0.75rem;
  font-weight: 800;

  letter-spacing: 3px;

  margin-bottom: 10px;
}
.economy-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.section-heading h2 {
  font-size:
    clamp(2rem, 5vw, 3.2rem);

  margin-bottom: 12px;
}

.section-heading p {
  color: #aebed0;

  line-height: 1.6;
}

.economy-grid {
  display: grid;

  grid-template-columns:
    repeat(
      3,
      minmax(0, 1fr)
    );

  gap: 20px;

  max-width: 1100px;

  margin: 0 auto;
}

.economy-card {
  position: relative;

  padding: 26px;

  border-radius: 20px;

  overflow: hidden;

  background:
    rgba(255, 255, 255, 0.055);

  border:
    1px solid rgba(255, 255, 255, 0.09);

  backdrop-filter: blur(12px);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.economy-card::before {
  content: "";

  position: absolute;

  width: 100px;
  height: 100px;

  top: -45px;
  right: -45px;

  border-radius: 50%;

  background:
    rgba(69, 214, 255, 0.08);

  filter: blur(10px);
}

.economy-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(69, 214, 255, 0.35);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.2);
}

.economy-icon {
  position: relative;

  font-size: 2rem;

  margin-bottom: 15px;
}

.economy-card h3 {
  position: relative;

  font-size: 1.15rem;

  margin-bottom: 10px;
}

.economy-card p {
  position: relative;

  color: #aebed0;

  font-size: 0.95rem;

  line-height: 1.65;
}


/* ==========================================
   COMMANDS
   ========================================== */

.commands {
  max-width: 850px;

  margin: 0 auto;

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 12px;
}

.commands code {
  padding: 12px 17px;

  border-radius: 10px;

  color: #75e1ff;

  background:
    rgba(69, 214, 255, 0.08);

  border:
    1px solid rgba(69, 214, 255, 0.15);

  font-size: 0.95rem;
}


/* ==========================================
   SUPPORT
   ========================================== */

.support-section {
  max-width: 950px;

  margin: 60px auto;

  text-align: center;

  border-radius: 24px;

  background:
    linear-gradient(
      135deg,
      rgba(64, 197, 255, 0.12),
      rgba(139, 92, 246, 0.12)
    );

  border:
    1px solid rgba(255, 255, 255, 0.08);
}

.support-section p {
  color: #b9c7d7;

  line-height: 1.7;

  margin-bottom: 20px;
}

.perks {
  color: #ffffff !important;

  font-weight: 700;
}

.optional {
  font-size: 0.85rem;

  opacity: 0.7;

  margin-top: 18px;
}


/* ==========================================
   FOOTER
   ========================================== */

footer {
  padding: 35px 8%;

  text-align: center;

  color: #8fa2b8;

  border-top:
    1px solid rgba(255, 255, 255, 0.07);
}

footer strong {
  color: #ffffff;

  font-size: 1.2rem;
}

footer p {
  margin: 8px 0 14px;
}

footer a {
  color: #55d6ff;
}


/* ==========================================
   📱 TABLET
   ========================================== */

@media (max-width: 900px) {

  nav {
    padding-left: 5%;
    padding-right: 5%;
    gap: 14px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 0.82rem;
  }

  .feature-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .economy-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }
}


/* ==========================================
   📱 MOBILE NAVBAR
   ========================================== */

@media (max-width: 768px) {

  nav {
    padding: 16px 5%;

    position: sticky;

    top: 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-links {
    display: none;

    position: absolute;

    top: calc(100% + 10px);

    left: 5%;
    right: 5%;

    flex-direction: column;

    align-items: stretch;

    gap: 5px;

    padding: 14px;

    background:
      rgba(7, 17, 31, 0.97);

    border:
      1px solid rgba(255, 255, 255, 0.1);

    border-radius: 16px;

    backdrop-filter: blur(16px);

    box-shadow:
      0 15px 40px rgba(0, 0, 0, 0.35);

    z-index: 9999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;

    padding: 13px 14px;

    font-size: 0.95rem;

    border-radius: 10px;

    transition:
      background 0.2s ease,
      color 0.2s ease;
  }

  .nav-links a:hover {
    background:
      rgba(255, 255, 255, 0.07);

    color: #45d6ff;
  }
}


/* ==========================================
   📱 SMALL PHONES
   ========================================== */

@media (max-width: 650px) {

  .nav-brand span {
    display: none;
  }

  .nav-add,
  .nav-signin {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .nav-add .discord-icon,
  .nav-signin .discord-icon {
    width: 16px;
    height: 16px;
  }

  .hero {
    padding-left: 5%;
    padding-right: 5%;
  }

  section {
    padding-left: 5%;
    padding-right: 5%;
  }

  #economy {
    padding-left: 5%;
    padding-right: 5%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .economy-grid {
    grid-template-columns: 1fr;
  }

  .buttons {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .economy-card {
    padding: 22px;
  }
}


/* ==========================================
   🎂 DORAEMON BIRTHDAY EVENT
   ========================================== */

.birthday-event {
  position: relative;
  overflow: hidden;
  max-width: 1320px;
  margin: 30px auto 0;
  padding: 72px 6%;
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 5%, rgba(69, 214, 255, 0.20), transparent 30%),
    radial-gradient(circle at 90% 15%, rgba(255, 88, 167, 0.17), transparent 28%),
    linear-gradient(145deg, rgba(17, 39, 68, 0.92), rgba(16, 25, 48, 0.94));
  border: 1px solid rgba(104, 221, 255, 0.20);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.birthday-event::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.42) 1px, transparent 1.5px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 65%);
}

.birthday-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
}

.birthday-copy h2 {
  text-align: left;
  margin: 18px 0 16px;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  background: linear-gradient(90deg, #ffffff, #9beaff 55%, #ff9bd3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.birthday-tag,
.birthday-panel-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #8be8ff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.birthday-lead {
  max-width: 680px;
  color: #b9cce0;
  font-size: 1.05rem;
  line-height: 1.75;
}

.birthday-status-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
}

.birthday-status-card strong,
.birthday-status-card small { display: block; }
.birthday-status-card small { color: #91a8bd; margin-top: 3px; }
.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #5de0ff;
  box-shadow: 0 0 18px rgba(93,224,255,.8);
}

.birthday-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(72px, 1fr));
  gap: 10px;
  max-width: 520px;
  margin-top: 22px;
}

.birthday-countdown div {
  padding: 15px 10px;
  text-align: center;
  border-radius: 15px;
  background: rgba(4,13,27,.45);
  border: 1px solid rgba(255,255,255,.08);
}

.birthday-countdown strong { display: block; font-size: 1.55rem; }
.birthday-countdown span { display: block; color: #8fa8be; font-size: .75rem; margin-top: 3px; text-transform: uppercase; letter-spacing: 1px; }

.birthday-card-showcase { text-align: center; }
.birthday-card-frame {
  position: relative;
  width: min(280px, 100%);
  margin: 0 auto 18px;
  padding: 8px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(69,214,255,.38), rgba(255,105,190,.32));
  box-shadow: 0 30px 70px rgba(0,0,0,.38), 0 0 55px rgba(69,214,255,.12);
}

.birthday-card-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  border-radius: 18px;
}

.event-exclusive-chip,
.doradex-event-chip {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #08111f;
  background: #8feaff;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .7px;
}

.birthday-card-showcase h3 { font-size: 1.25rem; margin-bottom: 6px; }
.birthday-card-showcase p { color: #9fb5c8; }

.birthday-perks {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.birthday-perk {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.075);
}

.birthday-perk > span { font-size: 1.75rem; }
.birthday-perk h3 { margin: 12px 0 8px; font-size: 1rem; }
.birthday-perk p { color: #9eb2c6; font-size: .87rem; line-height: 1.55; }
.birthday-perk code,
.birthday-panel code,
.birthday-howto code { color: #7de7ff; font-family: inherit; font-weight: 800; }

.birthday-main-day {
  background: linear-gradient(145deg, rgba(69,214,255,.12), rgba(255,96,181,.08));
  border-color: rgba(107,225,255,.24);
}

.birthday-detail-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  margin-top: 18px;
}

.birthday-panel {
  padding: 26px;
  border-radius: 22px;
  background: rgba(2,10,22,.42);
  border: 1px solid rgba(255,255,255,.09);
}

.birthday-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.birthday-panel h3 { margin: 8px 0 12px; font-size: 1.35rem; }
.birthday-panel p { color: #9fb3c8; line-height: 1.65; font-size: .93rem; }
.discount-chip {
  flex: 0 0 auto;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,199,77,.13);
  border: 1px solid rgba(255,199,77,.30);
  color: #ffd67a;
  font-size: .72rem;
  font-weight: 900;
}

.market-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.market-prices div {
  padding: 13px;
  border-radius: 13px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}
.market-prices span,
.market-prices strong,
.market-prices small { display: block; }
.market-prices span { color: #9fb5c8; font-size: .78rem; }
.market-prices strong { margin: 5px 0 2px; font-size: 1.05rem; }
.market-prices small { color: #73defc; font-size: .68rem; }

.raid-hp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,83,121,.08);
  border: 1px solid rgba(255,83,121,.18);
}
.raid-hp span { color: #aebed0; }
.raid-hp strong { font-size: 1.25rem; color: #ff9cb3; }
.raid-rewards {
  margin-top: 18px;
  padding: 15px;
  border-radius: 14px;
  background: rgba(69,214,255,.065);
  border: 1px solid rgba(69,214,255,.14);
}
.raid-rewards span,
.raid-rewards strong { display: block; }
.raid-rewards span { color: #8fa8bd; font-size: .75rem; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .8px; }
.raid-rewards strong { font-size: .88rem; line-height: 1.55; }

.birthday-howto {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
  padding: 19px;
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
}
.birthday-howto > div:not(.howto-line) { display: flex; align-items: center; gap: 10px; }
.birthday-howto > div:not(.howto-line) > span {
  width: 32px; height: 32px; display: grid; place-items: center; flex: 0 0 auto;
  border-radius: 50%; background: rgba(69,214,255,.13); color: #7de7ff; font-weight: 900;
}
.birthday-howto p { color: #9eb3c6; font-size: .82rem; line-height: 1.45; }
.birthday-howto strong { color: white; }
.howto-line { height: 1px; flex: 1; max-width: 75px; background: rgba(255,255,255,.10); }

.birthday-dora-card { position: relative; border-color: rgba(120,225,255,.42); }
.birthday-dora-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  pointer-events: none;
  box-shadow: inset 0 0 22px rgba(69,214,255,.12), 0 0 28px rgba(255,107,193,.13);
}

@media (max-width: 1000px) {
  .birthday-container,
  .birthday-detail-grid { grid-template-columns: 1fr; }
  .birthday-card-showcase { margin-top: 10px; }
  .birthday-perks { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
  .birthday-event { margin: 16px 4% 0; padding: 45px 5%; border-radius: 24px; }
  .birthday-copy h2 { text-align: center; }
  .birthday-copy, .birthday-tag { text-align: center; }
  .birthday-tag { margin-left: auto; margin-right: auto; }
  .birthday-lead { text-align: center; }
  .birthday-status-card { display: flex; width: 100%; }
  .birthday-countdown { grid-template-columns: repeat(2, 1fr); }
  .birthday-perks { grid-template-columns: 1fr; }
  .market-prices { grid-template-columns: repeat(2, 1fr); }
  .birthday-panel-head { flex-direction: column; }
  .birthday-howto { flex-direction: column; align-items: stretch; }
  .birthday-howto > div:not(.howto-line) { justify-content: flex-start; }
  .howto-line { width: 1px; height: 24px; margin-left: 15px; }
}
/* ==========================================
   LIVE RAID STATUS
========================================== */

.raid-status-section {
  padding: 30px 20px 55px;
}

.raid-status-card {
  max-width: 960px;
  margin: 0 auto;

  padding: 28px;

  border: 1px solid rgba(94, 228, 255, 0.15);
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(94, 228, 255, 0.07),
      rgba(255, 255, 255, 0.015)
    );

  box-shadow:
    0 16px 50px rgba(0, 0, 0, 0.22);
}


.raid-status-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}


.raid-status-label {
  margin-bottom: 8px;

  color: #5ee4ff;

  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}


.raid-status-card h2 {
  margin: 0;

  font-size: clamp(
    1.35rem,
    4vw,
    2rem
  );
}


.raid-live-badge {
  display: inline-flex;
  align-items: center;

  padding: 7px 11px;

  border: 1px solid rgba(255, 90, 90, 0.35);
  border-radius: 999px;

  color: #ff7777;
  background: rgba(255, 70, 70, 0.08);

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}


.raid-live-badge::before {
  content: "";

  width: 7px;
  height: 7px;

  margin-right: 7px;

  border-radius: 50%;

  background: currentColor;

  box-shadow:
    0 0 10px currentColor;
}


.raid-live-content {
  margin-top: 26px;
}


.raid-hp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 10px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 0.88rem;
}


.raid-hp-row strong {
  color: white;
}


.raid-health-track {
  width: 100%;
  height: 10px;

  overflow: hidden;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.09);
}


.raid-health-fill {
  width: 0%;
  height: 100%;

  border-radius: inherit;

  background:
    linear-gradient(
      90deg,
      #38d8ff,
      #69efff
    );

  transition: width 0.6s ease;
}


.raid-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;

  margin-top: 12px;

  color: rgba(255, 255, 255, 0.52);

  font-size: 0.8rem;
}


.raid-offline {
  margin-top: 20px;

  color: rgba(255, 255, 255, 0.55);
}


.raid-join-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 24px;

  padding: 11px 17px;

  border: 1px solid rgba(94, 228, 255, 0.3);
  border-radius: 999px;

  color: #67e8ff;

  background: rgba(94, 228, 255, 0.08);

  text-decoration: none;

  font-size: 0.85rem;
  font-weight: 700;

  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}


.raid-join-button:hover {
  background: rgba(94, 228, 255, 0.14);
  border-color: rgba(94, 228, 255, 0.5);
}


@media (max-width: 600px) {

  .raid-status-section {
    padding:
      24px
      16px
      45px;
  }


  .raid-status-card {
    padding: 21px;
    border-radius: 18px;
  }


  .raid-status-top {
    gap: 12px;
  }


  .raid-live-badge {
    padding: 6px 9px;
    font-size: 0.62rem;
  }


  .raid-details {
    gap: 10px;
  }

}


/* ==========================================
   LIVE PROJECT STATUS
========================================== */

.project-status-section {
  padding: 0 20px 55px;
}

.project-status-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(94, 228, 255, 0.15);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(94, 228, 255, 0.055),
      rgba(255, 255, 255, 0.015)
    );
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.project-status-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.project-status-label {
  margin-bottom: 8px;
  color: #5ee4ff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.project-status-card h2 {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 2rem);
}

.project-live-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(94, 228, 255, 0.32);
  border-radius: 999px;
  color: #6aeaff;
  background: rgba(94, 228, 255, 0.08);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.project-live-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.project-live-content {
  margin-top: 26px;
}

.project-progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.project-progress-row strong {
  color: white;
  white-space: nowrap;
}

.project-progress-track {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 5px;
  width: 100%;
}

.project-progress-segment {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.project-progress-segment.filled {
  background: linear-gradient(90deg, #38d8ff, #69efff);
  box-shadow: 0 0 10px rgba(94, 228, 255, 0.16);
}

.project-stage {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
}

.project-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8rem;
}

.project-reward {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.82rem;
}

.project-offline {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.55);
}

.project-join-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 11px 17px;
  border: 1px solid rgba(94, 228, 255, 0.3);
  border-radius: 999px;
  color: #67e8ff;
  background: rgba(94, 228, 255, 0.08);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.project-join-button:hover {
  background: rgba(94, 228, 255, 0.14);
  border-color: rgba(94, 228, 255, 0.5);
}

@media (max-width: 600px) {
  .project-status-section {
    padding: 0 16px 45px;
  }

  .project-status-card {
    padding: 21px;
    border-radius: 18px;
  }

  .project-status-top {
    gap: 12px;
  }

  .project-live-badge {
    padding: 6px 9px;
    font-size: 0.62rem;
  }

  .project-progress-track {
    gap: 3px;
  }

  .project-details {
    gap: 10px;
  }
}

@media (max-width: 430px) {
  .nav-add span {
    display: none;
  }

  .nav-add {
    width: 40px;
    padding: 0;
  }

  .nav-signin {
    padding: 0 10px;
  }

  .account-avatar-btn {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .account-menu {
    position: fixed;
    top: 70px;
    right: 12px;
    width: min(260px, calc(100vw - 24px));
  }

  .account-menu::before {
    display: none;
  }
}
[hidden] {
  display: none !important;
}


/* ==========================================
   DORABOT PROFILE PAGE
   ========================================== */

.profile-page {
  min-height: calc(100vh - 70px);
  padding: 44px 5% 70px;
}

.profile-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.profile-loading,
.profile-login-required,
.profile-error {
  min-height: 52vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.profile-state-card {
  width: min(520px, 100%);
  padding: 34px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.profile-state-card h1 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.profile-state-card p {
  color: #9fb1c6;
  line-height: 1.65;
}

.profile-state-card .button {
  margin-top: 22px;
}

.profile-spinner {
  width: 38px;
  height: 38px;
  margin: 0 auto 18px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: #5ee4ff;
  border-radius: 50%;
  animation: profileSpin 0.8s linear infinite;
}

@keyframes profileSpin {
  to {
    transform: rotate(360deg);
  }
}

.profile-hero {
  position: relative;
  overflow: hidden;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(69, 214, 255, 0.19), transparent 30%),
    radial-gradient(circle at 92% 0%, rgba(88, 101, 242, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.profile-identity {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.profile-avatar-wrap {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 3px solid rgba(94, 228, 255, 0.34);
  background: linear-gradient(135deg, #5865f2, #45d6ff);
  box-shadow: 0 0 0 6px rgba(69, 214, 255, 0.07);
}

.profile-avatar-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.profile-avatar-fallback {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
}

.profile-copy {
  min-width: 0;
}

.profile-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
  color: #72e5ff;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-copy h1 {
  overflow: hidden;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 5vw, 2.7rem);
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-handle {
  margin-top: 7px;
  color: #8fa3b8;
  font-size: 0.95rem;
}

.profile-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.profile-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #dbe8f5;
  font-size: 0.78rem;
  font-weight: 800;
}

.profile-badge.vip {
  color: #ffe392;
  border-color: rgba(255, 214, 107, 0.26);
  background: rgba(255, 214, 107, 0.08);
}

.profile-badge.birthday {
  color: #9beaff;
  border-color: rgba(94, 228, 255, 0.26);
  background: rgba(94, 228, 255, 0.08);
}

.profile-section {
  margin-top: 22px;
}

.profile-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 13px;
}

.profile-section-head h2 {
  margin: 0;
  text-align: left;
  font-size: 1.15rem;
}

.profile-section-head p {
  color: #7f93a9;
  font-size: 0.8rem;
}

.profile-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.profile-stat-card {
  min-width: 0;
  padding: 19px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.075);
}

.profile-stat-label {
  display: block;
  color: #879bae;
  font-size: 0.77rem;
  font-weight: 700;
}

.profile-stat-value {
  display: block;
  margin-top: 8px;
  overflow: hidden;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
  text-overflow: ellipsis;
}

.profile-stat-sub {
  display: block;
  margin-top: 5px;
  color: #698096;
  font-size: 0.72rem;
}

.profile-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.profile-panel {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.042);
  border: 1px solid rgba(255, 255, 255, 0.075);
}

.profile-panel-title {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 850;
}

.profile-list {
  display: grid;
  gap: 8px;
}

.profile-list-row {
  min-height: 43px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.027);
}

.profile-list-row span {
  color: #91a5b8;
  font-size: 0.82rem;
}

.profile-list-row strong {
  color: #edf6ff;
  font-size: 0.86rem;
  text-align: right;
}

.profile-progress {
  margin-top: 12px;
}

.profile-progress-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
  color: #91a5b8;
  font-size: 0.78rem;
}

.profile-progress-track {
  width: 100%;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.profile-progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #45d6ff, #5865f2);
  transition: width 0.4s ease;
}

.profile-empty-note {
  padding: 14px;
  border-radius: 13px;
  color: #8297aa;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.82rem;
  line-height: 1.55;
}

.profile-footer-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.profile-footer-actions a {
  color: #ff8c96;
  font-size: 0.84rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .profile-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .profile-page {
    padding: 28px 4% 55px;
  }

  .profile-hero {
    padding: 22px;
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-badges {
    justify-content: flex-start;
  }

  .profile-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .profile-identity {
    align-items: center;
    gap: 15px;
  }

  .profile-avatar-wrap {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
  }

  .profile-overview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .profile-stat-card {
    padding: 15px;
  }

  .profile-stat-value {
    font-size: 1.25rem;
  }
}


.profile-balance-value {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
}

.profile-balance-value img {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
}

.profile-balance-value .profile-stat-value {
  margin-top: 0;
}

.profile-owned-cards {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.profile-owned-card {
  min-width: 0;
  min-height: 58px;
  padding: 10px 12px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  border-radius: 13px;
  background: rgba(255, 255, 255, 0.03);
  border:
    1px solid rgba(255, 255, 255, 0.055);
}

.profile-owned-card > div {
  min-width: 0;
}

.profile-owned-card strong,
.profile-owned-card span {
  display: block;
}

.profile-owned-card strong {
  overflow: hidden;
  color: #edf6ff;
  font-size: 0.84rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-owned-card span {
  margin-top: 4px;
  color: #7f94a8;
  font-size: 0.69rem;
}

.profile-owned-card b {
  flex: 0 0 auto;
  color: #6fe4ff;
  font-size: 0.82rem;
}

@media (max-width: 820px) {
  .profile-owned-cards {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .profile-owned-cards {
    grid-template-columns: 1fr;
  }

  .profile-balance-value img {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }
}

/* ==========================================
   HOMEPAGE AESTHETIC POLISH
   Scoped to .home-page so other pages keep
   their current layout and behavior.
   ========================================== */

.home-page {
  --home-bg: #07111f;
  --home-panel: rgba(11, 26, 44, 0.76);
  --home-panel-strong: rgba(12, 29, 49, 0.92);
  --home-line: rgba(255, 255, 255, 0.08);
  --home-text-soft: #94a8bb;
  --home-cyan: #65e2ff;
  --home-blue: #6d7cff;

  overflow-x: hidden;

  background:
    radial-gradient(circle at 15% 5%, rgba(49, 196, 255, 0.13), transparent 28rem),
    radial-gradient(circle at 85% 18%, rgba(109, 124, 255, 0.10), transparent 25rem),
    linear-gradient(180deg, #06101d 0%, #081525 46%, #07111f 100%);
}

.home-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

.home-page nav {
  width: min(1180px, calc(100% - 28px));
  margin: 12px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  background: rgba(6, 16, 29, 0.74);
  box-shadow: 0 12px 45px rgba(0,0,0,0.20);
}

.home-page .nav-brand {
  gap: 9px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.home-page .nav-logo {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 0 4px rgba(101,226,255,0.05);
}

.home-page .nav-links {
  gap: 6px;
}

.home-page .nav-links a {
  padding: 9px 10px;
  border-radius: 10px;
  color: #9eb0c1;
  font-size: 0.78rem;
  font-weight: 650;
}

.home-page .nav-links a:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.055);
}

.home-page .nav-add,
.home-page .nav-signin {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.82rem;
}

.home-page main {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.home-page section {
  scroll-margin-top: 100px;
}

/* Hero */
.home-page .hero {
  position: relative;
  isolation: isolate;
  min-height: auto;
  margin: 26px 0 22px;
  padding: clamp(52px, 7vw, 88px) clamp(22px, 6vw, 78px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.085);
  border-radius: 32px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(14,34,56,0.94), rgba(7,19,34,0.94));
  box-shadow:
    0 30px 90px rgba(0,0,0,0.27),
    inset 0 1px 0 rgba(255,255,255,0.045);
}

.home-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 15%, rgba(101,226,255,0.12), transparent 34%),
    linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.022) 50%, transparent 80%);
}

.home-page .hero::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(101,226,255,0.6), transparent);
}

.home-page .hero-content {
  width: min(760px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.home-page .hero-kicker {
  width: fit-content;
  margin: 0 auto 20px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(101,226,255,0.14);
  border-radius: 999px;
  color: #a7b9ca;
  background: rgba(101,226,255,0.045);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.home-page .hero-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #65e2ff;
  box-shadow: 0 0 14px rgba(101,226,255,0.85);
}

.home-page .hero .bot-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 20px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  background: rgba(255,255,255,0.055);
  box-shadow:
    0 18px 55px rgba(0,0,0,0.25),
    0 0 45px rgba(101,226,255,0.09);
}

.home-page .hero .bot-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 21px;
}

.home-page .hero h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  color: #f8fbff;
}

.home-page .hero h1 span {
  background: linear-gradient(120deg, #ffffff 10%, #7ee7ff 54%, #8994ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-page .hero .subtitle {
  max-width: 650px;
  margin: 22px auto 0;
  color: #9bafc2;
  font-size: clamp(1rem, 2vw, 1.17rem);
  line-height: 1.72;
}

.home-page .hero .buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.home-page .hero .button {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 780;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.home-page .hero .button:hover {
  transform: translateY(-2px);
}

.home-page .hero .button.primary {
  color: #04121c;
  border: 1px solid rgba(126,231,255,0.85);
  background: linear-gradient(135deg, #7ce9ff, #5cccec);
  box-shadow: 0 12px 32px rgba(77,207,239,0.17);
}

.home-page .hero .button.secondary,
.home-page .hero .button.support {
  color: #eaf5ff;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.045);
  box-shadow: none;
}

.home-page .hero .button.secondary:hover,
.home-page .hero .button.support:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.075);
}

.home-page .hero-pills {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.home-page .hero-pills span {
  padding: 7px 10px;
  color: #8298ad;
  border: 1px solid rgba(255,255,255,0.055);
  border-radius: 999px;
  background: rgba(255,255,255,0.025);
  font-size: 0.74rem;
  font-weight: 700;
}

.home-page .hero-glow {
  position: absolute;
  z-index: -1;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(65px);
  opacity: .12;
  pointer-events: none;
}

.home-page .hero-glow-one {
  top: -120px;
  left: -70px;
  background: #57dcff;
}

.home-page .hero-glow-two {
  right: -80px;
  bottom: -130px;
  background: #6878ff;
}

/* Shared section treatment */
.home-page #features,
.home-page #commands,
.home-page .economy-section,
.home-page .support-section,
.home-page .raid-status-section,
.home-page .project-status-section {
  margin: 20px 0;
}

.home-page #features,
.home-page #commands,
.home-page .economy-section,
.home-page .support-section {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  background: rgba(9,23,39,0.60);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.025);
}

.home-page #features > h2,
.home-page #commands > h2,
.home-page .support-section > h2,
.home-page .section-heading h2 {
  margin-bottom: 10px;
  color: #f4f8fc;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

/* Birthday event */
.home-page .birthday-event {
  margin: 22px 0;
  padding: clamp(26px, 5vw, 48px);
  border-radius: 30px;
  border: 1px solid rgba(255, 206, 101, 0.13);
  background:
    radial-gradient(circle at 14% 0%, rgba(255,210,106,0.08), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(101,226,255,0.06), transparent 28%),
    rgba(10,24,40,0.75);
  box-shadow: 0 24px 70px rgba(0,0,0,0.20);
}

.home-page .birthday-container {
  gap: clamp(28px, 6vw, 70px);
}

.home-page .birthday-copy h2 {
  max-width: 720px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.home-page .birthday-lead {
  max-width: 660px;
  font-size: 0.98rem;
}

.home-page .birthday-status-card,
.home-page .birthday-countdown div,
.home-page .birthday-perk,
.home-page .birthday-panel,
.home-page .birthday-howto {
  border-color: rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.032);
}

.home-page .birthday-card-frame {
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.26);
}

.home-page .birthday-perk {
  border-radius: 18px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.home-page .birthday-perk:hover {
  transform: translateY(-3px);
  border-color: rgba(101,226,255,0.16);
  background: rgba(255,255,255,0.05);
}

/* Live raid */
.home-page .raid-status-card {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.075);
  background:
    linear-gradient(145deg, rgba(14,31,50,0.86), rgba(9,22,38,0.86));
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}

.home-page .raid-status-label {
  letter-spacing: .14em;
}

.home-page .raid-join-button {
  border-radius: 12px;
}

/* Live project */
.home-page .project-status-card {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.075);
  background:
    linear-gradient(145deg, rgba(14,31,50,0.86), rgba(9,22,38,0.86));
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}

.home-page .project-status-label {
  letter-spacing: .14em;
}

.home-page .project-join-button {
  border-radius: 12px;
}

/* Feature grid */
.home-page .feature-grid,
.home-page .economy-grid {
  margin-top: 24px;
  gap: 12px;
}

.home-page .card,
.home-page .economy-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.065);
  border-radius: 20px;
  background: rgba(255,255,255,0.028);
  box-shadow: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.home-page .card::before,
.home-page .economy-card::before {
  opacity: 0.42;
}

.home-page .card:hover,
.home-page .economy-card:hover {
  transform: translateY(-4px);
  border-color: rgba(101,226,255,0.16);
  background: rgba(255,255,255,0.045);
  box-shadow: 0 18px 42px rgba(0,0,0,0.14);
}

.home-page .card > span,
.home-page .economy-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.045);
  font-size: 1.35rem;
}

.home-page .card h3,
.home-page .economy-card h3 {
  margin-bottom: 7px;
  color: #edf6ff;
  font-size: 1rem;
  letter-spacing: -0.015em;
}

.home-page .card p,
.home-page .economy-card p {
  color: #8fa4b7;
  line-height: 1.6;
  font-size: 0.84rem;
}

.home-page .economy-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* Commands */
.home-page .commands {
  margin-top: 22px;
  gap: 9px;
}

.home-page .commands code {
  padding: 10px 13px;
  border: 1px solid rgba(101,226,255,0.08);
  border-radius: 11px;
  color: #bdefff;
  background: rgba(101,226,255,0.035);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .82rem;
}

/* Support */
.home-page .support-section {
  overflow: hidden;
  position: relative;
  text-align: left;
  background:
    radial-gradient(circle at 90% 20%, rgba(109,124,255,0.10), transparent 28%),
    rgba(9,23,39,0.66);
}

.home-page .support-section > p {
  max-width: 700px;
  color: #93a9bd;
}

.home-page .support-section .perks {
  width: fit-content;
  margin: 20px 0;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  color: #c2d3e2;
  font-size: .84rem;
}

.home-page .support-section .button.support {
  display: inline-flex;
  margin-top: 2px;
  border-radius: 13px;
  background: rgba(88,101,242,0.92);
}

.home-page .support-section .optional {
  margin-top: 14px;
  font-size: .76rem;
  color: #71869a;
}

/* Footer */
.home-page footer {
  width: min(1180px, calc(100% - 28px));
  margin: 24px auto 0;
  padding: 32px 6px 42px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: transparent;
  text-align: left;
}

.home-page footer strong {
  font-size: 1.05rem;
}

.home-page footer p {
  margin: 6px 0 14px;
  color: #72879b;
}

.home-page footer > a {
  color: #a6b9ca;
  font-size: .84rem;
}

.home-page .footer-legal {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #60778b;
  font-size: .75rem;
}

.home-page .footer-legal a:hover {
  color: #bcefff;
}

/* Responsive homepage */
@media (max-width: 1050px) {
  .home-page .nav-links {
    gap: 2px;
  }

  .home-page .nav-links a {
    padding-inline: 7px;
    font-size: .73rem;
  }
}

@media (max-width: 900px) {
  .home-page nav {
    width: min(100% - 20px, 1180px);
    margin-top: 10px;
  }

  .home-page main,
  .home-page footer {
    width: min(100% - 20px, 1180px);
  }

  .home-page .nav-links {
    top: calc(100% + 9px);
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    background: rgba(7,17,31,.97);
    box-shadow: 0 20px 50px rgba(0,0,0,.30);
  }

  .home-page .nav-links a {
    width: 100%;
    padding: 11px 12px;
    border-radius: 10px;
  }

  .home-page .hero {
    margin-top: 18px;
    border-radius: 26px;
  }
}

@media (max-width: 620px) {
  .home-page nav {
    padding: 9px 10px;
    border-radius: 17px;
  }

  .home-page .nav-brand span {
    display: none;
  }

  .home-page .nav-add {
    min-height: 36px;
    padding: 0 12px;
  }

  .home-page .nav-add .discord-icon {
    display: none;
  }

  .home-page .nav-signin {
    min-height: 36px;
    padding: 0 11px;
  }

  .home-page .hero {
    padding: 42px 18px;
  }

  .home-page .hero .bot-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
  }

  .home-page .hero .bot-icon img {
    border-radius: 17px;
  }

  .home-page .hero h1 {
    font-size: clamp(2.85rem, 16vw, 4.2rem);
  }

  .home-page .hero .subtitle {
    font-size: .93rem;
  }

  .home-page .hero .buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-page .hero .button {
    width: 100%;
  }

  .home-page #features,
  .home-page #commands,
  .home-page .economy-section,
  .home-page .support-section,
  .home-page .birthday-event {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .home-page .feature-grid,
  .home-page .economy-grid {
    grid-template-columns: 1fr;
  }

  .home-page .card,
  .home-page .economy-card {
    min-height: 0;
  }

  .home-page .birthday-countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .support-section .perks {
    width: 100%;
    line-height: 1.7;
  }
}

@media (max-width: 430px) {
  .home-page .nav-signin .discord-icon {
    display: none;
  }

  .home-page .nav-signin {
    padding: 0 10px;
  }

  .home-page .hero-kicker {
    font-size: .69rem;
  }

  .home-page .hero-pills {
    gap: 6px;
  }

  .home-page .hero-pills span {
    font-size: .68rem;
  }
}
/* Mobile navbar — compact Add button */
@media (max-width: 620px) {
  .home-page .nav-add {
    width: auto;
    min-width: 0;
    height: 38px;
    min-height: 38px;
    padding: 0 13px;
    border-radius: 11px;
    white-space: nowrap;
    font-size: 0;
  }

  .home-page .nav-add::after {
    content: "Add";
    font-size: 0.78rem;
    font-weight: 800;
  }

  .home-page .nav-add span,
  .home-page .nav-add .discord-icon {
    display: none;
  }
}

@media (max-width: 430px) {
  .home-page .nav-add {
    height: 36px;
    min-height: 36px;
    padding: 0 12px;
  }

  .home-page .nav-add::after {
    font-size: 0.75rem;
  }
}
.account-avatar-btn {
  border: 1.5px solid rgba(94, 228, 255, 0.45);
}

/* ==========================================
   DORABOT SLIDE-OUT NAV DRAWER — FINAL
   Desktop + Mobile
   ========================================== */

/* Hamburger is used on desktop and mobile */
.home-page .mobile-menu-btn {
  display: block;
  position: relative;
  z-index: 10020;
}

/* Drawer */
.home-page .nav-links {
  display: flex !important;
  position: fixed;
  top: 0;
  right: 0;
  left: auto;

  width: 390px;
  max-width: 88vw;
  height: 100dvh;

  margin: 0;
  padding: 108px 26px 28px;

  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 8px;

  background:
    radial-gradient(
      circle at top right,
      rgba(69, 214, 255, 0.09),
      transparent 280px
    ),
    linear-gradient(
      180deg,
      rgba(11, 24, 40, 0.995),
      rgba(6, 14, 25, 0.995)
    );

  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.42);

  /* Completely hidden until hamburger is clicked */
  transform: translateX(110%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    transform 0.18s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.12s ease,
    visibility 0.12s ease;

  overflow-y: auto;
  overscroll-behavior: contain;

  z-index: 10010;
}

.home-page .nav-links.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.home-page .nav-links a {
  width: 100%;
  min-height: 54px;
  padding: 0 17px;

  display: flex;
  align-items: center;

  border: 1px solid transparent;
  border-radius: 15px;

  background: transparent;
  color: #aebdca;

  font-size: 1rem;
  font-weight: 700;
  line-height: 1;

  transition:
    color 0.14s ease,
    background 0.14s ease,
    border-color 0.14s ease,
    transform 0.14s ease;
}

.home-page .nav-links a:hover,
.home-page .nav-links a:focus-visible,
.home-page .nav-links a:active {
  color: #ffffff;
  background: rgba(101, 226, 255, 0.075);
  border-color: rgba(101, 226, 255, 0.11);
  transform: translateX(2px);
}

.home-page .nav-links a:first-child {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.045);
}

/* Background overlay */
.home-page::after {
  content: "";
  position: fixed;
  inset: 0;

  background: rgba(2, 7, 14, 0.58);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);

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

  transition:
    opacity 0.14s ease,
    visibility 0.14s ease;

  z-index: 10000;
}

.home-page:has(.nav-links.open)::after {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.home-page nav {
  z-index: 10005;
}

/* Keep only hamburger/X above the drawer */
.home-page .nav-actions {
  position: relative;
  z-index: auto;
}

.home-page:has(.nav-links.open) .nav-add,
.home-page:has(.nav-links.open) .account-area {
  visibility: hidden;
  pointer-events: none;
}

.home-page:has(.nav-links.open) .mobile-menu-btn {
  visibility: visible;
  position: fixed;
  top: 20px;
  right: 20px;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);

  z-index: 10030;
}

/* Tablet */
@media (max-width: 900px) {
  .home-page .nav-links {
    width: min(78vw, 360px);
    padding: 100px 22px 26px;
  }
}

/* Phones */
@media (max-width: 620px) {
  .home-page .nav-links {
    width: min(74vw, 340px);
    padding:
      max(92px, env(safe-area-inset-top))
      18px
      calc(22px + env(safe-area-inset-bottom));
  }

  .home-page .nav-links a {
    min-height: 52px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 0.96rem;
  }
}

/* Prevent off-canvas drawer from creating right-side blank space */
html {
  overflow-x: hidden;
}

body.home-page {
  overflow-x: hidden;
  width: 100%;
}
