/* ---------- Base ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Roboto, sans-serif;
}

body {
  background: #fff;
  color: #222;
  line-height: 1.6;
}

/* ---------- Header ---------- */
header {
  background: #6a1b9a; /* purple accent */
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
}

.logo {
  font-weight: 700;
  font-size: 1.4em;
  letter-spacing: 1px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: opacity 0.2s;
}

nav a:hover,
nav a.active {
  opacity: 0.8;
}

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 80px 20px 60px;
  background: #f3e5f5;
}

.hero h1 {
  font-size: 2em;
  color: #4a148c;
  margin-bottom: 10px;
}

.hero p {
  color: #333;
  font-size: 1.1em;
}

/* ---------- App Cards ---------- */
.apps {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

.apps h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #4a148c;
}

.app-card {
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 40px;
  text-align: center;
  padding: 25px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.app-card img {
  max-width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}

.app-card h3 {
  color: #6a1b9a;
  margin-bottom: 10px;
}

.app-card p {
  margin-bottom: 20px;
}

/* ---------- Buttons ---------- */
.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  background: #6a1b9a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn:hover {
  background: #4a148c;
}

.btn.play {
  background: #9c27b0;
}

.btn.play:hover {
  background: #7b1fa2;
}

/* ---------- Footer ---------- */
footer {
  text-align: center;
  padding: 30px 10px;
  background: #f3e5f5;
  color: #4a148c;
  margin-top: 60px;
}

footer a {
  color: #6a1b9a;
  text-decoration: none;
}