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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Header */
header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e5e5e5;
  padding: 1rem 2rem;
  z-index: 100;
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon {
  width: 60px;
  height: 60px;
}

.logo-text h1 {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a0e05;
  margin: 0;
}

.logo-text p {
  font-size: 0.7rem;
  color: #8a4f05;
  letter-spacing: 0.5px;
  margin: 0;
  text-transform: uppercase;
}

/* External Links */
.external-links {
  display: flex;
  gap: 1.5rem;
}

.external-links a {
  color: #475569;
  text-decoration: none;
  font-size: rem;
  font-weight: 500;
}

.external-links a:hover {
  color: #0f172a;
  text-decoration: underline;
}

/* Main Content */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.intro {
  text-align: center;
  margin-bottom: 3rem;
}

.intro h2 {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.intro p {
  font-size: 2.125rem;
  color: #64748b;
  max-width: 80vw;
  margin: 0 auto;line-height:2.75rem;
}

/* Portal Grid */
.portal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

/* Portal Card */
.portal-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.2s ease;
}

.portal-card:hover {
  border-color: #0ea5e9;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}

.portal-card.active {
  cursor: pointer;
}

.portal-card.active:hover {
  transform: translateY(-2px);
}

.portal-card.coming-soon {
  opacity: 0.7;
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  margin: 0;
}

.card-link-icon {
  flex-shrink: 0;
  color: #94a3b8;
}

.portal-card.active:hover .card-link-icon {
  color: #0ea5e9;
}

.card-subtitle {
  font-size: 1.175rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.card-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-item {
  font-size: 1.157rem;
  color: #555;
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.card-item::before {
  content: '•';
  position: absolute;
  left: 0.25rem;
  color: #cbd5e1;
}

.status-badge {
  display: inline-block;
  font-size: 0.825rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  margin-left: 0.5rem;
}

.status-live {
  background: #dcfce7;
  color: #166534;
}

.status-Waiting{ background: #f1f5f9;
  background: #ffc107;}

.status-soon {
  background: #f1f5f9;
  color: #64748b;
}

/* Footer */
footer {
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
  padding: 2rem;
  text-align: center;
}

footer p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0.25rem 0;
}

footer a {
  color: #0ea5e9;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
.footer-contact {
  margin: 1.25rem 0 1rem 0;
}

.footer-contact a {
  font-family: var(--f-display);
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(138, 79, 5, 0.3);
  padding-bottom: 0.12rem;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}
/* Mobile */
@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  .external-links {
    display: none;
  }

  main {
    padding: 2rem 1rem 3rem;
  }

  .intro h2 {
    font-size: 1.5rem;
  }

  .portal-grid {
    grid-template-columns: 1fr;
  }
  .intro p{font-size: 1.175rem;line-height: normal;}
}

/* Mobile Nav */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
  color: #475569;
}

.mobile-nav {
  display: none;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 1rem;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-section {
  margin-bottom: 1.5rem;
}

.mobile-nav-section:last-child {
  margin-bottom: 0;
}

.mobile-nav-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  color: #334155;
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
  color: #0ea5e9;
  outline: none;
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

/* Mobile breakpoint */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
}
.portal-card {
  text-decoration: none;
  color: inherit;
}

.portal-card:hover,
.portal-card:focus,
.portal-card:focus-visible,
.portal-card:active {
  text-decoration: none;
  color: inherit;
}

.portal-card .card-title,
.portal-card .card-subtitle,
.portal-card .card-items,
.portal-card .card-item {
  text-decoration: none;
  color: inherit;
}

a.portal-card {
  position: relative;
  padding-bottom: 3.25rem;
}

a.portal-card::after {
  content: "View →";
  position: absolute;
  right: 1.25rem;
  bottom: 1rem;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  pointer-events: none;
  text-decoration: none;
}

a.portal-card:hover::after,
a.portal-card:focus-visible::after {
  color: var(--gold-bright);
}
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.logo:hover,
.logo:focus-visible,
.logo:active {
  text-decoration: none;
  color: inherit;
}