*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
body{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(160deg, rgba(8, 10, 22, 0.82) 0%, rgba(10, 14, 26, 0.85) 55%, rgba(6, 8, 18, 0.9) 100%), url("../assets/images/novatv-tv.png") center/cover no-repeat;
  padding: 20px;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 9, 20, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}

.download-container{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 600px;
  width: 100%;
  z-index: 2;
}
.download-btn{
  position: relative;
  background: #6D48E5;
  color: #fff;
  width: 100%;
  max-width: 260px;
  padding: 18px 20px;
  text-align: center;
  font-size: 1.3em;
  font-weight: 400;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
  transition:  background 0.3s ease;
  display: inline-block;
}
.download-btn:hover{
  background: #2B0A93;
}
.download-btn:focus{
  outline: none;
  background: #6340d8;
  box-shadow: 0 10px 32px rgba(40, 16, 140, 0.35);
}
.download-btn:focus-visible{
  box-shadow: 0 10px 32px rgba(40, 16, 140, 0.35), 0 0 0 3px rgba(255, 255, 255, 0.4);
}
.download-btn i{
  margin-left: 5px;
}
.countdown{
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 20px;
  color: rgba(240, 242, 255, 0.8);
}
.countdown span{
  color: #66d9ff;
  font-size: 1.5em;
  font-weight: 800;
}

.pleaseWait-text{
  font-size: 1.1em;
  font-weight: 600;
  display: none;
  color: rgba(240, 242, 255, 0.8);
}
.manualDownload-text{
  font-size: 1.1em;
  font-weight: 600;
  display: none;
  color: rgba(240, 242, 255, 0.8);
}
.manualDownload-link{
  color: #0693F6;
  font-weight: 600;
  text-decoration: none;
}

h1.heading {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: 'Montserrat', sans-serif;
}

h3.subheading {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.4;
  font-family: 'Montserrat', sans-serif;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  body {
    padding: 15px;
  }

  .download-container {
    padding: 0 15px;
  }

  h1.heading {
    font-size: 2em;
    margin-bottom: 8px;
  }

  h3.subheading {
    font-size: 1.2em;
    margin-bottom: 25px;
  }

  .download-btn {
    font-size: 1.1em;
    padding: 16px 15px;
  }

  .countdown {
    font-size: 1em;
    margin-bottom: 15px;
  }

  .countdown span {
    font-size: 1.2em;
  }

  .pleaseWait-text {
    font-size: 1em;
  }

  .manualDownload-text {
    font-size: 1em;
  }
}

@media (max-width: 576px) {
  body {
    padding: 12px;
  }

  .download-container {
    padding: 0 12px;
  }

  h1.heading {
    font-size: 1.5em;
    margin-bottom: 8px;
  }

  h3.subheading {
    font-size: 0.95em;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .download-btn {
    max-width: 220px;
    font-size: 1em;
    padding: 14px 15px;
  }

  .countdown {
    font-size: 0.95em;
    margin-bottom: 12px;
  }

  .countdown span {
    font-size: 1.1em;
  }

  .pleaseWait-text {
    font-size: 0.95em;
  }

  .manualDownload-text {
    font-size: 0.95em;
  }
}

@media (max-width: 375px) {
  h1.heading {
    font-size: 1.3em;
    margin-bottom: 6px;
  }

  h3.subheading {
    font-size: 0.85em;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .download-btn {
    max-width: 180px;
    font-size: 0.95em;
    padding: 12px 12px;
  }

  .countdown {
    font-size: 0.9em;
  }

  .countdown span {
    font-size: 1em;
  }
}
