/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: radial-gradient(circle at top, #0b3d2e, #051f18);
  color: #f2f2f2;
  line-height: 1.7;
}

/* HEADER */
.main-header {
  background: linear-gradient(90deg, #06281f, #0b3d2e);
  border-bottom: 2px solid #c9a24d;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: #c9a24d;
  text-decoration: none;
  letter-spacing: 1px;
}

.main-nav a {
  color: #e8e8e8;
  margin-left: 18px;
  font-size: 14px;
  text-decoration: none;
}

.main-nav a:hover {
  color: #c9a24d;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 35px 22px;
}

/* HERO */
.hero {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1;
}

.hero-left h1 {
  font-size: 36px;
  margin-bottom: 14px;
  color: #f5e6b8;
}

.hero-left p {
  color: #d9e6e0;
}

.hero-right {
  flex: 0 0 260px;
  text-align: center;
}

.hero-right img {
  max-width: 230px;
  border-radius: 16px;
  border: 3px solid #c9a24d;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

/* BUTTONS */
.hero-buttons {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-buttons a {
  padding: 13px 30px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

/* PRIMARY */
.btn-main {
  background: linear-gradient(45deg, #c9a24d, #f5e6b8);
  color: #1c1405;
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,77,0.4);
}

/* SECONDARY */
.btn-alt {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-alt:hover {
  background: rgba(255,255,255,0.15);
}

/* OUTLINE */
.btn-outline {
  border: 2px solid #c9a24d;
  color: #c9a24d;
  background: transparent;
}

.btn-outline:hover {
  background: #c9a24d;
  color: #000;
}

/* APP DETAILS */
.app-details table {
  width: 100%;
  margin-top: 45px;
  border-collapse: collapse;
  background: rgba(0,0,0,0.35);
  border-radius: 12px;
  overflow: hidden;
}

.app-details th,
.app-details td {
  padding: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.app-details th {
  color: #f5e6b8;
  width: 35%;
}

/* CONTENT */
.content-section {
  margin-top: 65px;
}

.content-section h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #f5e6b8;
}

.content-section p {
  color: #d8ebe4;
}

.content-section img {
  width: 100%;
  max-width: 740px;
  margin: 28px auto;
  display: block;
  border-radius: 18px;
  border: 2px solid rgba(201,162,77,0.6);
}

/* LIST */
.gaming-tips {
  padding-left: 22px;
  margin-top: 12px;
}

.gaming-tips li {
  margin-bottom: 10px;
  color: #e4f0ea;
}

/* FAQ */
.faq-section {
  margin-top: 75px;
}

.faq-question {
  width: 100%;
  background: rgba(0,0,0,0.45);
  color: #f5e6b8;
  padding: 18px;
  border: 1px solid rgba(201,162,77,0.4);
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
}

.faq-question:hover {
  background: rgba(0,0,0,0.6);
}

.faq-answer {
  display: none;
  background: rgba(0,0,0,0.55);
  color: #e0efe8;
  padding: 18px;
  border: 1px solid rgba(201,162,77,0.3);
  border-top: none;
}

/* FOOTER */
.site-footer {
  background: linear-gradient(90deg, #051f18, #06281f);
  margin-top: 90px;
  color: #d2e2db;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 45px 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-container h3,
.footer-container h4 {
  color: #f5e6b8;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #d2e2db;
  text-decoration: none;
}

.footer-links a:hover {
  color: #c9a24d;
}

.footer-bottom {
  background: #02110d;
  text-align: center;
  padding: 15px;
  font-size: 13px;
  color: #8fb8a7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-right img {
    max-width: 190px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
