* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #0b1220;
  color: #eaeaea;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

/* HEADER */
.main-header {
  background: linear-gradient(45deg, #004aad, #f4c430);
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  font-weight: bold;
}

.main-nav a {
  color: #fff;
  margin-left: 14px;
  text-decoration: none;
  font-size: 14px;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 30px 20px;
}

/* HERO */
.hero {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1;
}

.hero-left h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.hero-right {
  flex: 0 0 220px;
  text-align: center;
}

.hero-right img {
  max-width: 200px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(244,196,48,0.6);
}

/* BUTTONS */
.hero-buttons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-buttons a {
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
}

.btn-primary {
  background: #f4c430;
  color: #000;
}

.btn-secondary {
  background: #fff;
  color: #000;
}

.btn-outline {
  border: 2px solid #f4c430;
  color: #f4c430;
}

/* TABLE */
.app-details table {
  width: 100%;
  margin-top: 40px;
  background: #111827;
  border-collapse: collapse;
}

.app-details th,
.app-details td {
  padding: 14px;
  border: 1px solid #333;
}

/* CONTENT */
.content-section {
  margin-top: 60px;
}

.content-section h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

.content-section img {
  margin: 22px 0;
  border-radius: 12px;
}

/* LISTS */
.instructions,
.gaming-tips {
  padding-left: 20px;
}

.instructions li,
.gaming-tips li {
  margin-bottom: 8px;
}

/* FAQ */
.faq-section {
  margin-top: 70px;
}

.faq-question {
  width: 100%;
  background: #004aad;
  color: #fff;
  padding: 16px;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-answer {
  display: none;
  background: #111827;
  padding: 16px;
}

/* FOOTER */
.site-footer {
  background: #000;
  margin-top: 80px;
}

.footer-bottom {
  text-align: center;
  padding: 14px;
  font-size: 13px;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 24px;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }
}
