/* Modern Premium Style System for KingNames.com */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg-dark: #07090e;
  --bg-card: rgba(17, 24, 39, 0.7);
  --bg-card-hover: rgba(30, 41, 59, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(234, 179, 8, 0.3);
  
  --primary-gold: #fbbf24;
  --secondary-gold: #d97706;
  --accent-gold-glow: rgba(250, 204, 21, 0.25);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --badge-com: rgba(59, 130, 246, 0.15);
  --badge-com-text: #60a5fa;
  --badge-net: rgba(16, 185, 129, 0.15);
  --badge-net-text: #34d399;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 0 25px rgba(251, 191, 36, 0.12);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(245, 158, 11, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Luxury Ambient Page Edge Glow Frame */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 
    inset 0 0 20px rgba(59, 130, 246, 0.25),
    inset 0 0 45px rgba(251, 191, 36, 0.15),
    inset 0 0 2px rgba(251, 191, 36, 0.4);
}

h1, h2, h3, h4, .brand-logo {
  font-family: 'Outfit', sans-serif;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(7, 9, 14, 0.85);
  border-bottom: 1px solid var(--border-color);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
}

.crown-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 15px var(--accent-gold-glow);
}

.logo-text span {
  background: linear-gradient(135deg, #fff 30%, var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary, 
button.btn-primary, 
a.btn-primary,
.offer-btn {
  background: linear-gradient(135deg, #fbbf24, #d97706) !important;
  color: #000000 !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: 30px !important;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.35) !important;
}

.btn-primary i, 
.btn-primary span, 
button.btn-primary i, 
a.btn-primary i,
.offer-btn i {
  color: #000000 !important;
}

.btn-primary:hover,
.offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(251, 191, 36, 0.5) !important;
}

.btn-outline,
button.btn-outline,
a.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-gold);
  color: #ffffff;
}

/* Offer Timer Banner */
.validity-banner {
  background: linear-gradient(90deg, rgba(234, 179, 8, 0.12), rgba(217, 119, 6, 0.2), rgba(234, 179, 8, 0.12));
  border-bottom: 1px solid var(--border-gold);
  padding: 10px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #fef08a;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.timer-badge {
  background: rgba(0, 0, 0, 0.4);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--border-gold);
  font-weight: 700;
  color: var(--primary-gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

/* Hero Section */
.hero {
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 30px;
  color: var(--primary-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero h1 span {
  background: linear-gradient(135deg, #ffffff 40%, var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
}

/* Stats Counter */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  backdrop-filter: blur(10px);
}

.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-gold);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

html {
  scroll-behavior: smooth;
}

/* Filter & Search Bar */
.filter-section {
  position: sticky;
  top: 80px;
  scroll-margin-top: 80px;
  z-index: 90;
  background: rgba(7, 9, 14, 0.95);
  backdrop-filter: blur(16px);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.filter-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.search-sort-row {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
}

.search-box {
  position: relative;
  flex: 1;
}

.search-box i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  font-size: 1.1rem;
}

.search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.95rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  outline: none;
  transition: var(--transition);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

.search-input:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.15);
}

.sort-box {
  min-width: 180px;
}

.sort-select {
  width: 100%;
  height: 51px;
  padding: 0 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.sort-select:hover, .sort-select:focus {
  border-color: var(--primary-gold);
  color: #fff;
}

.filter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
}

/* Custom Global & Category Tabs Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: #07090e;
}

::-webkit-scrollbar-thumb {
  background: rgba(251, 191, 36, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-gold);
}

.category-tabs {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scroll-behavior: smooth;
  padding-top: 4px;
  padding-bottom: 6px;
  width: 100%;
  scrollbar-width: thin;
  scrollbar-color: #fbbf24 rgba(255, 255, 255, 0.1);
  user-select: none;
}

.category-tabs::-webkit-scrollbar {
  height: 6px !important;
  display: block !important;
}

.category-tabs::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08) !important;
  border-radius: 10px;
}

.category-tabs::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #fbbf24, #d97706) !important;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.6) !important;
}

.category-tabs::-webkit-scrollbar-thumb:hover {
  background: #fbbf24 !important;
}

.tab-btn {
  flex: 1 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.tab-btn.active {
  background: rgba(251, 191, 36, 0.18);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  font-weight: 700;
  box-shadow: 0 0 14px rgba(251, 191, 36, 0.3);
}

/* Domain Cards Grid */
.domains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  padding-bottom: 60px;
  scroll-margin-top: 260px;
}

.domain-card {
  background: var(--bg-card);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(10px);
}

.domain-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tld-badge {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}

.tld-badge.com {
  background: var(--badge-com);
  color: var(--badge-com-text);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.tld-badge.net {
  background: var(--badge-net);
  color: var(--badge-net-text);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Modal Alert Messages */
.modal-alert {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.modal-alert.success {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.modal-alert.error {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.modal-alert.info {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.4);
}

.fav-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.fav-btn:hover, .fav-btn.active {
  color: #ef4444;
}

.domain-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  word-break: break-all;
  letter-spacing: -0.3px;
}

.domain-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--text-dim);
  flex-wrap: wrap;
}

.category-tag {
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
}

.char-count {
  background: rgba(255, 255, 255, 0.03);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-actions {
  display: flex;
  gap: 10px;
}

.card-actions .btn {
  flex: 1;
  justify-content: center;
  padding: 9px 12px;
  font-size: 0.85rem;
}

.btn-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
}

.btn-icon:hover {
  color: #fff;
  border-color: var(--primary-gold);
}

/* Contact & Info Section */
.contact-section {
  background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.8));
  border-top: 1px solid var(--border-color);
  padding: 80px 0;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.contact-card h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.email-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-gold);
  padding: 12px 24px;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-gold);
  margin: 24px 0 32px;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: #0f172a;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 520px;
  padding: 32px;
  transform: translateY(20px);
  transition: transform 0.25s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), var(--shadow-glow);
}

.modal-backdrop.show .modal {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

#modalDomainName {
  color: var(--primary-gold);
  font-weight: 800;
}

.close-modal {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #ffffff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  margin: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.close-modal:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #000000;
  transform: rotate(90deg) scale(1.08);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.95rem;
  outline: none;
}

.form-control:focus {
  border-color: var(--primary-gold);
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary-gold);
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 2000;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Tablet & Mobile Responsiveness Optimization */

/* Fluid Typography & Base Adjustments */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
  }

  .domains-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .stat-card {
    padding: 16px 12px;
    text-align: center;
  }

  .stat-value {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  /* Header & Nav */
  header {
    top: 0;
  }

  .nav-content {
    height: 64px;
  }

  .crown-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
    border-radius: 8px;
  }

  .brand-logo {
    font-size: 1.1rem;
    gap: 4px;
  }

  .nav-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
  }

  .nav-actions .btn {
    padding: 0 8px;
    font-size: 0.75rem;
    height: 32px;
    border-radius: 20px;
    white-space: nowrap;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .nav-actions .btn span {
    display: inline;
    white-space: nowrap;
  }

  /* Validity Banner */
  .validity-banner {
    font-size: 0.75rem;
    padding: 8px 4px;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 4px;
  }

  .timer-badge {
    font-size: 0.7rem;
    padding: 2px 6px;
    white-space: nowrap;
  }

  /* Hero Section */
  .hero {
    padding: 40px 0 24px;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  /* Stats Grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 24px;
  }

  .stat-card {
    padding: 14px 10px;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* Sticky Filter Bar */
  .filter-section {
    top: 66px;
    scroll-margin-top: 66px;
    padding: 12px 0;
    margin-bottom: 20px;
  }

  .filter-bar {
    gap: 10px;
  }

  .search-sort-row {
    gap: 8px;
  }

  .sort-box {
    min-width: 120px;
    max-width: 140px;
  }

  .search-input {
    height: 44px;
    padding: 0 14px 0 38px;
    font-size: 0.85rem;
    border-radius: var(--radius-md);
  }

  .search-box i {
    left: 12px;
    font-size: 0.95rem;
  }

  .sort-select {
    width: 100%;
    height: 44px;
    padding: 0 8px;
    font-size: 0.78rem;
    border-radius: var(--radius-md);
  }

  /* Domain Grid 2 Columns on Mobile */
  .domains-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding-bottom: 40px;
    scroll-margin-top: 215px;
  }

  .domain-card {
    padding: 18px 6px !important;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    min-height: 58px;
    overflow: hidden;
  }

  .domain-title {
    font-size: clamp(0.95rem, 3.8vw, 1.15rem) !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    word-break: normal !important;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
    line-height: 1.2;
    padding: 0 4px;
    letter-spacing: -0.3px;
  }

  .domain-meta, .card-actions {
    display: none !important;
  }

  /* Contact Section */
  .contact-section {
    padding: 48px 0;
  }

  .contact-card {
    padding: 28px 20px;
    border-radius: var(--radius-lg);
  }

  .contact-card h2 {
    font-size: 1.6rem;
  }

  .email-box {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    padding: 14px;
    border-radius: 16px;
    font-size: 0.95rem;
    margin: 18px 0;
    word-break: break-all;
  }

  /* Modal Optimization */
  .modal {
    width: 95%;
    padding: 24px 20px;
    border-radius: var(--radius-lg);
    max-height: 90vh;
    overflow-y: auto;
  }

  /* Toast Notification Center */
  .toast {
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: center;
    transform: translateY(80px);
    font-size: 0.85rem;
    padding: 10px 18px;
  }

  .toast.show {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 4px 12px;
  }

  .card-actions .btn {
    font-size: 0.8rem;
    padding: 8px 10px;
  }
}
