.homepage-container {
  position: relative;
  min-height: 100vh;
  padding: 40px 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */

.hero-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px;
  background: rgba(15, 23, 42, 0.75);
  border-radius: 16px;
  border: 1px solid rgba(56, 189, 248, 0.4);
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.25);
  backdrop-filter: blur(10px);
}

.homepage-title {
  font-size: 28px;
  letter-spacing: 1.5px;
  margin: 0 0 8px;
}

.homepage-subtitle {
  margin: 0;
  opacity: 0.8;
  font-size: 14px;
}

.hero-actions {
  margin-top: 18px;
}

.primary-btn {
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.9);
  background: radial-gradient(circle, rgba(56,189,248,0.7), rgba(15,23,42,1));
  color: #e0faff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.6);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.8);
}

/* EMPIRE TILE GRID */

.tile-section {
  margin-top: 40px;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.tile {
  padding: 20px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(56,189,248,0.35);
  box-shadow: 0 0 20px rgba(8, 47, 73, 0.7);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.tile h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.tile p {
  margin: 0 0 10px;
  font-size: 14px;
  opacity: 0.82;
}

.tile-link {
  font-size: 13px;
  color: #7dd3fc;
}

/* Tile hover */

.tile:hover {
  transform: translateY(-3px);
  border-color: rgba(56,189,248,0.9);
  box-shadow:
    0 0 24px rgba(56,189,248,0.7),
    0 0 40px rgba(15,23,42,0.9);
}

/* Colour accents */

.gmcp-tile {
  border-color: rgba(56,189,248,0.6);
}

.faith-tile {
  border-color: rgba(251,191,36,0.7);
  box-shadow: 0 0 18px rgba(251,191,36,0.5);
}

.titan-tile {
  border-color: rgba(239,68,68,0.7);
  box-shadow: 0 0 18px rgba(239,68,68,0.5);
}

.sentinel-tile {
  border-color: rgba(168,85,247,0.8);
  box-shadow: 0 0 22px rgba(168,85,247,0.7);
}

/* PRODUCT SECTION */

.product-section {
  margin-top: 50px;
  padding: 24px 18px 28px;
  background: rgba(15, 23, 42, 0.78);
  border-radius: 16px;
  border: 1px solid rgba(56,189,248,0.3);
  backdrop-filter: blur(12px);
}

.section-title {
  margin: 0 0 6px;
  font-size: 20px;
}

.section-blurb {
  margin: 0 0 18px;
  font-size: 14px;
  opacity: 0.8;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.product-card {
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(56,189,248,0.25);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.product-card p {
  margin: 0 0 8px;
  font-size: 13px;
  opacity: 0.85;
}

.product-link {
  font-size: 12px;
  color: #7dd3fc;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56,189,248,0.9);
  box-shadow: 0 0 20px rgba(56,189,248,0.7);
}

/* FOOTER */

.site-footer {
  margin-top: 32px;
  text-align: center;
  font-size: 12px;
  opacity: 0.7;
}
