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

:root {
  --primary-color: #d45d5d;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --text-light: #ffffff;
  --bg-color: #ffffff;
  --bg-light: #f8f9fa;
  --border-color: #dee2e6;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
  font-family: var(--font-family);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  color: var(--text-primary);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.main-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  max-width: 1400px;
  width: 100%;
  align-items: start;
}

/* Logo Section */
.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
  padding: 2rem;
  position: sticky;
  top: 2rem;
}

.app-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-icon {
  width: 240px;
  height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.bgg-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.bgg-label {
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 1rem;
}

.bgg-logo {
  height: 60px;
  object-fit: contain;
}

/* Content Section */
.content-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 2rem 2rem 0;
  max-width: 700px;
}

.brand-name {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}

.tagline {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

.description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* Features Section */
.features-section {
  margin: 0.5rem 0;
  padding: 1.5rem 0;
}

.features-heading {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-item {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 2rem;
  position: relative;
}

.feature-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.25rem;
  top: 0;
}

/* Value Proposition */
.value-prop {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0.5rem 0;
  font-style: italic;
  padding: 1.25rem;
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
}

/* Badges Container */
.badges-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0;
}

.coming-soon-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badges-row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.badge-link {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
  cursor: default;
}

.badge-link:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.app-badge {
  height: 50px;
  width: auto;
  object-fit: contain;
  max-width: 180px;
}

/* Contact Button */
.contact-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  transition: all 0.2s ease;
  background-color: transparent;
  text-align: center;
  margin-top: 0.5rem;
}

.contact-button:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Legal Links Footer */
.legal-links-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.legal-links-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.legal-links-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.legal-links-nav a:hover {
  color: var(--primary-color);
}

.legal-links-separator {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* Responsive Design */
@media (max-width: 968px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 600px;
  }

  .logo-section {
    order: 1;
  }

  .content-section {
    order: 2;
  }

  .brand-name {
    font-size: 3.5rem;
    text-align: center;
  }

  .tagline {
    text-align: center;
  }

  .description {
    text-align: center;
  }

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

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

  .badges-container {
    align-items: center;
  }

  .coming-soon-label {
    text-align: center;
  }

  .badges-row {
    justify-content: center;
  }

  .contact-button {
    width: 100%;
  }

  .legal-links-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
}

@media (max-width: 640px) {
  .main-container {
    padding: 1rem;
  }

  .content-wrapper {
    gap: 2rem;
  }

  .app-icon {
    width: 180px;
    height: 180px;
  }

  .brand-name {
    font-size: 2.75rem;
  }

  .tagline {
    font-size: 1.5rem;
  }

  .description {
    font-size: 1rem;
  }

  .features-heading {
    font-size: 1.25rem;
  }

  .feature-item {
    font-size: 1rem;
  }

  .value-prop {
    font-size: 1rem;
    padding: 1rem;
  }

  .app-badge {
    height: 50px;
  }

  .bgg-logo {
    height: 50px;
  }

  .bgg-label {
    font-size: 0.9375rem;
  }
}
