/* GTA Section Simple with English & Sinhala */
.gta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  margin: 50px auto;
  background: rgba(15, 23, 42, 0.45);
  padding: 20px;
  border-radius: 24px;
  backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.gta-image img {
  width: 400px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.35);
  margin-bottom: 20px;
}

.gta-summary {
  color: #ffffff;
  text-align: center;
  max-width: 800px;
}

.gta-summary .game-title {
  font-size: 28px;
  font-weight: 800; /* bold */
  margin-bottom: 12px;
}

.gta-summary .eng-text,
.gta-summary .sinh-text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.download-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(45deg, #ff0033, #ff5e5e);
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(255,0,60,0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.download-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 22px rgba(255,0,60,0.85);
}

/* Responsive */
@media(max-width: 900px) {
  .gta-image img {
    width: 80%;
  }
}
.extra-links {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  justify-content: center;
}

.extra-btn {
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(45deg, #1e90ff, #00bfff);
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(0,191,255,0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.extra-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 18px rgba(0,191,255,0.85);
}
.sys-req-box {
    margin-top: 22px;
    background: rgba(255,255,255,0.07);
    padding: 18px 20px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.25);
}

.sys-req-box h3 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.sys-req-box ul {
    list-style: none;
    padding: 0;
}

.sys-req-box li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #e0e0e0;
}

.sys-req-box li span {
    font-weight: 700;
    color: #ffffff;
}
