
/* 🔥 Vibrant Play Theme for Sinumvendo (generated) */

/* Base */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  background: #0B0F19; /* deep ink */
  color: #E6E8EE; /* soft light */
  font-family: 'Inter', 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.75;
}

/* Links */
a { color: #FFD166; text-decoration: none; }
a:hover { color: #FFE29A; text-decoration: none; }

/* Header + Nav */
header {
  background: linear-gradient(90deg, #1F1147 0%, #43127A 60%, #6F1A8D 100%);
  color: #FFFFFF;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 40px;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.logo h1 { color: #FFFFFF; font-weight: 800; letter-spacing: .3px; }

nav { display: flex; gap: 12px; flex-wrap: wrap; }
nav a {
  color: #FFFFFF;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  transition: transform .15s, background-color .25s, color .25s, box-shadow .25s;
}
nav a:hover {
  background: rgba(255,255,255,0.15);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}

/* Content wrappers */
.content {
  max-width: 980px;
  margin: 64px auto;
  background: #101526;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

/* Typography */
h1, h2, h3 {
  color: #FDE68A; /* warm light */
  margin: 0 0 16px; font-weight: 800;
}
h2 { border-left: 6px solid #FF3D71; padding-left: .6rem; }
p { color: #CBD2E0; }

/* Buttons */
.btn, button, .hero a, .btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #FF3D71, #FF7A59);
  color: #0B0F19;
  padding: 10px 18px;
  border: none; border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(255,61,113,.35);
  transition: transform .15s, box-shadow .15s, filter .25s;
}
.btn:hover, button:hover, .hero a:hover, .btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 16px 28px rgba(255,61,113,.45);
}

/* Hero */
.hero {
  background: radial-gradient(1200px 600px at 20% -10%, rgba(255,61,113,.35), transparent 60%),
              radial-gradient(1000px 500px at 110% 10%, rgba(255,209,102,.25), transparent 60%),
              linear-gradient(135deg, #1A0F3B 0%, #0E1530 100%);
  color: #E6E8EE;
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  padding: 72px 20px;
  border-radius: 0 0 28px 28px;
  position: relative; overflow: hidden;
}
.hero h1 { color: #FFFFFF; font-size: 2.9rem; text-shadow: 0 4px 20px rgba(0,0,0,.35); }
.hero p { max-width: 900px; opacity: .92; }

/* Feature grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
  padding: 40px 20px;
  max-width: 1100px; margin: 0 auto;
}
.feature {
  background: linear-gradient(180deg, #141B31 0%, #0F1628 100%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  transition: transform .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(0,0,0,.45); }
.feature h3 { color: #FFD166; }
.feature p { color: #C7CCE0; }

/* Info section */
.info-section {
  padding: 52px 20px;
  background: linear-gradient(180deg, #0E1426, #0B0F19);
  text-align: center;
  box-shadow: inset 0 0 50px rgba(0,0,0,.25);
}
.info-section h2 { color: #FFE29A; }
.info-section p { max-width: 860px; margin: 0 auto 18px; color: #D3D8E6; }

/* Gallery */
.games-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding: 32px;
  background: transparent;
}
.games-gallery img {
  width: 100%; border-radius: 14px;
  transition: transform .2s, box-shadow .2s, filter .2s;
  box-shadow: 0 12px 24px rgba(0,0,0,.35);
}
.games-gallery img:hover {
  transform: translateY(-4px) scale(1.02);
  filter: saturate(1.07);
  box-shadow: 0 18px 32px rgba(0,0,0,.45);
}

/* Footer */
footer {
  background: #090C14;
  color: #98A3B8;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  box-shadow: 0 -10px 30px rgba(0,0,0,.35);
}
footer a { color: #FFD166; }
footer a:hover { color: #FFE29A; }

/* Responsive */
@media (max-width: 768px) {
  .content { margin: 40px 16px; padding: 24px; }
  .hero { padding: 56px 16px; }
  header { padding: 12px 16px; }
}
