body {
  background: #181f2a;
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
}
header {
  background: #181f2a;
  border-bottom: 2px solid #00e6ff;
  padding: 10px 0;
}
.logo-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  height: 48px;
  margin-left: 20px;
}
nav a {
  color: #00e6ff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  font-size: 1.1em;
}
nav a:hover {
  text-decoration: underline;
}
main {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
}
h1 {
  font-weight: bold;
  background: #181f2a;
  border-radius: 0 0 20px 0;
  padding: 10px 20px;
  margin-top: 30px;
  margin-bottom: 10px;
}

h2 {
  font-weight: bold;
  text-align: center;
  background: #232b3a;
  color: #fff;
  border-radius: 12px 12px 0 0;
  padding: 18px 0 12px 0;
  margin: 30px 0 18px 0;
  font-size: 2em;
}
.main-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 0;
  justify-content: center;
}

.app-image-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
}

.main-app-icon {
  width: 280px;
  height: 280px;
  border-radius: 24px;
  background: #fff;
  padding: 30px;
  margin-bottom: 20px;
}

.rating-stars {
  display: flex;
  align-items: center;
  font-size: 1.6em;
  margin-top: 10px;
  color: #fff;
  justify-content: center;
}

.rating-number {
  margin-right: 8px;
  font-weight: bold;
  color: #00e6ff;
}

.stars {
  color: #ffd700;
  font-size: 1.2em;
}

.app-info {
  background: #232b3a;
  border-radius: 12px;
  border: 1px solid #333;
  color: #fff;
  width: 480px;
  font-size: 1.1em;
  margin-top: 0;
}

.app-info th, .app-info td {
  padding: 14px 18px;
  text-align: left;
}

.app-info th {
  font-weight: 600;
  width: 220px;
}

.download-btn-row {
  display: flex;
  justify-content: center;
  margin: 32px 0 0 0;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #181f2a;
  font-size: 1.3em;
  font-weight: bold;
  border-radius: 0 0 32px 32px;
  padding: 18px 48px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  border-bottom: 4px solid #00e6ff;
  transition: background 0.2s, color 0.2s;
}

.download-btn:hover {
  background: #00e6ff;
  color: #181f2a;
}

.download-icon {
  font-size: 1.5em;
  margin-right: 12px;
}
.intro, .about, .features, .premium-features, .why-download, .how-to-download, .pros-cons, .conclusion, .faq {
  background: #232b3a;
  border-radius: 8px;
  margin: 20px 0;
  padding: 20px;
}
.screenshots {
  background: #232b3a;
  border-radius: 8px;
  margin: 20px 0;
  padding: 20px;
}
.screenshot-gallery {
  display: flex;
  gap: 15px;
  overflow-x: auto;
}
.screenshot-gallery img {
  width: 180px;
  border-radius: 10px;
  background: #fff;
  padding: 5px;
}
.toc {
  background: #232b3a;
  border-radius: 8px;
  margin: 20px 0;
  padding: 20px;
}
.features ul, .premium-features ul, .why-download ul, .how-to-download ol {
  list-style: none;
  padding: 0;
}
.features li, .premium-features li, .why-download li, .how-to-download li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.features li::before, .premium-features li::before, .why-download li::before {
  content: "✔";
  color: #00e6ff;
  position: absolute;
  left: 0;
}
.pros-cons {
  display: flex;
  gap: 30px;
}
.pros, .cons {
  flex: 1;
  background: #232b3a;
  border-radius: 8px;
  padding: 20px;
}
.pros h3 {
  color: #00e6ff;
}
.cons h3 {
  color: #ff4d4d;
}
.pros ul, .cons ul {
  list-style: none;
  padding: 0;
}
.pros li::before {
  content: "✔";
  color: #00e6ff;
  margin-right: 8px;
}
.cons li::before {
  content: "✘";
  color: #ff4d4d;
  margin-right: 8px;
}
.faq-item {
  margin-bottom: 10px;
}
.faq-item button {
  width: 100%;
  background: #181f2a;
  color: #fff;
  border: none;
  text-align: left;
  padding: 12px;
  font-size: 1.1em;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  transition: background 0.2s;
}
.faq-item button:hover {
  background: #00e6ff;
  color: #181f2a;
}
.faq-content {
  display: none;
  background: #232b3a;
  padding: 10px 15px;
  border-radius: 0 0 8px 8px;
  margin-top: -8px;
}
footer {
  background: #181f2a;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  border-top: 2px solid #00e6ff;
}

.intro-paragraph {
  font-size: 1.15em;
  color: #fff;
  margin: 18px 0 0 0;
  line-height: 1.7;
}

.screenshots-section {
  margin: 40px 0 0 0;
  background: #232b3a;
  border-radius: 8px;
  padding: 30px 0 30px 0;
}

.screenshots-heading {
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 30px;
  background: #232b3a;
  color: #fff;
  border-radius: 0 0 20px 0;
  padding: 10px 0;
}

.screenshot-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 100%;
}

.slider-btn {
  background: #181f2a;
  color: #00e6ff;
  border: none;
  font-size: 2.5em;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin: 0 10px;
  transition: background 0.2s, color 0.2s;
}
.slider-btn:hover {
  background: #00e6ff;
  color: #181f2a;
}

.slider-images {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1100px;
  height: 240px;
  overflow: visible;
  position: relative;
  gap: 18px;
}

.slider-img {
  width: 200px;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  display: none;
}

.features-cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 32px 0 0 0;
  justify-content: flex-start;
}

.feature-card {
  background: #f5f7fa;
  color: #181f2a;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 28px 22px 20px 22px;
  min-width: 220px;
  max-width: 260px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-title {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #232b3a;
}

.feature-desc {
  font-size: 1em;
  color: #333;
}

.latest-features-section {
  background: #232b3a;
  border-radius: 12px 12px 0 0;
  margin: 40px 0 0 0;
  padding: 0 0 24px 0;
}

.latest-features-heading {
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0;
  background: #232b3a;
  color: #fff;
  border-radius: 12px 12px 0 0;
  padding: 18px 0 12px 0;
}

.latest-features-desc {
  color: #fff;
  font-size: 1.1em;
  margin: 0 32px;
  line-height: 1.7;
  padding-top: 8px;
}

.feature-list-section {
  margin: 32px 0 0 0;
}

.feature-list-title {
  font-size: 2em;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 18px;
  background: none;
  padding: 0 0 10px 0;
}

.feature-list-columns {
  display: flex;
  gap: 40px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.feature-list-col {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1 1 320px;
  min-width: 260px;
}

.feature-list-col li {
  font-size: 1.08em;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.checkmark {
  color: #00e6ff;
  font-size: 1.2em;
  margin-right: 10px;
}

.feature-list-note {
  font-size: 1em;
  color: #fff;
  margin-top: 18px;
}

.how-to-download-section {
  margin: 48px 0 0 0;
}

.how-to-download-heading {
  background: #232b3a;
  color: #fff;
  border-radius: 12px 12px 0 0;
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  padding: 18px 0 12px 0;
  margin: 0 0 18px 0;
}

.how-to-download-intro {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 18px;
}

.how-to-download-steps {
  font-size: 1.08em;
  color: #fff;
  margin: 0 0 18px 0;
  padding-left: 32px;
}

.how-to-download-steps li {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #fff;
}

.how-to-download-link {
  text-align: center;
  font-size: 1.1em;
  margin-top: 10px;
}

.about-rematch-section {
  background: #232b3a;
  border-radius: 12px 12px 0 0;
  margin: 40px 0 0 0;
  padding: 0 0 24px 0;
}

.about-rematch-heading {
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0;
  background: #232b3a;
  color: #fff;
  border-radius: 12px 12px 0 0;
  padding: 18px 0 12px 0;
}

.about-rematch-desc {
  color: #fff;
  font-size: 1.1em;
  margin: 0 32px;
  line-height: 1.7;
  padding-top: 8px;
}

.about-rematch-mod-section {
  background: #232b3a;
  border-radius: 12px 12px 0 0;
  margin: 40px 0 0 0;
  padding: 0 0 24px 0;
}

.about-rematch-mod-heading {
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0;
  background: #232b3a;
  color: #fff;
  border-radius: 12px 12px 0 0;
  padding: 18px 0 12px 0;
}

.about-rematch-mod-desc {
  color: #fff;
  font-size: 1.1em;
  margin: 0 32px;
  line-height: 1.7;
  padding-top: 8px;
}

.comparison-section {
  margin: 48px 0 0 0;
}

.comparison-heading {
  background: #232b3a;
  color: #fff;
  border-radius: 12px 12px 0 0;
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  padding: 18px 0 12px 0;
  margin: 0 0 18px 0;
}

.comparison-intro {
  font-size: 1.1em;
  margin-bottom: 18px;
  color: #fff;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  margin: 0 auto 24px auto;
  font-size: 1.08em;
  box-shadow: none;
  color: #fff;
}

.comparison-table th, .comparison-table td {
  border: 1px solid #fff;
  padding: 14px 18px;
  text-align: left;
  background: transparent;
  color: #fff;
}

.comparison-table th {
  font-weight: bold;
  font-size: 1.1em;
}

.comparison-table tr:nth-child(even) td {
  background: transparent;
}

.feature-list-box {
  background: #232b3a;
  border-radius: 12px 12px 0 0;
  margin: 40px 0 0 0;
  padding: 24px 0 24px 0;
}

.why-download-section {
  margin: 48px 0 0 0;
}

.why-download-heading {
  background: #232b3a;
  color: #fff;
  border-radius: 12px 12px 0 0;
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  padding: 18px 0 12px 0;
  margin: 0 0 18px 0;
}

.why-download-intro {
  font-size: 1.1em;
  color: #fff;
  margin-bottom: 18px;
}

.why-download-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0 10px;
}

.why-download-list li {
  font-size: 1.08em;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.why-download-list .checkmark {
  color: #00e6ff;
  font-size: 1.2em;
  margin-right: 10px;
}

.pros-cons-section-boxed {
  margin: 48px 0 0 0;
}

.pros-cons-heading {
  background: #232b3a;
  color: #fff;
  border-radius: 12px 12px 0 0;
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  padding: 18px 0 12px 0;
  margin: 0 0 18px 0;
}

.pros-cons-columns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pros-box, .cons-box {
  flex: 1 1 460px;
  background: #fff;
  border-radius: 6px;
  padding: 14px 16px 10px 16px;
}

.pros-box {
  border: 4px solid #2faa63;
}

.cons-box {
  border: 4px solid #e25353;
}

.pros-title, .cons-title {
  font-weight: 700;
  font-size: 1.3em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.pros-title { color: #2faa63; }
.cons-title { color: #e25353; }

.pros-list, .cons-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 4px;
}

.pros-list li, .cons-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #232b3a;
}

.checkmark {
  color: #2faa63;
  margin-right: 8px;
}

.crossmark {
  color: #e25353;
  margin-right: 8px;
}

.conclusion-section {
  margin: 48px 0 0 0;
}

.conclusion-heading {
  background: #232b3a;
  color: #fff;
  border-radius: 12px 12px 0 0;
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  padding: 18px 0 12px 0;
  margin: 0 0 18px 0;
}

.conclusion-text {
  color: #fff;
  font-size: 1.1em;
  line-height: 1.8;
  margin: 0 10px;
}

.faqs-section {
  margin: 48px 0 0 0;
}

.faqs-heading {
  background: #232b3a;
  color: #fff;
  border-radius: 12px 12px 0 0;
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  padding: 18px 0 12px 0;
  margin: 0 0 18px 0;
}

.faqs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #232b3a;
  border-radius: 10px;
  color: #fff;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 16px;
  font-weight: 600;
}

.faq-item[open] summary {
  border-bottom: 1px solid #2f3a4d;
}

.faq-item p {
  padding: 12px 16px 16px 16px;
  margin: 0;
  color: #dfe6ef;
}

.footer-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-links a { color: #00e6ff; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

/* Simple form styling */
.contact-form { max-width: 720px; }
.form-row { display: flex; flex-direction: column; margin-bottom: 12px; }
.form-row label { margin-bottom: 6px; color: #fff; }
.form-row input, .form-row textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #3b4559;
  background: #232b3a;
  color: #fff;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: #a9b3c7; }

.logo-text {
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
  margin-left: 20px;
}

/** Responsive enhancements **/
@media (max-width: 1024px) {
  h1 { font-size: 1.9em; }
  h2 { font-size: 1.6em; }
  .main-section { flex-direction: column; align-items: center; gap: 20px; }
  .app-info { width: 100%; max-width: 760px; }
  .main-app-icon { width: 220px; height: 220px; }
  .download-btn { padding: 16px 32px; }
  .pros-cons-columns { flex-direction: column; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .logo-nav { flex-wrap: wrap; gap: 8px; }
  nav a { margin: 6px 10px 0 0; display: inline-block; }
  .main-app-icon { width: 180px; height: 180px; }
  .app-info { width: 100%; max-width: 640px; }
  .download-btn-row { padding: 0 10px; }
  .download-btn { width: 100%; border-radius: 12px; }
  .screenshot-gallery { gap: 10px; }
  .slider-images { width: 100%; height: auto; }
  .slider-img { width: 160px; height: 320px; }
  .features-cards-row { gap: 14px; }
  .feature-card { flex: 1 1 100%; max-width: 100%; }
  .pros-cons-columns { gap: 14px; }
  .comparison-table { display: block; overflow-x: auto; white-space: nowrap; }
  .footer-links { flex-direction: column; align-items: center; gap: 8px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.6em; }
  h2 { font-size: 1.35em; }
  .logo-text { font-size: 1.2rem; }
  .main-app-icon { width: 150px; height: 150px; }
  .app-info th, .app-info td { padding: 10px 12px; }
  .why-download-list li, .feature-list-col li { font-size: 1em; }
  .faq-item summary { padding: 10px 12px; }
  .faq-item p { padding: 10px 12px 14px 12px; }
}

/* Enhanced Screenshots Carousel */
.screenshots-section { background: #232b3a; border-radius: 12px; padding: 24px 12px; }
.screenshot-slider { position: relative; max-width: 1200px; margin: 0 auto; overflow: hidden; }
.slider-images { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scroll-behavior: smooth; padding: 6px 8px; }
.slider-images::-webkit-scrollbar { display: none; }
.slider-img { flex: 0 0 auto; width: 260px; height: 520px; object-fit: cover; border-radius: 14px; background: #fff; padding: 6px; box-shadow: 0 10px 24px rgba(0,0,0,0.25); scroll-snap-align: center; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; }
.slider-btn-left { left: 6px; }
.slider-btn-right { right: 6px; }

@media (max-width: 1024px) {
  .slider-img { width: 220px; height: 440px; }
}
@media (max-width: 768px) {
  .slider-images { gap: 12px; }
  .slider-img { width: 180px; height: 360px; }
}
@media (max-width: 480px) {
  .slider-img { width: 160px; height: 320px; }
}

/* Boxed section style for H2 + paragraph blocks */
.boxed-section {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 0 18px 0;
  margin: 20px 0;
}

/* Inside boxed sections, headings inherit the bar style */
.boxed-section h2 {
  background: #232b3a;
  color: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 14px 16px;
  margin: 0 0 12px 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  font-size: 2em;
}

.boxed-section p {
  color: #dfe6ef;
  line-height: 1.8;
  margin: 0;
}

.image-frame {
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  display: inline-block;
}

.framed-app-image {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .framed-app-image { width: 200px; height: 200px; }
}

.steps-intro {
  font-weight: 600;
  margin: 0 0 10px 0;
}

.steps-list {
  margin: 0;
  padding-left: 22px;
  color: #dfe6ef;
  line-height: 1.9;
}

.steps-list li { margin-bottom: 8px; }

.steps-list strong { color: #ffffff; }

.section-heading {
  background: #232b3a;
  color: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 14px 16px;
  margin: 0 0 12px 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  font-size: 2em;
}
