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

:root {
  --red:      #c0392b;
  --dark-red: #1a0000;
  --gold:     #d4a017;
  --bg:       #0a0000;
  --card-bg:  #120000;
  --text:     #eeeeee;
  --muted:    #888888;
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

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

/* ONPAGE ANCHOR TEXT / INLINE HYPERLINKS */
.seo-body a,
.seo-inner a,
.seo-section a,
.about-inner p a,
.faq-a a,
p a:not([class]),
.anchor-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(212, 160, 23, 0.45);
  padding: 1px 4px;
  border-radius: 4px;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.seo-body a:hover,
.seo-inner a:hover,
.seo-section a:hover,
.about-inner p a:hover,
.faq-a a:hover,
p a:not([class]):hover,
.anchor-link:hover {
  color: #ffffff;
  border-bottom-color: var(--gold);
  background-color: rgba(212, 160, 23, 0.18);
  box-shadow: 0 0 10px rgba(212, 160, 23, 0.25);
}


/* HEADER */
header {
  background: var(--dark-red);
  border-bottom: 2px solid var(--gold);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow 0.2s;
}
header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.6); }

.logo img { height: 44px; object-fit: contain; display: block; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.desktop-nav a {
  color: #ccc;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s;
}
.desktop-nav a:hover { color: var(--gold); }
.desktop-nav a.active { color: var(--gold); }

.btn-login {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 6px 18px;
  border-radius: 4px;
  font-size: 0.82rem !important;
  transition: background 0.2s !important;
}
.btn-login:hover { background: var(--gold); color: #000 !important; }

.btn-play {
  background: #27ae60;
  color: #fff !important;
  padding: 6px 18px;
  border-radius: 4px;
  font-size: 0.82rem !important;
  font-weight: 700;
  transition: background 0.2s !important;
}
.btn-play:hover { background: #2ecc71; }

.btn-mobile-only { display: none; }
.mobile-actions { display: none; }

.hamburger {
  display: none;
  font-size: 1.5rem;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: var(--dark-red);
  border-bottom: 2px solid var(--gold);
  z-index: 199;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.mobile-nav.open { max-height: 300px; }
.mobile-nav a {
  display: block;
  padding: 12px 20px;
  font-size: 0.88rem;
  color: #ccc;
  border-bottom: 1px solid #2a0000;
  transition: color 0.2s;
}
.mobile-nav a:last-child { color: var(--gold); font-weight: 700; border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }

/* PAGE TITLE */
.page-title {
  background: linear-gradient(180deg, #1a0000 0%, #0a0000 100%);
  border-bottom: 1px solid #2a0000;
  padding: 28px 32px 20px;
  text-align: center;
}
.page-title h1 { font-size: 1.5rem; font-weight: 900; color: #fff; margin-bottom: 4px; }
.page-title h1 span { color: var(--gold); }
.page-title p { color: var(--muted); font-size: 0.82rem; }

/* CONTENT BANNER */
.content-banner {
  width: 100%;
  max-width: 600px;
  margin: 32px auto;
  display: block;
  border-radius: 8px;
  border: 1px solid #2a0000;
  transition: transform 0.3s;
}
.content-banner:hover { transform: scale(1.01); }

/* SEO SECTION */
.seo-section {
  background: #0f0000;
  border-top: 1px solid #2a0000;
  padding: 40px 32px 48px;
}
.seo-inner { max-width: 900px; margin: 0 auto; }
.seo-inner h2 { color: var(--gold); font-size: 1.05rem; margin: 28px 0 10px; }
.seo-inner h2:first-child { margin-top: 0; }
.seo-inner p { color: #999; font-size: 0.82rem; line-height: 1.75; margin-bottom: 10px; }
.seo-inner ul, .seo-inner ol {
  margin: 8px 0 12px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.seo-inner ul li, .seo-inner ol li {
  color: #999;
  font-size: 0.82rem;
  line-height: 1.6;
  list-style: disc;
  margin-left: 18px;
}
.seo-inner strong { color: #ddd; }
.seo-inner code {
  background: #1a0000;
  color: var(--gold);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 0.78rem;
}

/* FAQ */
.faq-section {
  background: #0a0000;
  border-top: 1px solid #2a0000;
  padding: 40px 32px 48px;
}
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq-inner h2 { color: var(--gold); font-size: 1.05rem; margin-bottom: 20px; }
.faq-item {
  border: 1px solid #2a0000;
  border-radius: 6px;
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-q {
  padding: 14px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ddd;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #120000;
  user-select: none;
}
.faq-q:hover { background: #1a0505; }
.faq-arrow { color: var(--gold); font-size: 0.75rem; transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  font-size: 0.8rem;
  color: #999;
  line-height: 1.7;
  background: #0d0000;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s;
  padding: 0 16px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 12px 16px; }

/* FOOTER */
footer {
  background: #050000;
  border-top: 1px solid var(--gold);
  padding: 32px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.footer-grid img { height: 38px; object-fit: contain; margin-bottom: 10px; display: block; }
.footer-grid p { color: #555; font-size: 0.75rem; line-height: 1.6; }
.footer-grid h4 { color: var(--gold); font-size: 0.78rem; margin-bottom: 10px; }
.footer-grid a { display: block; color: #666; font-size: 0.72rem; margin-bottom: 5px; transition: color 0.2s; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #1a0000;
  padding-top: 16px;
  text-align: center;
}
.footer-verified { max-width: 220px; object-fit: contain; margin: 0 auto 10px; display: block; opacity: 0.65; }
.footer-bottom p { color: #444; font-size: 0.68rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  header { padding: 0 16px; }
  .desktop-nav { display: none; }
  .mobile-actions { display: flex; align-items: center; gap: 12px; }
  .btn-mobile-only {
    display: inline-block;
    background: #27ae60;
    color: #fff !important;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.72rem !important;
    font-weight: 700;
  }
  .hamburger { display: block; }
  .mobile-nav { display: block; }

  .page-title { padding: 20px 16px 14px; }
  .page-title h1 { font-size: 1.15rem; }

  .seo-section { padding: 28px 16px 36px; }
  .seo-inner h2 { font-size: 0.95rem; }
  .faq-section { padding: 24px 14px 36px; }

  footer { padding: 24px 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
}


/* === HOME === */
/* HERO SLIDER */
.hero-wrapper { padding: 12px 16px; background: var(--bg); }
.hero {
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: 14px;
  border: 2px solid var(--gold);
  box-shadow: 0 0 18px rgba(212,160,23,0.55), 0 0 40px rgba(212,160,23,0.2);
}
.hero-track { display: flex; transition: transform 0.5s ease; }
.hero-slide { min-width: 100%; position: relative; }
.hero-slide img {
  width: 100%; height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.hero-arrows {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
}
.hero-arrow {
  background: rgba(0,0,0,0.55);
  color: var(--gold);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  pointer-events: all;
  border: none;
  transition: background 0.2s;
}
.hero-arrow:hover { background: rgba(212,160,23,0.3); }
.hero-dots {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.hero-dot.active { background: var(--gold); }

/* GAME CATEGORIES */
#games { background: #120000; border-bottom: 1px solid #2a0000; }
.cat-bar {
  display: flex; gap: 32px;
  align-items: center; justify-content: center;
  padding: 14px 32px;
  flex-wrap: wrap;
}
.cat-link {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.5px;
  cursor: default;
  user-select: none;
  pointer-events: none;
}
.cat-link.active { color: var(--gold); }
.game-grid { background: #0a0000; padding: 16px 32px 24px; }
.game-grid-inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
}
.game-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #1a0505;
  border: 1px solid #2a0000;
  aspect-ratio: 1/1;
  transition: transform 0.15s, border-color 0.15s;
}
.game-card:hover { transform: scale(1.04); border-color: var(--gold); }
.game-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.game-name {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
  font-size: 0.62rem;
  padding: 12px 5px 4px;
  text-align: center;
  line-height: 1.3;
}
.play-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  font-size: 1.8rem;
}
.game-card:hover .play-overlay { opacity: 1; }

/* ABOUT */
#about { background: #0f0000; padding: 40px 32px; }
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}
.about-h1 { color: #fff; font-size: 1.6rem; font-weight: 900; margin-bottom: 6px; line-height: 1.3; }
.about-h1 span { color: var(--gold); }
.about-inner h2 { color: var(--gold); font-size: 1.1rem; margin-bottom: 12px; margin-top: 20px; }
.about-inner p { color: #aaa; font-size: 0.82rem; line-height: 1.7; margin-bottom: 10px; }
.about-inner p strong { color: #fff; }

.seo-body { overflow: hidden; position: relative; max-height: 4.8em; }
.seo-body.expanded { max-height: none; }
.seo-body:not(.expanded)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2em;
  background: linear-gradient(transparent, #0f0000);
}
.read-more-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 4px 0;
  text-decoration: underline;
  display: block;
  margin-top: 6px;
}
.verified-img { width: 180px; object-fit: contain; flex-shrink: 0; }

/* BONUS */
#bonus { background: #0a0000; padding: 36px 32px; }
.section-title {
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.bonus-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.bonus-card { border-radius: 8px; overflow: hidden; }
.bonus-card img { width: 100%; display: block; }
.join-btn {
  display: block;
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.join-btn:hover { background: #a93226; }

/* FAQ */
#faq { background: #0d0000; padding: 36px 32px; }
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq-inner h2 { color: var(--gold); font-size: 1.05rem; margin-bottom: 20px; }
.faq-q { background: #1a0505; padding: 12px 16px; font-size: 0.85rem; color: #ddd; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: background 0.2s; }
.faq-q:hover { background: #220808; }

/* PAYMENT */
#payment {
  background: #080000;
  padding: 24px 32px;
  text-align: center;
  border-top: 1px solid #1a0000;
  border-bottom: 1px solid #1a0000;
}
#payment h3 { color: var(--muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
.payment-scroll { overflow-x: auto; }
.payment-scroll img { max-width: 100%; max-height: 52px; object-fit: contain; }

/* CTA */
#register {
  background: linear-gradient(135deg, #1a0000 0%, #3a0000 50%, #1a0000 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 48px 32px;
  text-align: center;
}
#register h2 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
#register p { color: #aaa; font-size: 0.88rem; margin-bottom: 20px; }
.btn-register {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-weight: 900;
  padding: 14px 40px;
  border-radius: 6px;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}
.btn-register:hover { opacity: 0.88; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .cat-bar { padding: 10px 14px; gap: 18px; }
  .game-grid { padding: 12px 10px 20px; }
  .game-grid-inner { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  #games .game-name { font-size: 0.52rem; }
  #about { padding: 28px 16px; }
  .about-inner { grid-template-columns: 1fr; }
  .verified-img { width: 100%; max-width: 280px; margin: 0 auto; }
  #bonus { padding: 24px 14px; }
  .bonus-grid { grid-template-columns: 1fr; gap: 12px; }
  .section-title { margin-bottom: 14px; }
  #faq { padding: 24px 14px; }
  #payment { padding: 18px 14px; }
  .payment-scroll img { min-width: unset; width: 100%; max-height: none; }
  #register { padding: 32px 16px; }
  #register h2 { font-size: 1rem; }
}
@media (max-width: 480px) {
  .hero-slide img { max-height: 200px; }
}


/* === CASINO GAMES === */
/* GAME GRID */
.game-section {
  padding: 24px 32px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.game-section .game-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  background: none;
  padding: 0;
}
.game-section .game-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #1a0505;
  border: 1px solid #2a0000;
  aspect-ratio: 1/1;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.game-section .game-card:hover {
  transform: scale(1.04);
  border-color: var(--gold);
  box-shadow: 0 0 14px rgba(212,160,23,0.35);
}
.game-section .game-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.game-section .game-name {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.88));
  color: #fff;
  font-size: 0.68rem;
  padding: 14px 6px 5px;
  text-align: center;
  line-height: 1.3;
}
.game-section .play-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  font-size: 2.2rem;
}
.game-section .game-card:hover .play-overlay { opacity: 1; }

@media (max-width: 768px) {
  .game-section { padding: 16px 10px 32px; }
  .game-section .game-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .game-section .game-name { font-size: 0.52rem; }
}


/* === BONUS === */
/* BONUS GRID */
.bonus-section {
  padding: 32px 32px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.bonus-card {
  background: var(--card-bg);
  border: 1px solid #2a0000;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bonus-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(212,160,23,0.2);
}
.bonus-card img { width: 100%; display: block; aspect-ratio: 16/7; object-fit: cover; }
.bonus-card-body { padding: 16px 16px 18px; }
.bonus-card-title { color: var(--gold); font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.bonus-card-desc { color: #999; font-size: 0.78rem; line-height: 1.6; margin-bottom: 14px; }
.bonus-card-btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 4px;
  transition: background 0.2s;
}
.bonus-card-btn:hover { background: #a93226; }
.bonus-tnc { font-size: 0.62rem; color: #555; padding: 0 16px 12px; }

/* CUCI LIST */
.cuci-list {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 10px !important;
  margin: 12px 0 16px !important;
}
.cuci-list li {
  display: flex !important;
  align-items: center;
  gap: 12px;
  background: #120000;
  border: 1px solid #2a0000;
  border-radius: 8px;
  padding: 12px 14px !important;
  border-left: 3px solid var(--gold) !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cuci-list li:hover {
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(212,160,23,0.15);
}
.cuci-icon { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
.cuci-list li div { display: flex; flex-direction: column; gap: 2px; }
.cuci-list li div strong { color: #eee; font-size: 0.82rem; }
.cuci-list li div span { color: #777; font-size: 0.72rem; }

@media (max-width: 540px) {
  .cuci-list { grid-template-columns: 1fr !important; }
}

/* SEO STEPS */
.seo-steps { counter-reset: steps; }
.seo-steps li { counter-increment: steps; }
.seo-steps li::before { content: counter(steps) ". "; color: var(--gold); font-weight: 700; }

/* BONUS TABLE */
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 16px;
  font-size: 0.78rem;
}
.bonus-table th {
  background: #1a0000;
  color: var(--gold);
  text-align: left;
  padding: 8px 12px;
  border: 1px solid #2a0000;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bonus-table td { padding: 8px 12px; border: 1px solid #1a0000; color: #999; vertical-align: top; }
.bonus-table tr:nth-child(odd) td { background: #0d0000; }
.bonus-table tr:nth-child(even) td { background: #120000; }

@media (max-width: 768px) {
  .bonus-section { padding: 20px 14px 36px; }
  .bonus-grid { grid-template-columns: 1fr; gap: 16px; }
  .bonus-table { font-size: 0.7rem; }
  .bonus-table th, .bonus-table td { padding: 6px 8px; }
}


/* === LOGIN === */
body { display: flex; flex-direction: column; }

/* MAIN */
main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(192,57,43,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(212,160,23,0.06) 0%, transparent 55%),
    var(--bg);
}

/* LOGIN CARD */
.login-wrap { width: 100%; max-width: 420px; }
.login-logo { text-align: center; margin-bottom: 28px; }
.login-logo img { height: 52px; object-fit: contain; }

.login-card {
  background: var(--card-bg);
  border: 1px solid #2a0000;
  border-radius: 14px;
  padding: 36px 32px 32px;
  box-shadow: 0 0 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,160,23,0.08);
}
.login-card h1 { font-size: 1.25rem; font-weight: 900; color: #fff; margin-bottom: 4px; text-align: center; }
.login-card h1 span { color: var(--gold); }
.login-sub { font-size: 0.75rem; color: var(--muted); text-align: center; margin-bottom: 28px; }

/* FORM */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #bbb;
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}
.input-wrap { position: relative; }
.input-wrap .input-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  pointer-events: none;
  opacity: 0.5;
}
.input-wrap input {
  width: 100%;
  background: #0d0000;
  border: 1px solid #2a0000;
  border-radius: 7px;
  color: var(--text);
  font-size: 0.88rem;
  padding: 12px 14px 12px 40px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.input-wrap input::placeholder { color: #444; }
.input-wrap input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.12);
}

.pw-toggle {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  font-size: 0.95rem;
  padding: 4px;
  transition: color 0.2s;
  line-height: 1;
}
.pw-toggle:hover { color: var(--gold); }

.forgot-row { text-align: right; margin-top: -10px; margin-bottom: 22px; }
.forgot-row a { font-size: 0.72rem; color: #666; transition: color 0.2s; }
.forgot-row a:hover { color: var(--gold); }

.btn-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  letter-spacing: 0.3px;
}
.btn-submit:hover { background: #a93226; box-shadow: 0 4px 18px rgba(192,57,43,0.45); }
.btn-submit:active { transform: scale(0.99); }

.divider { display: flex; align-items: center; gap: 12px; margin: 22px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: #1e0000; }
.divider span { font-size: 0.7rem; color: #444; white-space: nowrap; }

.register-hint { text-align: center; font-size: 0.72rem; color: #555; margin-top: 20px; }
.register-hint a { color: var(--gold); font-weight: 700; transition: opacity 0.2s; }
.register-hint a:hover { opacity: 0.8; }

.default-hint {
  background: #0d0000;
  border: 1px solid #2a0000;
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.72rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 20px;
}
.default-hint strong { color: var(--gold); }

.msg { font-size: 0.75rem; padding: 10px 14px; border-radius: 6px; margin-bottom: 16px; display: none; }
.msg.error { background: rgba(192,57,43,0.12); border: 1px solid rgba(192,57,43,0.35); color: #e88; }
.msg.show { display: block; }

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.trust-badge {
  font-size: 0.62rem;
  color: #3a3a3a;
  background: #0d0000;
  border: 1px solid #1a0000;
  border-radius: 4px;
  padding: 3px 8px;
}

@media (max-width: 768px) {
  main { padding: 24px 14px; align-items: flex-start; }
  .login-card { padding: 28px 20px 24px; }
}
@media (max-width: 360px) {
  .login-card { padding: 22px 14px 20px; }
}
