* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --green: #22D3EE;
  --border-green: rgba(34, 211, 238, 0.2);
}

body {
  background-color: #060d1a;
  font-family: 'Poppins', sans-serif;
  color: white;
  min-height: 100vh;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════
   NAVBAR - Links di samping kanan logo
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  background: rgba(6, 13, 26, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-green);
  z-index: 9999;
  gap: 24px;
}

/* ── KIRI: brand logo ── */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

/* ── SEBELAH KANAN LOGO: nav links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex-shrink: 0;
}

.nav-links li a {
  display: inline-block;
  padding: 7px 13px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.active {
  background: rgba(34, 211, 238, 0.12);
  color: var(--green);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.15);
}

/* ── SPACER: biar auth tetap ke kanan ── */
.nav-spacer {
  flex: 1;
}

/* ── KANAN: auth area ── */
.nav-auth {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 64px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.4));
}

.nav-logo-text-img {
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.35));
}

/* Auth buttons (guest) */
.nav-auth-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.nav-btn-login {
  background: rgba(34, 211, 238, 0.1);
  color: var(--green);
  border: 1px solid rgba(34, 211, 238, 0.25);
}

.nav-btn-login:hover {
  background: rgba(34, 211, 238, 0.2);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.2);
}

.nav-btn-register {
  background: var(--green);
  color: #060d1a;
}

.nav-btn-register:hover {
  filter: brightness(1.08);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.4);
}

/* Avatar logged-in */
.nav-user-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #002d25, #22D3EE);
  border: 2px solid rgba(34, 211, 238, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #060d1a;
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.nav-avatar:hover {
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.4);
  transform: scale(1.05);
}

.nav-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.nav-user-name {
  font-size: 12px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-user-name:hover {
  color: var(--green);
  text-shadow: 0 0 8px rgba(34, 211, 238, 0.3);
}

.nav-pill {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-pill.member {
  background: rgba(34, 211, 238, 0.15);
  color: var(--green);
  border: 1px solid rgba(34, 211, 238, 0.3);
}

.nav-pill.admin {
  background: rgba(255, 200, 50, 0.15);
  color: #ffc832;
  border: 1px solid rgba(255, 200, 50, 0.3);
}

.nav-btn-dashboard {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
}

.nav-btn-dashboard:hover {
  background: rgba(34, 211, 238, 0.1);
  color: var(--green);
  border-color: rgba(34, 211, 238, 0.25);
}

.nav-btn-logout {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

.nav-btn-logout:hover {
  color: #ff5a6e;
  background: rgba(255, 90, 110, 0.1);
}

/* Hamburger */
.hamburger {
  display: none;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero-wrapper {
  width: 100%;
  border: none;
  margin: 64px auto 0;
  position: relative;
  overflow: hidden;
  padding: 80px 5%;
  background-image: url('image/warden.jpg');
  background-size: cover;
  background-position: center center;
  min-height: 500px;
}

.hero-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(6, 13, 26, 0.75) 100%);
  z-index: 0;
}

.hero-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #22D3EE 30%, #22D3EE 70%, transparent 100%);
  z-index: 2;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.6), 0 0 60px rgba(34, 211, 238, 0.3);
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  color: white;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}

.logo {
  width: 620px;
  height: 320px;
  margin-left: -200px;
  position: relative;
  top: 70px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 0 18px rgba(34, 211, 238, 0.35));
}

.store-desc {
  font-size: 13px;
  position: relative;
  left: -40px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #22D3EE;
  opacity: 0.92;
}

/* ── BUY BUTTON ── */
.buy-btn {
  margin-top: 4px;
  padding: 12px 32px;
  background: #22D3EE;
  color: #0a2820;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 16px #22D3EEaa, 0 0 36px #22D3EE55;
  transition: box-shadow 0.2s, transform 0.1s;
  text-decoration: none;
  display: inline-block;
}

.buy-btn:hover {
  box-shadow: 0 0 28px #22D3EEcc, 0 0 60px #22D3EE77;
  transform: scale(1.03);
}

.buy-btn:active {
  transform: scale(0.97);
}

.shimmer-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  pointer-events: none;
}

.buy-btn.shimmering .shimmer-overlay {
  animation: shimmer-run 0.55s ease forwards;
}

@keyframes shimmer-run {
  0% { left: -100%; }
  100% { left: 160%; }
}

/* ── STATS ── */
.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.stat-box {
  background: rgba(0, 0, 0, 0.45);
  border-radius: 12px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
  width: 130px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.stat-box:hover {
  border-color: #22D3EE;
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.2);
  transform: translateY(-3px);
}

.stat-value {
  font-size: 18px;
  font-weight: 700;
  color: #22D3EE;
  text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

.stat-value.gold {
  color: #22D3EE;
  text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

.stat-label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* ── HERO DIVIDER ── */
.hero-divider {
  width: 90%;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.5), rgba(34, 211, 238, 0.3), rgba(34, 211, 238, 0.5), transparent);
  box-shadow: 0 0 15px rgba(34, 211, 238, 0.3);
}

/* ── ABOUT ── */
.about {
  width: 90%;
  max-width: 1000px;
  margin: 70px auto 70px 5%;
  color: white;
  padding-left: 32px;
  position: relative;
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.8s ease;
}

.about::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #22D3EE, transparent);
  border-radius: 2px;
}

.about.show {
  opacity: 1;
  transform: translateX(0);
}

.about h2 {
  font-size: 22px;
  font-weight: 700;
  color: #22D3EE;
  margin-bottom: 14px;
  text-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

.about p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
}

/* ── PRODUCTS ── */
.products {
  width: 90%;
  margin: 80px auto;
  text-align: center;
}

.products h2 {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #22D3EE;
  letter-spacing: 2px;
  padding: 12px 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, #001a15, #002d25);
  border: 1px solid rgba(34, 211, 238, 0.4);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.15);
  margin-bottom: 28px;
  cursor: pointer;
  transition: 0.3s ease;
}

.products h2:active {
  box-shadow: 0 0 50px rgba(34, 211, 238, 0.8);
}

.marquee-outer {
  overflow-x: auto;
  width: 100%;
  cursor: grab;
  padding-bottom: 8px;
}

.marquee-outer:active {
  cursor: grabbing;
}

.marquee-outer::-webkit-scrollbar {
  height: 5px;
}

.marquee-outer::-webkit-scrollbar-thumb {
  background: #22D3EE;
  border-radius: 20px;
}

.marquee-outer::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 10px 16px;
}

.product-card {
  min-width: 200px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 12px;
  text-align: center;
  flex-shrink: 0;
  border: 1px solid rgba(34, 211, 238, 0.15);
  transition: 0.3s ease;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.08);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.5);
}

.product-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(34, 211, 238, 0.35);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.product-card p {
  margin-top: 12px;
  padding: 8px 6px;
  background: linear-gradient(135deg, #22D3EE, #22D3EE);
  border-radius: 10px;
  color: #001a15;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(34, 211, 238, 0.4);
  transition: 0.3s ease;
}

/* ── FAQ ── */
.faq {
  width: 90%;
  max-width: 1400px;
  margin: 80px auto 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.faq.show {
  opacity: 1;
  transform: translateY(0);
}

.faq h2 {
  font-size: 20px;
  font-weight: 700;
  color: #22D3EE;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(34, 211, 238, 0.4);
}

.faq-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 5px;
  font-weight: 600;
}

.faq-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

/* ── LINK BUTTONS ── */
.links-wrap {
  margin: 40px auto 30px;
  width: 90%;
  max-width: 600px;
  text-align: center;
}

.links-title {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #22D3EE;
  letter-spacing: 2px;
  padding: 12px 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, #001a15, #002d25);
  border: 1px solid rgba(34, 211, 238, 0.4);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.15);
  margin-bottom: 14px;
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.link-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px 10px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 50px;
  cursor: pointer;
  transition: 0.2s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.link-row:hover {
  border-color: #22D3EE;
  background: rgba(34, 211, 238, 0.07);
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.15);
  transform: translateY(-2px);
}

.link-row:active {
  transform: scale(0.98);
}

.link-row-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #002d25, #22D3EE);
  border: 2px solid rgba(34, 211, 238, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  overflow: hidden;
}

.link-row-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.link-row-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.link-row-label {
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.link-row-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

.link-row-dots {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.3);
  padding: 0 4px;
  flex-shrink: 0;
  letter-spacing: -1px;
}

.link-row-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  pointer-events: none;
  border-radius: 50px;
}

.link-row.shimmer-active .link-row-shimmer {
  animation: cx-shim 0.55s ease forwards;
}

@keyframes cx-shim {
  from { transform: translateX(-100%); }
  to { transform: translateX(200%); }
}

.links-dots {
  display: flex;
  gap: 5px;
  margin-top: 12px;
  justify-content: center;
}

.links-dots span {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(34, 211, 238, 0.25);
  transition: 0.2s;
  display: block;
}

.links-dots span.active {
  width: 18px;
  background: #22D3EE;
}

/* ── FOOTER ── */
.footer {
  text-align: center;
  padding: 24px;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  border-top: 1px solid rgba(34, 211, 238, 0.1);
  letter-spacing: 1px;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  border-radius: 50px;
  padding: 10px 18px 10px 12px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: 0.2s ease;
  text-decoration: none;
  z-index: 99999;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}

.wa-icon {
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-icon svg {
  width: 20px;
  height: 20px;
  fill: #25D366;
}

.wa-label {
  font-size: 13px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 768px) {
  .navbar {
    display: none;
  }

  body {
    padding-bottom: 72px;
  }

  .hero-wrapper {
    padding: 40px 5%;
    min-height: auto;
    margin-top: 0;
  }

  .hero {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0;
  }

  .hero-left {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .logo {
    width: 280px;
    height: auto;
    margin-left: 0;
    top: 0;
  }

  .store-desc {
    left: 0;
  }

  .stats-grid {
    width: 95%;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
  }

  .stat-box {
    flex: 1;
    min-width: 0;
    width: auto;
    height: 68px;
    padding: 0 6px;
  }

  .stat-value {
    font-size: 13px;
  }

  .stat-label {
    font-size: 8px;
    letter-spacing: 0.5px;
  }

  .about {
    padding-left: 16px;
    width: 95%;
    margin: 50px auto;
  }

  .about h2 {
    font-size: 18px;
  }

  .about p {
    font-size: 13px;
  }

  .products h2 {
    font-size: 15px;
    padding: 10px 28px;
  }

  .product-card {
    min-width: 150px;
  }

  .faq {
    padding: 22px 20px;
  }

  .faq h2 {
    font-size: 17px;
  }

  .faq-item h3 {
    font-size: 12px;
  }

  .faq-item p {
    font-size: 11px;
  }

  .links-wrap {
    margin: 30px auto;
    width: 90%;
  }

  .link-row-label {
    font-size: 13px;
  }

  .link-row-avatar {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .wa-float {
    bottom: 84px;
    right: 16px;
    padding: 10px 14px 10px 10px;
  }

  .wa-label {
    font-size: 12px;
  }
}

/* ══════════════════════════════════════
   BOTTOM NAVBAR (mobile only)
══════════════════════════════════════ */
.bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(6, 13, 26, 0.97);
    border-top: 1px solid rgba(34, 211, 238, 0.2);
    z-index: 9999;
  }

  .bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.35);
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.15s;
    padding-bottom: 4px;
  }

  .bottom-nav-item svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .bottom-nav-item.active,
  .bottom-nav-item:hover {
    color: #22D3EE;
  }
}

/* Modal Konfirmasi Logout */
.logout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.2s ease;
}

@keyframes fadeInOverlay {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.logout-modal {
  background: linear-gradient(135deg, #0a1a2e, #0d2235);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 20px;
  padding: 36px 32px;
  width: 90%;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.15), 0 20px 60px rgba(0,0,0,0.5);
  animation: popIn 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.logout-icon {
  font-size: 40px;
  margin-bottom: 14px;
}

.logout-modal h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.logout-modal p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.logout-modal p strong {
  color: #22D3EE;
}

.logout-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.logout-btn-cancel {
  flex: 1;
  padding: 10px 0;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.logout-btn-cancel:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

.logout-btn-confirm {
  flex: 1;
  padding: 10px 0;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #ff5a6e, #d63a4d);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(255,90,110,0.3);
}

.logout-btn-confirm:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 20px rgba(255,90,110,0.5);
}