* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background-color: #ffffff;
  color: #222222;
  text-align: center;
}

/* Header */
.navbar {
  background-color: #6a1b9a;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
}

.logo-box {
  background-color: #2e7d32;
  border: 2px solid #ffd700;
  border-radius: 6px;
  font-size: 0.65rem;
  padding: 3px 6px;
  line-height: 1.1;
  text-align: center;
}

.menu-dots {
  font-size: 1.2rem;
  cursor: pointer;
}

/* Secondary Navigation Links */
.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 8px;
  font-size: 0.78rem;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.nav-links a {
  text-decoration: none;
  color: #4a148c;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Container */
.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 24px 16px;
}

/* App Logo */
.app-icon {
  width: 140px;
  height: 140px;
  border-radius: 28px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Titles & Text */
.app-title {
  font-size: 2rem;
  font-weight: 900;
  margin-top: 16px;
  color: #000;
}

.app-title span {
  color: #6a1b9a;
}

.tagline {
  font-size: 1.05rem;
  font-weight: 500;
  margin-top: 10px;
  color: #444;
}

.sub-tagline {
  font-size: 0.95rem;
  color: #555;
  margin-top: 4px;
}

/* Action Buttons */
.btn-group {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: block;
  padding: 13px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.btn-primary {
  background-color: #6a1b9a;
  color: #ffffff;
}

.btn-outline {
  border: 1.5px solid #6a1b9a;
  color: #6a1b9a;
  background-color: #ffffff;
}

.btn:active {
  opacity: 0.85;
}

/* Stats Bar */
.stats-bar {
  background-color: #0f1016;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 12px 8px;
  border-radius: 12px;
  margin: 20px 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  text-align: left;
}

.stat-item i {
  color: #ba68c8;
  font-size: 1.1rem;
}

.stat-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
}

.stat-text span {
  display: block;
  font-size: 0.65rem;
  color: #aaa;
}

.stat-divider {
  width: 1px;
  height: 24px;
  background-color: #333;
}

/* Bottom Description */
.description-box {
  text-align: left;
  margin-top: 24px;
}

.description-box h2 {
  font-size: 0.95rem;
  color: #000;
  margin-bottom: 8px;
}

.description-box p {
  font-size: 0.82rem;
  line-height: 1.45;
  color: #444;
}