.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Global Domain Header */
.global-domain-header {
  width: 100%;
  text-align: center;
  padding: 0.35rem 0;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.global-domain-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-secondary), transparent);
  box-shadow: 0 0 12px var(--accent-primary);
  opacity: 0.8;
}

.global-domain-header a {
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 400;
  transition: all var(--transition-fast);
}

.global-domain-header a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px var(--accent-primary);
}

/* Header Layout */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(to right, var(--text-main), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  transition: filter var(--transition-fast), transform var(--transition-fast);
}

.navbar .logo:hover {
  filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.6));
  transform: translateX(-2px);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-main);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 0 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

/* Grid Layout for Modules */
.grid-section {
  padding: 2rem 0 6rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-title::before {
  content: '';
  display: block;
  width: 8px;
  height: 24px;
  background: var(--accent-primary);
  border-radius: 4px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

/* Footer Layout */
.footer {
  text-align: center;
  padding: 3rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--glass-border);
  margin-top: 4rem;
}

/* Hub Navigation */
.hub-nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.hub-nav a {
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-fast);
}
.hub-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
}
.hub-nav a.active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: white;
}
