/* base */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Oxanium', sans-serif;
  background: linear-gradient(135deg, #004364 0%, #002d44 100%);
  color: #ffffff;
  overflow-x: hidden;
}

/* Header */
.pv-header {
  width: 100%;
  height: 120px;
  background: linear-gradient(90deg, rgba(0,67,100,0.97), rgba(0,67,100,0.93), rgba(0,67,100,0.9));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 36px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.pv-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #4aff00, transparent);
  opacity: 0.6;
}

.pv-header-logo img { height: 88px; width: auto; display: block; }
.pv-header-title { display: flex; flex-direction: column; justify-content: center; line-height: 1.15; }
.pv-header-main { font-size: 22px; font-weight: 800; letter-spacing: 0.6px; }
.pv-header-sub { font-size: 14px; font-weight: 600; color: #4aff00; }

/* Hero */
.hero__container {
  position: relative;
  width: 100%;
  height: 70vh;
  max-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero__media-wrapper { position: absolute; inset: 0; z-index: 1; }
.hero__image { width: 100%; height: 100%; object-fit: cover; transition: transform 14s ease; }
.hero__container:hover .hero__image { transform: scale(1.06); }
.overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,67,100,0.25), rgba(0,0,0,0.9)); z-index: 2; }
.hero__content-wrapper { position: relative; z-index: 3; padding: 0 6%; margin-bottom: 64px; }
.hero__subtitle { font-size: 40px; margin-bottom: 20px; font-weight: 700; }

.hero__button {
  display: inline-block;
  background: #ffffff;
  color: #002d44;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
}

.hero__button:hover {
  background: #4aff00;
  color: #002d44;
  box-shadow: 0 14px 38px rgba(74,255,0,0.4);
  transform: translateY(-2px);
}

/* Content */
main {
  padding: 36px 20px;
  max-width: 820px;
  margin: 0 auto;
}

h1 { font-size: 18px; text-align: left; font-weight: 800; margin-bottom: 35px; text-transform: uppercase; }

.whats-new, .notice { margin-bottom: 35px; }

/* Combined H2, UL, and LI styles to remove redundancy */
.whats-new h2, .notice h2 {
  font-size: 15px;
  color: #4aff00;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.whats-new ul, .notice ul { padding-left: 20px; list-style-position: outside; }

.whats-new li, .notice li {
  font-size: 14px;
  color: #e0e0e0;
  margin-bottom: 12px;
  line-height: 1.6;
  list-style-type: square;
}

.whats-new li::marker, .notice li::marker { color: #4aff00; }

/* FAQ Section */
.faq-section h2 { font-size: 16px; margin-bottom: 10px; font-weight: 700; margin-top: 20px; }
.faq { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; margin-bottom: 10px; }
.faq-header { padding: 14px 16px; font-weight: 600; font-size: 14px; cursor: pointer; position: relative; }
.faq-header::after { content: '\f078'; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 11px; }
.faq.active .faq-header::after { transform: translateY(-50%) rotate(180deg); }
.faq-body { padding: 0 16px 14px; display: none; font-size: 13px; }
.faq.active .faq-body { display: block; }

/* Download Section */
.download-section { display: flex; flex-direction: column; align-items: center; margin-top: 40px; text-align: center; }
.latest { font-size: 13px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
.version { font-family: 'Roboto Mono', monospace; font-size: 14px; margin-bottom: 18px; }
.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 90%;
  max-width: 420px;
  padding: 16px 0;
  background: #4aff00;
  color: #002d44;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(74,255,0,0.35);
  transition: all 0.3s ease;
}

/* Footer */
.pv-footer-wrapper {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: linear-gradient(135deg, #00324A 0%, #004364 50%, #005C85 100%);
}

.pv-footer { color: #fff; padding-top: 60px; }
.pv-footer-content { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; padding: 0 60px; }
.footer-logo { width: 400px; height: auto; object-fit: contain; }
.footer-columns { display: flex; flex: 3; justify-content: space-between; gap: 80px; flex-wrap: wrap; }
.footer-col h4 { font-size: 17px; font-weight: 700; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #fff; opacity: 0.9; text-decoration: none; font-size: 15px; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.25); margin: 40px 0 0; }

.footer-utilities { width: 100%; background: linear-gradient(90deg, #002C41 0%, #004364 100%); padding: 20px 60px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.footer-copy, .footer-contact { font-size: 12px; opacity: 0.85; margin: 0; }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a { color: #fff; background: rgba(255,255,255,0.2); width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.3s ease; text-decoration: none !important; }

/* Responsive */
@media (max-width: 992px) {
  .pv-footer-content { flex-direction: column; align-items: center; text-align: center; padding: 0 25px; }
  .footer-logo { width: 300px; margin-bottom: 18px; }
  .footer-columns { flex-direction: column; align-items: center; gap: 30px; }
  .footer-utilities { flex-direction: column; text-align: center; gap: 12px; padding: 20px 25px; }
}

@media (max-width: 768px) {
  .pv-header { height: 104px; padding: 0 24px; }
  .pv-header-logo img { height: 76px; }
  .hero__subtitle { font-size: 25px; }
}

@media (max-width: 480px) {
  .pv-header { height: 96px; padding: 0 20px; gap: 16px; }
  .pv-header-logo img { height: 68px; }
  .pv-header-main { font-size: 18px; }
  .pv-header-sub { font-size: 13px; }
  .hero__container { height: 55vh; }
}