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

body {
    font-family: 'SF Pro', sans-serif;
    background-color: white;
    overflow-x: hidden;
    width: 100%;
}

.main-container {
    background-color: white;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Hero Section */
#hero {
    display: flex;
    align-items: center;
}

.hero-image {
    flex: 1;
    display: flex;
    background-image: url(snappyscoredboard-action.png);
    background-size:cover;
    background-position: center;
}
.hero-image .fake{
  height: 800px;
}

.hero-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

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

.download-button{
  background: linear-gradient(to right bottom, rgb(148, 242, 127), rgb(121, 214, 94));
  padding: 10px 30px;
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
  border-radius: 50px;
  font-weight:700;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.download-button:hover{
  transform: scale(1.05);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

.download-button span{
  display: inline-block;
  padding-left: 10px;
}

.fancy-background{
  background: radial-gradient(at 53% 78%, rgba(255, 255, 0, 0.25) 0px, transparent 40%), radial-gradient(at 71% 91%, rgba(51, 255, 0, 0.16) 0px, transparent 20%), radial-gradient(at 31% 91%, rgba(255, 128, 0, 0.15) 0px, transparent 30%);
}

#features .download-button {
  margin: 50px auto;
  display: block;
  max-width: 300px;
}

#features{
  margin: 120px 0 120px;
}
  
#features h3{
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-top: 28px;
  letter-spacing: 3px;
  color: rgba(0, 0, 0, 0.70)
}

#features .list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem 10rem;
  width: 65%;
  margin: 50px auto 100px;
  font-size: 28px;
  font-weight: 300;
}

.feature{
  display:flex;
  align-items: center;
  gap: 1rem;
}

.feature .icon{
  font-size: 48px;
  line-height: 1;
  margin-right: 30px;
}

.main-heading {
    font-weight: 900;
    line-height: 1.1;
    color: #3d3d3d;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: rgba(0, 0, 0, 0.1) 0px 2px 1.4px;
}

.scoreboard-text {
    color: #79d65e;
}

.app-name {
    font-weight: 600;
    line-height: 1.2;
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.8);
}


footer {
  margin: 0 auto;
  padding: 100px 0;
  max-width: 65%;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 40px;
}

footer .email {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  font-size: 18px;
}

footer .email a {
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
}

footer:focus .email a {
  text-decoration: underline;
}

footer .tm {
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  margin-top: 80px;
}

hr{
  border: none;
  border-top: dotted 4px rgba(0, 0, 0, 0.3);
  max-width: 65%;
  margin: 0 auto;
}

#privacy-policy {
  max-width: 65%;
  margin: 0 auto;
  padding: 40px 20px;
}

#privacy-policy h1,h2,h3{
  font-weight: 600;
  margin: 2rem 0;
}
#privacy-policy li, p{
  margin:  0 0 1.2rem;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    #hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        order: -1;
    }
    
    .main-heading {
        font-size: 2rem;
    }
}