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

body {
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, #000, #2b0000, #8b0000);
  padding: 2px;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(255,0,0,0.4);
}

.logo img {
  height: 65px;
}

/* MENU BUTTON */
.menu-btn {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1100;
  background: linear-gradient(45deg, #ff0000, #8b0000);
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 0 10px #ff0000;
  transition: 0.3s;
}

.menu-btn:hover {
  transform: scale(1.1);
}

/* SIDEBAR */
.sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #020202;
  padding-top: 20px;
  transition: 0.3s;
  z-index: 1200;
}

.sidebar a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
}

.sidebar a:hover {
  background: #ff0000;
}

.close-btn {
  font-size: 26px;
  margin-left: 15px;
  cursor: pointer;
}

/* OVERLAY */
#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  z-index: 1000;
}

/* HERO */
.hero {
  position: relative;
  height: 340px;
  background: url('IMG_0530.WEBP') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #000, transparent);
}

.hero-content {
  position: relative;
  text-align: center;
}


.hero-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}



.hero-tagline {
  margin: 8px 0;
  color: #ddd;
}

.hero-bonus {
  color: #ffd700;
  margin-bottom: 12px;
}

.hero-btn {
  background: linear-gradient(45deg, #ff0000, #8b0000);
  padding: 12px 25px;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px #ff0000;
  transition: 0.3s;
}

.hero-btn:hover {
  transform: scale(1.05);
}
.offer-timer {
  text-align: center;
  color: #ff4d4d;
  font-weight: bold;
  margin: 10px;
}

.install-counter {
  text-align: center;
  font-size: 14px;
  color: #00ff99;
}

/* RATING */
.rating-box {
  text-align: center;
  margin: 12px;
  color: #ffd700;
  font-size: 14px;
}

/* SECTIONS */
.info-section {
  padding: 18px;
}

.info-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.info-text {
  color: #bbb;
  font-size: 14px;
  margin-bottom: 10px;
}

.highlight {
  color: #ff0000;
  font-weight: bold;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.feature-box {
  background: #111;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
}

/* TABLE */
.app-table {
  background: #111;
  border-radius: 12px;
  margin: 15px 0;
  overflow: hidden;
}

.row {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  border-bottom: 1px solid #222;
}

/* BUTTON */
.download-btn {
  display: block;
  text-align: center;
  margin: 15px;
  background: linear-gradient(45deg, #ff0000, #8b0000);
  padding: 14px;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
}

/* INSTALL GUIDE BOX */
.install-guide {
  text-align: center;
  margin: 20px;
  padding: 20px;

  background: linear-gradient(135deg, #000, #1a0000);
  border-radius: 15px;

  box-shadow: 0 0 15px rgba(255,0,0,0.3);
}

/* HEADING */
.install-guide h3 {
  color: #ffd700;
  margin-bottom: 15px;
  font-size: 18px;
}

/* STEPS */
.steps p {
  background: #111;
  margin: 8px 0;
  padding: 10px;
  border-radius: 10px;
  font-size: 14px;
}
.install-guide {
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SLIDER */
.slider {
  display: flex;
  overflow-x: auto;
  gap: 2px;
  padding: 10px;
}

.slider img {
  height: 200px;
  border-radius: 10px;
}

/* POPUP */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
}

.popup-box {
  background: #111;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}

.popup-btn {
  background: red;
  padding: 10px;
  display: inline-block;
  margin-top: 10px;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
}

.close-popup {
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
}

/* LIVE POPUP */
.live-popup {
  position: fixed;
  bottom: 80px;
  left: 10px;
  background: background: linear-gradient(45deg, #ff0000, #ff6a00);
color: white ;
  padding: 10px;
  border-radius: 8px;
  display: none;
}

/* STICKY */
.sticky-download {
  position: fixed;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: linear-gradient(45deg, #ff0000, #8b0000);
  padding: 14px;
  text-align: center;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
}

/* CONTACT POPUP */
.contact-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.contact-box {
  background: #fff;
  padding: 20px;
  width: 90%;
  max-width: 350px;
  border-radius: 10px;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
}

.contact-box button {
  width: 100%;
  background: green;
  color: white;
  padding: 10px;
  border: none;
}

/* POPUP ANIMATION */
.popup-box {
  animation: zoomIn 0.5s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* LIVE POPUP */
.live-popup {
  position: fixed;
  bottom: 80px;
  left: 10px;
  background: #00c853;
  color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  display: none;
}
/* FOOTER MAIN */
.footer {
  background: linear-gradient(135deg, #000, #1a0000);
  padding: 30px 15px;
  color: #ccc;
}

/* CONTAINER */
.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* BOX */
.footer-box h3 {
  color: #ffd700;
  margin-bottom: 10px;
}

.footer-box p {
  font-size: 13px;
  line-height: 1.5;
}

/* LOGO */
/* LOGO BASE */
.footer-logo {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
}

/* MAIN TEXT (WHITE) */
.logo-main {
  color: #ffffff;
}

/* ACCENT TEXT (GOLD) */
.logo-accent {
  color: #ffd700;
  margin-left: 3px;
}

/* GLOW EFFECT */
.footer-logo {
  text-shadow:
    0 0 5px rgba(255,255,255,0.4),
    0 0 10px rgba(255,215,0,0.5);
}
.footer-logo {
  animation: glowLogo 2s infinite alternate;
}

@keyframes glowLogo {
  from {
    text-shadow: 0 0 5px #fff;
  }
  to {
    text-shadow: 0 0 15px #ffd700;
  }
}

/* LINKS */
.footer-box a {
  display: block;
  text-decoration: none;
  color: #bbb;
  margin: 5px 0;
  font-size: 13px;
  transition: 0.3s;
}

.footer-box a:hover {
  color: #ff0000;
  padding-left: 5px;
}

/* DIVIDER */
.footer-divider {
  height: 1px;
  background: #222;
  margin: 20px 0;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  font-size: 12px;
}

.footer-disclaimer {
  margin-top: 8px;
  color: #777;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
  }

/* ================= GLOBAL FIX ================= */

body {
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 10px;
}

/* ================= HERO ================= */

.hero-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.hero-btn {
  display: inline-block;
  padding: 12px 20px;
  background: linear-gradient(45deg, #00c853, #00e676);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 10px;
}

/* ================= FEATURES ================= */

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature-box {
  background: #111;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}

/* ================= CONTACT POPUP ================= */

.contact-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.contact-box {
  background: #fff;
  padding: 20px;
  width: 90%;
  max-width: 350px;
  border-radius: 10px;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  margin: 8px 0;
  padding: 10px;
  border: 1px solid #ccc;
}

.contact-box button {
  width: 100%;
  background: #00c853;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

/* ================= BONUS POPUP ================= */

.popup-box {
  background: linear-gradient(45deg, #00c853, #00e676);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  animation: zoomIn 0.4s ease;
  box-shadow: 0 0 15px rgba(0,255,100,0.6);
}

@keyframes zoomIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ================= LIVE WIN POPUP ================= */

.live-popup {
  position: fixed;
  bottom: 80px;
  left: 10px;
  background: #000;
  color: #00ff99;
  padding: 10px;
  border-radius: 5px;
  display: none;
  font-size: 12px;
}

/* ================= TIMER ================= */

.offer-timer {
  text-align: center;
  font-weight: bold;
  margin: 10px;
}

/* ================= FOOTER ================= */

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

/* ================= TABLET ================= */

@media (min-width: 768px) {

  .hero-title {
    font-size: 42px;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= LAPTOP ================= */

@media (min-width: 1024px) {

  .hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-content {
    max-width: 600px;
    margin: auto;
  }

  .features {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(4, 1fr);
  }
}