:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #2ecc71;
  --text-color: #333;
  --bg-color: #ecf0f1;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background-color: var(--white);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*max-width: 2000px;*/
  margin: 0 auto;
  padding: 0 2rem;
}

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

.logo-image {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

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

.intro {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('images/streaming-background.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding-top: 80px;
}

.overlay {
  background: rgba(0, 0, 0, 0.7);
  padding: 3rem;
  border-radius: 15px;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.intro h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.intro .tagline {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.key-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 0.8rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.feature span {
  font-size: 1.1rem;
  font-weight: 500;
}

.cta-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.btn {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  /*background-color: var(--secondary-color);*/
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--white);
}

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

@media (max-width: 768px) {
  .intro h1 {
    font-size: 2.5rem;
  }

  .intro .tagline {
    font-size: 1.1rem;
  }

  .key-features {
    flex-direction: column;
    gap: 2rem;
  }

  .cta-container {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 250px;
  }
}

.how-it-works,
.features {
  padding: 5rem 2rem;
  text-align: center;
  background-color: var(--white);
}

.how-it-works h2,
.features h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.steps {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  flex-basis: 30%;
  padding: 2rem;
  background-color: var(--bg-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  padding: 2rem;
  background-color: var(--bg-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

footer {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: .75rem 0;
  margin-top: auto;
  position: relative; /* Ensure relative positioning for absolute positioning inside */
  bottom: -20; /* Position the footer at the bottom of its container (body) */
}

.social-media {
  margin-bottom: 1rem;
}

.social-media a {
  margin: 0 15px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.social-media a:hover {
  opacity: 1;
}

.social-media img {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .steps,
  .feature-grid {
    flex-direction: column;
  }

  .step,
  .feature-item {
    margin-bottom: 2rem;
  }
}

.key-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 0.5rem;
}

.feature span {
  font-size: 1rem;
  font-weight: 500;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.feature-item {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item .icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.feature-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.feature-item p {
  font-size: 0.9rem;
}

.free-forever {
  margin-top: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent-color);
}

footer p {
  font-size: 0.9rem;
}

