/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Age of Mythology Inspired Colors - 2026 Edition */
  --aom-blue: #0a2540;
  --aom-deep-blue: #051729;
  --aom-gold: #c5a572;
  --aom-bronze: #8b6f47;
  --aom-light-gold: #e6d5b8;
  --aom-dark-gold: #9d7e4a;
  --aom-marble: #e8e4dc;
  --aom-stone: #6b7280;
  --mediterranean: #1e5f8c;
  --accent-burgundy: #8b2635;
  --accent-teal: #2d6e7e;
  
  /* Functional Colors */
  --primary-color: #c5a572;
  --secondary-color: #1e5f8c;
  --dark-bg: #051729;
  --card-bg: rgba(10, 37, 64, 0.6);
  --glass-bg: rgba(229, 228, 226, 0.05);
  --text-light: #e8e4dc;
  --text-gray: #9ca3af;
  --error-color: #dc2626;
  --success-color: #059669;
  --border-radius: 16px;
  --border-radius-sm: 12px;
}

body {
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  /* Background image + subtle gradient overlay (Age of Mythology vibe) */
  background:
    radial-gradient(circle at 20% 20%, rgba(197, 165, 114, 0.10) 0%, transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(30, 95, 140, 0.18) 0%, transparent 55%),
    linear-gradient(135deg, rgba(5, 23, 41, 0.92) 0%, rgba(10, 37, 64, 0.88) 55%, rgba(30, 95, 140, 0.85) 100%),
    url("../images/gods.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text-light);
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
}

/* Ancient Pattern Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(197, 165, 114, 0.035) 0%, transparent 52%),
    radial-gradient(circle at 80% 80%, rgba(30, 95, 140, 0.06) 0%, transparent 52%),
    linear-gradient(180deg, rgba(5, 23, 41, 0.30) 0%, rgba(5, 23, 41, 0.10) 60%, rgba(5, 23, 41, 0.35) 100%);
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 24px;
}

/* Header with Glass Morphism */
.header {
  background: rgba(10, 37, 64, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197, 165, 114, 0.1);
  padding: 20px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--aom-gold) 0%, var(--aom-light-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Small Discord invite pill near the brand */
.brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.discord-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(197, 165, 114, 0.25);
  background: rgba(229, 228, 226, 0.05);
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.discord-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(197, 165, 114, 0.45);
  background: rgba(197, 165, 114, 0.10);
  color: var(--aom-light-gold);
}

.discord-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5865F2; /* Discord blurple */
  box-shadow: 0 0 0 4px rgba(88, 101, 242, 0.12);
}

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

.nav a {
  color: var(--text-light);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  font-size: 15px;
}

.nav a:hover {
  background: rgba(197, 165, 114, 0.15);
  color: var(--aom-light-gold);
  transform: translateY(-2px);
}

/* Nav dropdown (Events) */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-caret {
  font-size: 12px;
  opacity: 0.8;
  transform: translateY(-1px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: rgba(10, 37, 64, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(197, 165, 114, 0.18);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  display: none;
  z-index: 200;
}

/* Global sound toggle */
.sound-toggle {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(231, 197, 106, 0.28);
  background: rgba(9, 30, 48, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-light);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  transition: transform .12s ease, background .18s ease, border-color .18s ease, opacity .18s ease;
}
.sound-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(231, 197, 106, 0.42);
}
.sound-toggle.off {
  opacity: 0.55;
  border-color: rgba(255,255,255,0.14);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: rgba(197, 165, 114, 0.14);
  color: var(--aom-light-gold);
  transform: none;
}

.nav-dropdown.open .dropdown-menu {
  display: block;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-name {
  color: var(--aom-gold);
  font-weight: 600;
  font-size: 15px;
}

/* Modern Buttons - 2026 Style */
.btn {
  padding: 14px 32px;
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

/* Google Sign-In Button */
.btn-google {
  width: 100%;
  padding: 14px 24px;
  border: 2px solid rgba(197, 165, 114, 0.2);
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: var(--text-light);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.3px;
}

.btn-google:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(197, 165, 114, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.btn-google:active {
  transform: translateY(0);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--aom-gold) 0%, var(--aom-dark-gold) 100%);
  color: var(--dark-bg);
  box-shadow: 0 4px 16px rgba(197, 165, 114, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(197, 165, 114, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--mediterranean) 0%, var(--accent-teal) 100%);
  color: var(--text-light);
  box-shadow: 0 4px 16px rgba(30, 95, 140, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30, 95, 140, 0.4);
}

.btn-danger {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: var(--text-light);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.btn-danger:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}

.btn-success {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: var(--text-light);
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
}

.btn-success:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--aom-gold);
  color: var(--aom-gold);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(197, 165, 114, 0.1);
  border-color: var(--aom-light-gold);
  color: var(--aom-light-gold);
  transform: translateY(-3px);
}

/* Modern Glass Morphism Cards */
.card {
  background: rgba(10, 37, 64, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(197, 165, 114, 0.15);
  border-radius: var(--border-radius);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aom-gold), var(--mediterranean), var(--aom-gold));
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(197, 165, 114, 0.3);
}

.card:hover::before {
  opacity: 1;
}

.card-title {
  font-size: 26px;
  margin-bottom: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--aom-gold) 0%, var(--aom-light-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.3px;
}

.card-content {
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 15px;
}

/* Modern Forms */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  color: var(--text-light);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  opacity: 0.9;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(197, 165, 114, 0.2);
  border-radius: var(--border-radius-sm);
  background: rgba(5, 23, 41, 0.6);
  backdrop-filter: blur(10px);
  color: var(--text-light);
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--aom-gold);
  background: rgba(5, 23, 41, 0.8);
  box-shadow: 0 0 0 4px rgba(197, 165, 114, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-gray);
  opacity: 0.6;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

/* Modern Message Alerts */
.error-message,
.success-message {
  padding: 16px 20px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 24px;
  display: none;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid;
}

.error-message {
  background: rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.4);
  color: #fca5a5;
}

.success-message {
  background: rgba(5, 150, 105, 0.15);
  border-color: rgba(5, 150, 105, 0.4);
  color: #6ee7b7;
}

/* Modern Loading Spinner */
.loading-spinner {
  border: 4px solid rgba(197, 165, 114, 0.2);
  border-top: 4px solid var(--aom-gold);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: spin 0.8s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  margin: 24px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Modern Grid Layout */
.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Epic Hero Section - Age of Mythology Style */
.hero {
  text-align: center;
  padding: 80px 32px;
  background: 
    linear-gradient(135deg, rgba(197, 165, 114, 0.1) 0%, rgba(30, 95, 140, 0.15) 100%),
    radial-gradient(ellipse at top, rgba(197, 165, 114, 0.15), transparent 70%);
  border-radius: var(--border-radius);
  margin-bottom: 48px;
  border: 1px solid rgba(197, 165, 114, 0.2);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(197, 165, 114, 0.03) 50%, transparent 70%);
  animation: shimmer 8s infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--aom-light-gold) 0%, var(--aom-gold) 50%, var(--aom-bronze) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  line-height: 1.2;
  text-shadow: none;
  position: relative;
}

.hero p {
  font-size: 22px;
  margin-bottom: 36px;
  color: var(--text-light);
  opacity: 0.9;
  font-weight: 400;
  letter-spacing: 0.3px;
  position: relative;
}

/* Modern Stats Display */
.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.stat-box {
  background: rgba(10, 37, 64, 0.5);
  backdrop-filter: blur(20px);
  padding: 32px 24px;
  border-radius: var(--border-radius);
  text-align: center;
  min-width: 180px;
  border: 1px solid rgba(197, 165, 114, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-box:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 165, 114, 0.3);
  box-shadow: 0 8px 24px rgba(197, 165, 114, 0.2);
}

.stat-value {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--aom-gold) 0%, var(--aom-light-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-gray);
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Modern Event List */
.event-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: rgba(10, 37, 64, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(197, 165, 114, 0.15);
  border-radius: var(--border-radius-sm);
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-item:hover {
  background: rgba(10, 37, 64, 0.7);
  border-color: rgba(197, 165, 114, 0.3);
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(197, 165, 114, 0.15);
}

.event-info h3 {
  color: var(--aom-gold);
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 18px;
}

.event-meta {
  display: flex;
  gap: 24px;
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 500;
}

/* Modern Chat Interface */
.chat-container {
  display: flex;
  flex-direction: column;
  height: 600px;
  background: rgba(10, 37, 64, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(197, 165, 114, 0.15);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--aom-gold) rgba(10, 37, 64, 0.3);
}

.chat-messages::-webkit-scrollbar {
  width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
  background: rgba(10, 37, 64, 0.3);
  border-radius: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: var(--aom-gold);
  border-radius: 4px;
}

.message {
  margin-bottom: 20px;
  padding: 16px 20px;
  background: rgba(5, 23, 41, 0.6);
  border-radius: var(--border-radius-sm);
  border-left: 3px solid var(--aom-gold);
  backdrop-filter: blur(10px);
}

.message-author {
  font-weight: 700;
  color: var(--aom-gold);
  margin-bottom: 6px;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.message-text {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 15px;
}

.message-time {
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 8px;
  opacity: 0.7;
}

.chat-input-container {
  display: flex;
  gap: 12px;
  padding: 20px;
  border-top: 1px solid rgba(197, 165, 114, 0.15);
  background: rgba(5, 23, 41, 0.3);
}

.chat-input {
  flex: 1;
}

/* Modern Pantheon Selection */
.pantheon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 24px 0;
}

.pantheon-card {
  background: rgba(10, 37, 64, 0.5);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(197, 165, 114, 0.15);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pantheon-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(197, 165, 114, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}

.pantheon-card:hover::before {
  width: 200%;
  height: 200%;
}

.pantheon-card:hover {
  border-color: var(--aom-gold);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(197, 165, 114, 0.3);
}

.pantheon-card.selected {
  border-color: var(--aom-gold);
  background: rgba(197, 165, 114, 0.15);
  box-shadow: 0 8px 24px rgba(197, 165, 114, 0.2);
}

.pantheon-icon {
  font-size: 56px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.pantheon-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--aom-gold);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

/* Modern Team Display */
.teams-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.team-card {
  background: rgba(10, 37, 64, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(197, 165, 114, 0.15);
  border-radius: var(--border-radius);
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(197, 165, 114, 0.2);
  border-color: rgba(197, 165, 114, 0.3);
}

.team-title {
  font-size: 26px;
  background: linear-gradient(135deg, var(--aom-gold) 0%, var(--aom-light-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.team-members {
  list-style: none;
}

.team-member {
  padding: 12px 16px;
  background: rgba(5, 23, 41, 0.6);
  border-radius: var(--border-radius-sm);
  margin-bottom: 10px;
  border-left: 3px solid var(--aom-gold);
  font-weight: 500;
  transition: all 0.3s;
}

.team-member:hover {
  background: rgba(5, 23, 41, 0.8);
  transform: translateX(4px);
}

/* Scrollable lists (participants, etc.) */
.scroll-panel {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--aom-gold) rgba(10, 37, 64, 0.3);
}

.scroll-panel::-webkit-scrollbar {
  width: 8px;
}

.scroll-panel::-webkit-scrollbar-track {
  background: rgba(10, 37, 64, 0.3);
  border-radius: 4px;
}

.scroll-panel::-webkit-scrollbar-thumb {
  background: var(--aom-gold);
  border-radius: 4px;
}

.participant-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.participant-item .meta {
  color: var(--text-gray);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  opacity: 0.8;
}

/* Responsive Design - 2026 */
@media (max-width: 1024px) {
  .container {
    padding: 24px 20px;
  }
  
  .hero {
    padding: 60px 24px;
  }
  
  .hero h1 {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 16px;
  }
  
  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero {
    padding: 48px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .card {
    padding: 24px;
  }
  
  .stat-box {
    min-width: 140px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 26px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .card-title {
    font-size: 22px;
  }
  
  .chat-container {
    height: 400px;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 32px;
}

.mb-20 {
  margin-bottom: 32px;
}

.hidden {
  display: none !important;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
  background: var(--aom-gold);
  color: var(--dark-bg);
}

::-moz-selection {
  background: var(--aom-gold);
  color: var(--dark-bg);
}

