@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;600;700&family=Saira:wght@300;400;500;600;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: #0a0a0a;
  color: #ffffff;
  font-family: "Saira", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-root {
  min-height: 100vh;
  background: #0a0a0a;
  color: #ffffff;
}

.navbar {
  height: 56px;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.logo-text {
  font-family: "Chakra Petch", system-ui, sans-serif;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.04em;
  font-size: 1.1rem;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Navbar butonu (örnek button.primary/secondary tasarımına benzer) */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  background: #020617;
  color: #f9fafb;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.08s ease;
}

.button svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.button.secondary {
  border: 1px solid #ef4444; /* belirgin kırmızı çerçeve */
}

.button.primary {
  background: #ef4444;
  border-color: #f97316;
  box-shadow: 0 0 18px rgba(248, 113, 113, 0.45);
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary:hover {
  background: #dc2626;
}

@media (max-width: 767px) {
  .button {
    padding: 0.3rem 0.8rem;
    font-size: 0.68rem;
  }

  .button svg {
    width: 13px;
    height: 13px;
  }
}

.nav-pill:hover {
  border-color: #ef4444;
  box-shadow:
    0 0 18px rgba(0, 0, 0, 0.6),
    0 0 22px #ef4444;
  transform: translateY(-1px) scale(1.02);
}

.btn {
  border-radius: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: background-color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.btn-outline {
  background: #1a1a1a;
  color: #ffffff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-red {
  background: #dc2626;
  color: #ffffff;
  box-shadow: 0 0 25px rgba(220, 38, 38, 0.4);
}

.btn-red:hover {
  background: #b91c1c;
}

.btn:active {
  transform: scale(0.97);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem 1rem 3rem;
}

.banner-main {
  width: 100%;
  aspect-ratio: 21 / 4;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.banner-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.top-logos {
  margin-top: 1rem;
  background: #0a0a0a;
  border-radius: 0.75rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.top-logos-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  min-width: max-content;
  animation: marquee 20s linear infinite;
}

.top-logo-item {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.top-logo-img {
  height: 1.75rem;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.15s ease;
}

@media (min-width: 768px) {
  .top-logo-img {
    height: 2.25rem;
  }
}

.top-logo-img:hover {
  opacity: 1;
}

.top-logos-fade-left,
.top-logos-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3rem;
  z-index: 10;
}

.top-logos-fade-left {
  left: 0;
  background: linear-gradient(to right, #0a0a0a, transparent);
}

.top-logos-fade-right {
  right: 0;
  background: linear-gradient(to left, #0a0a0a, transparent);
}

@keyframes marquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

.search-wrapper {
  position: relative;
  margin-top: 1rem;
}

.search-input {
  width: 100%;
  background: #1a1a1a;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.9rem;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  outline: none;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.search-input:focus {
  border-color: rgba(255, 255, 255, 0.15);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
}

.grid-sponsors {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
}

.card-sponsor {
  background: #111111;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.5rem 0.35rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  min-height: 90px;
  transition: background-color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.card-sponsor:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.card-logo-wrapper {
  height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-logo-wrapper img {
  max-height: 100%;
  max-width: 90px;
  object-fit: contain;
  filter: brightness(1.1);
}

.card-bonus {
  font-size: 0.38rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #facc15;
  text-align: center;
  height: 2.1em;               /* tüm kartlarda sabit yükseklik */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-bonus-secondary {
  margin-top: 0.12rem;
  padding: 0.16rem 0;
  border-radius: 999px;
  border: 1px solid rgba(239, 68, 68, 0.8);
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(249, 250, 251, 0.8);
  line-height: 1;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .card-bonus-secondary {
    padding: 0.12rem 0;
    font-size: 0.34rem;
    letter-spacing: 0.04em;
  }
}

/* .card-pill tamamen kaldırıldı; ileride tekrar kullanmak istersen yeniden ekleyebilirsin */



/* Mobilde kartları daha kompakt göster */
@media (max-width: 480px) {
  .card-sponsor {
    padding: 0.35rem 0.25rem;
    min-height: 80px;
  }

  .card-logo-wrapper {
    height: 28px;
  }

  .card-logo-wrapper img {
    max-width: 65px;
  }
}

.bottom-banner-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 1rem 1rem;
  z-index: 100;
}

.bottom-banner-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.bottom-banner-close {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: #000000;
  color: #ffffff;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.75rem;
}

.bottom-banner {
  width: 100%;
  aspect-ratio: 21 / 4;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9);
}

.bottom-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.side-banner {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  max-height: 600px;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
  background: #020617;
  z-index: 90;
}

.side-banner-left {
  left: 0.75rem;
}

.side-banner-right {
  right: 0.75rem;
}

.side-banner-inner {
  width: 100%;
  height: 100%;
}

.side-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.side-banner-close {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: #000000;
  color: #ffffff;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 1.4rem;
  height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.7rem;
}

@media (max-width: 1200px) {
  .side-banner {
    display: none;
  }
}

/* Telegram / kısayol kartı - Neden Bu Liste üstü */
.shortcut-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem 1rem;
  display: flex;
  justify-content: center;
}

.shortcut-card {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(17, 17, 17, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.shortcut-card:hover {
  background: rgba(26, 26, 26, 0.95);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.shortcut-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--icon-color, #0088cc);
}

.shortcut-icon svg {
  width: 22px;
  height: 22px;
}

.shortcut-text {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .shortcut-card {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }
  .shortcut-text {
    white-space: normal;
  }
}

/* Neden Burası? - Footer üstü SEO bloğu */
.why-here {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2.5rem 1rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.why-here-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.35rem;
  color: #fff;
}

.why-here-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-bottom: 1.5rem;
}

.why-here-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.why-here-item {
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  padding: 1.25rem 1rem 1.5rem;
  transition: border-color 0.2s ease, background 0.2s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-here-item:hover {
  background: rgba(26, 26, 26, 0.9);
  border-color: rgba(255, 255, 255, 0.1);
}

.why-here-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.6rem;
}

.why-here-heading {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.5rem;
}

.why-here-desc {
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  max-width: 100%;
}

@media (max-width: 900px) {
  .why-here-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .why-here {
    padding: 1.75rem 1rem 1.5rem;
  }

  .why-here-title {
    font-size: 1.1rem;
  }

  .why-here-sub {
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
  }

  .why-here-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .why-here-item {
    padding: 0.85rem 1rem 1rem;
  }

  .why-here-heading {
    font-size: 0.85rem;
  }

  .why-here-desc {
    font-size: 0.7rem;
  }
}

/* Hakkımızda bloğu */
.about-block {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}

.about-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* SSS Accordion */
.faq-block {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-title {
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.25rem;
  color: #fff;
}

.faq-list {
  max-width: 640px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
  width: 100%;
  padding: 0.9rem 0;
  text-align: left;
  background: none;
  border: none;
  color: #f9fafb;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.faq-question::after {
  content: "+";
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-question:hover {
  color: #fff;
}

.faq-answer {
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  padding: 0 0 0.9rem 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.footer {
  margin-top: 0;
  padding: 2rem 1rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 560px;
  margin: 0 auto 0.5rem;
  line-height: 1.45;
}

.footer-contact {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.75rem;
}

.footer-contact a {
  color: #0088cc;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-text {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Yukarı çık butonu */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(17, 17, 17, 0.95);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 80;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: rgba(26, 26, 26, 0.98);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.2s ease;
}

.popup-dialog {
  position: relative;
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.06), transparent 55%), #020617;
  border-radius: 1.25rem;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9);
  padding: 0.75rem;
  width: 320px;
  height: 320px;
  max-width: 90vw;
  max-height: 90vh;
}

.popup-frame {
  width: 100%;
  height: 100%;
  border-radius: 0.9rem;
  border: 1px solid rgba(248, 250, 252, 0.16);
  overflow: hidden;
  background: #020617;
}

.popup-frame img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .popup-dialog {
    width: 420px;
    height: 420px;
  }
}

@media (min-width: 1200px) {
  .popup-dialog {
    width: 520px;
    height: 520px;
  }
}

@media (max-width: 767px) {
  .popup-overlay {
    padding: 0;
  }

  .popup-dialog {
    width: 45vw;
    max-width: 180px;
    height: auto;
    max-height: 40vh;
    aspect-ratio: 1 / 1;
  }
}

.popup-close {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.92);
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
}

.no-scroll {
  overflow: hidden;
}

/* Admin panel */
.admin-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
  background: #050505;
}

@media (max-width: 768px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }
}

.admin-sidebar {
  background: #050505;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 1rem;
}

.admin-sidebar-title {
  font-family: "Chakra Petch", system-ui, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-nav a {
  padding: 0.6rem 0.8rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.admin-nav a.active,
.admin-nav a:hover {
  background: #111111;
  color: #ffffff;
}

.admin-main {
  padding: 1.5rem 1.25rem 2rem;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.admin-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.admin-table th,
.admin-table td {
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-table th {
  text-align: left;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.admin-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.1rem 0.45rem;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-success {
  background: rgba(22, 163, 74, 0.16);
  color: #4ade80;
}

.badge-muted {
  background: rgba(148, 163, 184, 0.16);
  color: #cbd5f5;
}

.form-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .form-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.form-input,
.form-textarea,
.form-select {
  background: #050505;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 0.5rem 0.6rem;
  font-size: 0.85rem;
  outline: none;
}

.form-textarea {
  min-height: 70px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: rgba(248, 113, 113, 0.8);
}

.form-row-inline {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
}

.form-checkbox {
  width: 14px;
  height: 14px;
}

.admin-alert {
  margin-bottom: 1rem;
  padding: 0.6rem 0.7rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
}

.admin-alert-success {
  background: rgba(22, 163, 74, 0.14);
  color: #4ade80;
}

.admin-alert-error {
  background: rgba(239, 68, 68, 0.16);
  color: #fecaca;
}

.admin-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 220;
}

.admin-modal {
  width: 100%;
  max-width: 640px;
  background: #020617;
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.9);
  padding: 1.25rem 1.5rem 1.5rem;
}

.admin-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.admin-modal-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.admin-modal-close {
  border: none;
  background: transparent;
  color: rgba(148, 163, 184, 0.9);
  font-size: 1.1rem;
  cursor: pointer;
}

.btn-sm {
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.9);
}

.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(248, 113, 113, 0.18), transparent 55%), #020617;
}

.login-card {
  width: 100%;
  max-width: 360px;
  background: rgba(15, 23, 42, 0.95);
  border-radius: 0.9rem;
  border: 1px solid rgba(248, 250, 252, 0.04);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.9);
  padding: 1.5rem 1.75rem 1.75rem;
}

.login-title {
  font-family: "Chakra Petch", system-ui, sans-serif;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.04em;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.login-subtitle {
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.68);
  margin-bottom: 1.25rem;
}

