:root {
  --bg-primary: #121212;
  --bg-elevated: #1e1e1e;
  --bg-hover: #2a2a2a;
  
  --gold-primary: #C1A35F;
  --gold-hover: #d4b56a;
  --gold-muted: rgba(193, 163, 95, 0.15);
  
  --text-main: #f5f5f5;
  --text-muted: #a0a0a0;
  
  --border-color: #333333;
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* Ambient glow effects matching the premium styling */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(193, 163, 95, 0.08); /* Muted gold */
  top: -100px;
  left: -100px;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(193, 163, 95, 0.05);
  bottom: -150px;
  right: -100px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
  flex: 1;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-center {
  text-align: center;
}

.header {
  margin-bottom: 4rem;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.5px;
}

.separator {
  width: 60px;
  height: 2px;
  background-color: var(--gold-primary);
  margin: 1.5rem auto 0;
  opacity: 0.6;
}

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

/* Glassmorphism Application Cards */
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover:not(.empty) {
  background: var(--bg-hover);
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-icon {
  font-size: 2rem;
  background: var(--gold-muted);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.card-content {
  flex: 1;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.card:hover:not(.empty) .card-title {
  color: var(--gold-primary);
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.card-arrow {
  color: var(--gold-primary);
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.card:hover:not(.empty) .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.card.empty {
  opacity: 0.5;
  pointer-events: none;
  border-style: dashed;
}

.card.empty .card-icon {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.footer {
  padding: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .logo-title {
    font-size: 2.5rem;
  }
  .container {
    padding: 3rem 1.5rem;
  }
}
