:root {
  --primary-50: #f0f9ff;
  --primary-100: #e0f2fe;
  --primary-500: #0ea5e9;
  --primary-600: #0284c7;
  --primary-700: #0369a1;
  --primary-900: #0c4a6e;
  --secondary-50: #f8fafc;
  --secondary-100: #f1f5f9;
  --secondary-500: #64748b;
  --secondary-600: #475569;
  --secondary-700: #334155;
  --secondary-900: #0f172a;
  --accent-50: #fef3c7;
  --accent-500: #f59e0b;
  --accent-600: #d97706;
}

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

body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    'Helvetica Neue',
    Arial,
    sans-serif;
  line-height: 1.6;
  color: var(--secondary-900);
  background: linear-gradient(to bottom, transparent, var(--secondary-50))
    var(--primary-50);
  min-height: 100vh;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

.header-content {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-900);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.header-title:hover {
  color: var(--primary-600);
}
.mr-2 {
  margin-right: 8px;
}
.nav-link {
  font-size: 14px;
  color: var(--secondary-600);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--secondary-900);
}

.header-cta {
  background: var(--primary-600);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s;
}

.header-cta:hover {
  background: var(--primary-700);
}

.main-content {
  flex: 1;
}

.container {
  /* max-width: 448px;
  padding: 60px 16px; */
  /* margin: 0 auto;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center; */
}
.custom-container{
  padding: 60px 16px;
  max-width: 448px;
  margin: 0 auto;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.app-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 20px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.app-title {
  text-align: center;
  color: var(--secondary-900);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.app-subtitle {
  text-align: center;
  color: var(--secondary-600);
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.match-card {
  background: white;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.match-teams {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  color: var(--secondary-900);
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  background: #ef4444;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.score-display {
  text-align: center;
  margin-bottom: 24px;
}

.team-score {
  margin-bottom: 16px;
}

.team-name {
  font-size: 16px;
  color: var(--secondary-600);
  margin-bottom: 8px;
  font-weight: 500;
}

.score {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-600);
}

.overs {
  font-size: 14px;
  color: var(--secondary-500);
}

.features {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.features-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: var(--secondary-900);
}

.features ul, .feature-list {
  list-style: none;
}

.features ul > li, .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--secondary-700);
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-icon {
  margin-right: 12px;
  font-size: 16px;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.btn-primary {
  background: var(--primary-600);
  color: white;
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: var(--primary-700);
  transform: translateY(-1px);
  color: white;
  text-decoration: none;
}

.btn-secondary {
  background: white;
  color: var(--primary-600);
  padding: 14px 24px;
  border: 2px solid var(--primary-600);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: var(--primary-600);
  color: white;
  text-decoration: none;
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.store-badge {
  display: inline-block;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.store-badge:hover {
  opacity: 1;
}

.store-badge img {
  height: 70px;
  width: auto;
}

.disclaimer {
  text-align: center;
  color: var(--secondary-500);
  font-size: 14px;
}

.footer {
  border-top: 1px solid #e5e7eb;
  background: white;
}

.footer-content {
  max-width: 1152px;
  margin: 0 auto;
  padding: 48px 16px;
}

.footer-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copyright {
  font-size: 14px;
  color: var(--secondary-600);
}

.hidden {
  display: none;
}
.d-block {
  display: block;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }

  .footer-text {
    flex-direction: row;
    gap: 0;
  }
}

@media (max-width: 480px) {
  /* .container {
    padding: 60px 16px;
  } */

  .app-title {
    font-size: 28px;
  }

  .match-teams {
    font-size: 22px;
  }

  .score {
    font-size: 32px;
  }
}

/* Privacy Policy and Terms Page Styles */
.main-content-pt {
  flex: 1;
  padding: 80px 0;
  background: white;
}

.container-pt {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
}
.prose {
  max-width: none;
}

h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary-900);
  margin-bottom: 24px;
  line-height: 1.2;
}

.effective-date {
  font-size: 18px;
  color: var(--secondary-600);
  margin-bottom: 32px;
}

h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-900);
  margin: 32px 0 16px 0;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-900);
  margin: 0 0 12px 0;
}

p {
  color: var(--secondary-700);
  margin-bottom: 24px;
  line-height: 1.75;
}

ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 24px;
  color: var(--secondary-700);
}

ul li {
  margin-bottom: 8px;
}

a {
  color: var(--primary-600);
  text-decoration: none;
}

a:hover {
  color: var(--primary-700);
  text-decoration: underline;
}

.contact-box {
  background: var(--secondary-50);
  padding: 24px;
  border-radius: 8px;
  margin: 32px 0;
}

.contact-box p {
  margin-bottom: 8px;
}

.contact-box p:last-child {
  margin-bottom: 0;
}

.divider {
  margin: 32px 0;
  border: none;
  border-top: 1px solid #e5e7eb;
}

.last-updated {
  font-size: 14px;
  color: var(--secondary-500);
  font-style: italic;
  margin-bottom: 0;
}

.footer {
  border-top: 1px solid #e5e7eb;
  background: white;
}

.footer-content {
  max-width: 1152px;
  margin: 0 auto;
  padding: 48px 16px;
}

.footer-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copyright {
  font-size: 14px;
  color: var(--secondary-600);
}

.mr-2 {
  margin-right: 0.5rem;
}

.inline-block {
  display: inline-block;
}

@media (min-width: 768px) {
  h1 {
    font-size: 48px;
  }
}
