/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: "Segoe UI", sans-serif;
  background: #FAFAFA;
  color: #000000;
  line-height: 1.6;
}


/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Header */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #D9D9D9;
  padding: 1rem 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
}

.nav-links a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #000000;
  font-weight: 500;
}

.nav-links a:hover {
  color: #01FFFF;
}

/* Hero */
.hero {
  background-color: #000000;
  color: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: #40DFD1;
  color: #000000;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #01FFFF;
  color: #000000;
}

/* Iframe */
.iframe-wrapper {
  padding: 2rem 1rem;
}

#iframe {
  border: none;
  width: 100%;
  min-height: 90vh;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

/* Footer */
.site-footer {
  background-color: #ffffff;
  border-top: 1px solid #D9D9D9;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.875rem;
  color: #777;
}

.cta-button-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.scoreapp-btn {
  display: inline-block;
  background-color: #50e3ce;
  color: #323A3F;
  padding: 0.75rem 2rem;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Average Sans', sans-serif;
  border-radius: 21px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
  transition: background-color 0.2s ease;
}

.scoreapp-btn:hover {
  background-color: #40DFD1;
}


/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
  }
}
