:root {
  /* Logo Brand Colors */
  --sky-blue: #5EB8EF;
  --deep-purple: #3C2B8A;
  --cart-purple: #7A68C9;
  --goose-white: #FFF7EF;
  --beak-yellow: #FDBA2C;
  --accent-pink: #F07ABF;
  --midnight: #0C1029;
  --soft-lavender: #D9D7F7;
}

/* Base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--goose-white);
  background: var(--midnight);
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  background: linear-gradient(180deg, #6FC7F5, var(--sky-blue));
  color: var(--goose-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 56px;
  width: auto;
  border-radius: 16px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.35);
}

.logo-text h1 {
  font-size: 1.25rem;
  margin: 0;
}

.tagline {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.95;
}

/* Navigation */
.main-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
}

.main-nav a {
  color: var(--goose-white);
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: background 0.15s ease, transform 0.1s ease, border-color 0.15s ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--deep-purple);
  transform: translateY(-1px);
}

/* Sections */
.section {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, var(--sky-blue), #7DD5FF);
  color: var(--goose-white);
}

.section-alt {
  padding: 3.5rem 0;
  background: var(--soft-lavender);
  color: var(--midnight);
}

.section h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.9rem;
}

.section p {
  line-height: 1.6;
  max-width: 700px;
}

/* Hero */
.section-hero {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-text h2 {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 0.5rem;
}

.small-note {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.1s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.primary-btn {
  background: var(--beak-yellow);
  color: var(--deep-purple);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.35);
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.35);
}

.secondary-btn {
  background: transparent;
  border: 2px solid var(--goose-white);
  color: var(--goose-white);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Disabled-style buttons */
.disabled-btn {
  background: rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
  cursor: not-allowed;
  border: 2px solid rgba(15, 23, 42, 0.25);
}

/* Lists */
.section ul {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.section li {
  margin-bottom: 0.3rem;
}

/* Info grid (first game details) */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.info-card {
  background: var(--goose-white);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  border: 2px solid var(--deep-purple);
  color: var(--midnight);
}

/* Link / CTA area */
.link-section {
  margin-top: 2rem;
}

.coming-soon-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.75rem 0 0.25rem;
}

/* Socials grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--goose-white);
  border-radius: 14px;
  padding: 1rem;
  text-decoration: none;
  color: var(--midnight);
  border: 2px solid var(--deep-purple);
  transition: transform 0.1s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.social-card h3 {
  margin: 0 0 0.35rem;
}

.social-card p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.social-handle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-purple);
}

.social-card:hover,
.btn:hover {
  box-shadow: 0 0 0 3px var(--deep-purple),
              0 6px 16px rgba(0, 0, 0, 0.18);
}

.coming-soon {
  background: #EEEAFB;
  border-color: var(--cart-purple);
}

/* Footer */
.site-footer {
  background: #020617;
  color: #9ca3af;
  padding: 1.25rem 0;
  font-size: 0.85rem;
}

.footer-content {
  text-align: center;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-text h2 {
    font-size: 1.7rem;
  }
}
