/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: "Poppins", Arial, sans-serif;
  background: linear-gradient(180deg, #f4f9ff, #e6f0ff);
  color: #222;
  line-height: 1.7;
}

/* HEADER */
.main-header {
  background: #1e88e5;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  color: #ffeb3b;
  font-size: 28px;
  font-weight: 800;
  text-decoration: none;
}

.main-nav a {
  color: #fff;
  margin-left: 18px;
  font-size: 14px;
  text-decoration: none;
}

.main-nav a:hover {
  text-decoration: underline;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 35px 22px;
}

/* HERO */
.hero {
  display: flex;
  gap: 45px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1;
}

.hero-left h1 {
  font-size: 36px;
  margin-bottom: 14px;
  color: #1e88e5;
}

.hero-left p {
  color: #333;
}

.hero-right {
  flex: 0 0 260px;
  text-align: center;
}

.hero-right img {
  max-width: 230px;
  border-radius: 20px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* BUTTONS */
.hero-buttons {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-buttons a {
  padding: 13px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* MAIN BUTTON */
.btn-main {
  background: #ff5252;
  color: #fff;
}

.btn-main:hover {
  background: #e53935;
}

/* ALT */
.btn-alt {
  background: #43a047;
  color: #fff;
}

.btn-alt:hover {
  background: #388e3c;
}

/* OUTLINE */
.btn-outline {
  border: 2px dashed #1e88e5;
  color: #1e88e5;
  background: transparent;
}

.btn-outline:hover {
  background: #1e88e5;
  color: #fff;
}

/* TABLE */
.app-details table {
  width: 100%;
  margin-top: 45px;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
}

.app-details th,
.app-details td {
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.app-details th {
  background: #e3f2fd;
  color: #1e88e5;
  width: 35%;
}

/* CONTENT */
.content-section {
  margin-top: 65px;
}

.content-section h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #ff5252;
}

.content-section img {
  width: 100%;
  max-width: 720px;
  margin: 28px auto;
  display: block;
  border-radius: 18px;
}

/* LIST */
.gaming-tips {
  padding-left: 22px;
}

.gaming-tips li {
  margin-bottom: 10px;
}

/* FAQ */
.faq-section {
  margin-top: 75px;
}

.faq-question {
  width: 100%;
  background: #fff;
  color: #1e88e5;
  padding: 18px;
  border: 2px solid #1e88e5;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
}

.faq-answer {
  display: none;
  background: #f5faff;
  padding: 18px;
  border: 1px solid #bbdefb;
  border-top: none;
}

/* FOOTER */
.site-footer {
  background: #1e88e5;
  margin-top: 90px;
  color: #fff;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 45px 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: #ffeb3b;
  text-decoration: none;
}

.footer-bottom {
  background: #1565c0;
  text-align: center;
  padding: 15px;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
