@import url('https://fonts.googleapis.com/css?family=Google+Sans:400,500,700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #111;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============ HEADER ============ */
.site-header {
  background: #ffffff;
  padding: 15px 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 3px solid #000;
}

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

.logo-container {
  flex: 1;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  width: auto;
  max-width: 150px;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 0;
  margin: 0;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu ul li a:hover {
  color: #ff9900;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background-color: #333;
  transition: all 0.3s;
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #ffcc00, #ff9900);
  color: #fff;
  padding: 45px 20px;
  overflow: hidden;
}

.background-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  background-color: #a66503;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1 1 500px;
  min-width: 300px;
}

.hero-left h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.version {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #f0f0f0;
  font-weight: 500;
}

.btn-download {
  display: inline-block;
  background: #ffcc00;
  color: #111;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

.btn-download:hover {
  background: #ff9900;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.apk-specs {
  display: flex;
  gap: 25px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.spec-item {
  font-size: 0.95rem;
  color: #f0f0f0;
}

.spec-item strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.hero-right {
  flex: 1 1 400px;
  text-align: center;
}

.hero-right img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
}

/* ============ APK INFO SECTION ============ */
.apk-info {
  padding: 50px 20px;
  background: #ffffff;
}

.apk-info h2 {
  text-align: center;
  font-size: 2rem;
  color: #ffcc00;
  margin-bottom: 35px;
}

.info-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #fff;
}

.info-table thead th {
  background: #f3f4f6;
  font-weight: 700;
  text-align: left;
  padding: 14px;
  border: 1px solid #e5e7eb;
}

.info-table tbody td {
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  color: #444;
}

.info-table tbody tr:nth-child(odd) {
  background: #fafafa;
}

/* ============ DOWNLOAD SECTION ============ */
.download-section {
  padding: 50px 20px;
  background: #fff;
}

.download-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #ffcc00;
  margin-bottom: 20px;
}

.download-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 35px;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

.download-box {
  max-width: 900px;
  margin: 30px auto;
  padding: 25px;
  background: #f9f9f9;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
}

.download-box h3 {
  font-size: 1.3rem;
  color: #ff9900;
  margin-bottom: 15px;
}

.download-box p {
  color: #555;
  margin-bottom: 12px;
  line-height: 1.7;
}

.btn-primary {
  display: block;
  width: fit-content;
  margin: 25px auto 0;
  background: #ffcc00;
  color: #111;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #ff9900;
  color: #fff;
}

/* ============ OVERVIEW SECTION ============ */
.overview {
  padding: 50px 20px;
  background: #f9f9f9;
}

.overview h2 {
  text-align: center;
  font-size: 2rem;
  color: #ffcc00;
  margin-bottom: 20px;
}

.overview > .container > p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 35px;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

.overview-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.overview-text {
  flex: 1 1 500px;
  min-width: 300px;
}

.overview-text h3 {
  font-size: 1.2rem;
  color: #ff9900;
  margin: 20px 0 12px;
  font-weight: 600;
}

.overview-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.overview-image {
  flex: 1 1 400px;
  text-align: center;
}

.overview-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ============ INSTALL SECTION ============ */
.install {
  padding: 50px 20px;
  background: #fff;
}

.install h2 {
  text-align: center;
  font-size: 2rem;
  color: #ffcc00;
  margin-bottom: 35px;
}

.install-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto 35px;
}

.step {
  padding: 20px;
  background: #f9f9f9;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #ffcc00;
  color: #111;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 1.1rem;
  color: #ff9900;
  margin-bottom: 10px;
}

.step p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.note {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px 20px;
  background: #fff5e6;
  border-left: 6px solid #f0b429;
  border-radius: 4px;
  color: #5c4b2a;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============ CONTENT SECTION ============ */
.content {
  padding: 50px 20px;
  background: #f9f9f9;
}

.content h2 {
  text-align: center;
  font-size: 2rem;
  color: #ffcc00;
  margin-bottom: 20px;
}

.content > .container > p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 35px;
  color: #555;
  line-height: 1.7;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.content-box {
  padding: 25px;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}

.content-box.full-width {
  grid-column: 1 / -1;
}

.content-box h3 {
  font-size: 1.2rem;
  color: #ff9900;
  margin-bottom: 12px;
}

.content-box p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

.live-tv-image {
  margin-top: 20px;
  text-align: center;
}

.live-tv-image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* ============ DEVICES SECTION ============ */
.devices {
  padding: 50px 20px;
  background: #fff;
}

.devices h2 {
  text-align: center;
  font-size: 2rem;
  color: #ffcc00;
  margin-bottom: 35px;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.device-box {
  padding: 25px;
  background: #f9f9f9;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}

.device-box h3 {
  font-size: 1.1rem;
  color: #ff9900;
  margin-bottom: 12px;
}

.device-box p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============ SAFETY SECTION ============ */
.safety {
  padding: 50px 20px;
  background: #f9f9f9;
}

.safety h2 {
  text-align: center;
  font-size: 2rem;
  color: #ffcc00;
  margin-bottom: 20px;
}

.safety > .container > p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 35px;
  color: #555;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.safety-box {
  padding: 25px;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}

.safety-box h3 {
  font-size: 1.1rem;
  color: #ff9900;
  margin-bottom: 12px;
}

.safety-box p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ============ FIXES SECTION ============ */
.fixes {
  padding: 50px 20px;
  background: #fff;
}

.fixes h2 {
  text-align: center;
  font-size: 2rem;
  color: #ffcc00;
  margin-bottom: 20px;
}

.fixes > .container > p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #555;
}

/* ============ ALTERNATIVES SECTION ============ */
.alternatives {
  padding: 50px 20px;
  background: #f9f9f9;
}

.alternatives h2 {
  text-align: center;
  font-size: 2rem;
  color: #ffcc00;
  margin-bottom: 20px;
}

.alternatives p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* ============ FAQ SECTION ============ */
.faq {
  padding: 50px 20px;
  background: #fff;
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  color: #ffcc00;
  margin-bottom: 35px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #f9f9f9;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  background: #f9f9f9;
  transition: background 0.3s ease;
  font-weight: 600;
  color: #333;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-icon {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff9900;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #fff;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 15px 20px;
}

.faq-answer p {
  color: #555;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

/* ============ FOOTER ============ */
.footer {
  padding: 40px 20px;
  background: #111;
  color: #ccc;
  text-align: center;
}

.footer h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer p {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 10px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .nav-menu ul li {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
  }

  .nav-menu ul li a {
    display: block;
  }

  .hero {
    padding: 30px 15px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .hero-left {
    flex: 1 1 100%;
  }

  .hero-left h1 {
    font-size: 1.8rem;
  }

  .hero-right {
    flex: 1 1 100%;
  }

  .hero-right img {
    max-height: 300px;
  }

  .apk-specs {
    justify-content: center;
  }

  .overview-content {
    flex-direction: column;
  }

  .overview-text,
  .overview-image {
    flex: 1 1 100%;
  }

  .install-steps {
    grid-template-columns: 1fr;
  }

  section h2 {
    font-size: 1.6rem !important;
  }

  .btn-download,
  .btn-primary {
    width: 100%;
    text-align: center;
  }

  table {
    font-size: 0.9rem;
  }

  table th,
  table td {
    padding: 8px 10px !important;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.4rem;
  }

  .nav-menu ul {
    padding: 0;
  }

  .nav-menu ul li {
    padding: 10px 15px;
  }

  .hero-left h1 {
    font-size: 1.4rem;
  }

  .hero-left {
    min-width: 100%;
  }

  .version {
    font-size: 0.95rem;
  }

  .apk-specs {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }

  section h2 {
    font-size: 1.4rem !important;
  }

  section h3 {
    font-size: 1rem !important;
  }

  section p {
    font-size: 0.9rem !important;
  }

  .install-steps {
    gap: 15px;
  }

  .step {
    padding: 15px;
  }

  .device-grid,
  .safety-grid,
  .content-grid {
    gap: 15px;
  }

  .info-table thead th,
  .info-table tbody td {
    padding: 8px 10px !important;
    font-size: 0.85rem;
  }

  .note {
    padding: 12px 14px;
    font-size: 0.9rem;
  }
}
