/* ===== Global Reset ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Arial, Helvetica, sans-serif;
  background:#0b0f1a;
  color:#e5e7eb;
  line-height:1.6;
}
.image-background{
  background: url("images/arena.png") center/cover no-repeat fixed;
}

/* ===== Top Icon ===== */
.top-icon{
  text-align:center;
  padding:20px;
}

.top-icon img{
  width: 150px;
  height: auto; 
}
 
/* ===== Section Spacing ===== */
section{
  padding:60px 20px;
}

h1,h2,h3{
  text-align:center;
  margin-bottom:20px;
}

h1{
  font-size:34px;
}

h2{
  font-size:28px;
}

p{
  font-size:16px;
  color:#cbd5e1;
  text-align:center;
}

/* ===== Container ===== */
.about-container,
.psychology-container{
  max-width:1100px;
  margin:auto;
}
.app-screenshots {
  text-align: center;
  background: #f7f9fc; /* light background to separate section */
  padding: 40px 20px;
}

.app-screenshots h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #222;
}

.screenshots-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.app-screenshot {
  max-width: 160px;   /* keeps them small and neat */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.app-screenshot:hover {
  transform: scale(1.05); /* subtle hover effect */
}

/* ===== Grid Cards ===== */
.info-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:25px;
  margin-top:30px;
}

.info-card{
  background:#111827;
  padding:25px;
  border-radius:12px;
  box-shadow:0 6px 20px rgba(0,0,0,0.35);
  transition:0.3s;
}

.info-card:hover{
  transform:translateY(-5px);
}

.info-card h3{
  margin-bottom:10px;
  font-size:18px;
  color:#38bdf8;
}

/* ===== Mission Text ===== */
.mission{
  text-align:center;
  max-width:800px;
  margin:auto;
}

/* ===== Psychology ===== */
.psychology{
  background:#020617;
}

.highlight{
  color:#38bdf8;
  font-weight:bold;
  margin-bottom:10px;
  text-align:center;
}

/* ===== Screenshot ===== */
.screenshot{
  width:100%;
  max-width:500px;
  display:block;
  margin:20px auto;
  border-radius:10px;
}

/* ===== Accordion ===== */
.accordion{
  max-width:900px;
  margin:auto;
}

.accordion-btn{
  width:100%;
  padding:16px;
  margin-top:10px;
  background:#1e293b;
  color:#fff;
  border:none;
  text-align:left;
  cursor:pointer;
  font-size:16px;
  border-radius:6px;
  transition:0.2s;
}

.accordion-btn:hover{
  background:#334155;
}

.accordion-content{
  background:#020617;
  overflow:hidden;
  max-height:0;
  transition:max-height 0.3s ease;
  padding:0 15px;
}

.accordion-content p{
  padding:15px 0;
}

/* ===== GodSpeed Section ===== */

.godspeed-section{
  background:linear-gradient(135deg,#020617,#0f172a,#020617);
  padding:80px 20px;
  text-align:center;
}

.godspeed-container{
  max-width:1100px;
  margin:auto;
}

.godspeed-intro{
  max-width:750px;
  margin:20px auto 40px;
  font-size:17px;
}

.godspeed-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.godspeed-card{
  background:#111827;
  padding:30px;
  border-radius:12px;
  box-shadow:0 8px 25px rgba(0,0,0,0.4);
  transition:0.3s;
}

.godspeed-card:hover{
  transform:translateY(-6px);
}

.godspeed-card h3{
  color:#22c55e;
  margin-bottom:10px;
}
.apk-size {
  font-size: 0.9rem;
  color: #555;
  margin-top: 5px;
  text-align: center;
}

.highlight-heading {
  font-size: 28px;           /* slightly bigger */
  font-weight: 700;          /* bolder */
  color: #22c55e;            /* vibrant, eye-catching color */
  text-align: center;        /* centered for emphasis */
  margin: 30px 0 20px 0;     /* spacing before and after */
  text-transform: uppercase; /* optional for impact */
  letter-spacing: 1px;       /* subtle spacing */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* subtle depth */

}

.founder-section {
  background: #eef4f8; /* soft background for contrast */
  padding: 50px 20px;
  text-align: center;
}

.founder-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.founder-pic {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid #4a90e2; /* adds a subtle highlight */
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.founder-pic:hover {
  transform: scale(1.05);
}

.founder-text {
  max-width: 500px;
}

.founder-text h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #222;
}

.founder-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}
.founder-name {
  margin-top: 15px;
  font-style: italic;
  color: #4a90e2; /* matches the border color */
  font-weight: 600;
}
/* ===== Hero Download Section ===== */
.hero{
  text-align:center;
  background:linear-gradient(120deg,#0f172a,#020617);
  padding:80px 20px;
}

.hero h1{
  margin-bottom:15px;
}

.hero p{
  margin-bottom:25px;
}

/* ===== Download Button ===== */
.btn{
  display:inline-block;
  padding:14px 28px;
  background:#22c55e;
  color:#fff;
  text-decoration:none;
  font-weight:bold;
  border-radius:8px;
  transition:0.3s;
}

.btn:hover{
  background:#16a34a;
}
.install-guide{
margin-top:40px;
text-align:center;
}

.install-guide h3{
margin-bottom:20px;
font-size:24px;
}

.install-steps{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
margin-top:20px;
}

.step{
background:#121826;
padding:20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

.step strong{
display:block;
margin-bottom:8px;
font-size:16px;
}

/* ===== Risk Warning ===== */
.risk-warning{
  background:#7f1d1d;
  padding:25px;
  text-align:center;
  font-size:14px;
}

/* ===== Footer ===== */
footer{
  background:#020617;
  padding:40px 20px;
  text-align:center;
}

footer h3{
  margin-bottom:15px;
}

footer a{
  color:#38bdf8;
  text-decoration:none;
}

footer a:hover{
  text-decoration:underline;
}

.footer-links{
  margin-bottom:20px;
}

/* ===== Mobile Responsive ===== */
@media(max-width:768px){

h1{
  font-size:26px;
}

h2{
  font-size:22px;
}

section{
  padding:40px 15px;
}

.info-card{
  padding:20px;
}

.hero{
  padding:60px 15px;
}

.btn{
  padding:12px 22px;
}

}