/* Modern Gamer Rewards Landing Page Style */

::selection {
  background: #00f6ff;
  color: #111;
}

body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #0f172a 0%, #0a0a0f 100%);
  font-family: 'Poppins', sans-serif;
  color: #e2e8f0;
  overflow-x: hidden;
}

/* Header */
header {
  text-align: center;
  padding: 100px 20px 60px;
  color: #fff;
  position: relative;
}

header h1 {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #00f6ff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

header p {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 20px auto;
}

/* Call-to-Action Button */
.cta-button {
  background: linear-gradient(90deg, #00f6ff, #ff00ff);
  border: none;
  border-radius: 50px;
  padding: 15px 40px;
  font-size: 1.1rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 0, 255, 0.5);
}

/* Search Box */
.game-search-wrapper {
  position: relative;
  max-width: 600px;
  margin: 50px auto;
}

.input-style {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 30px;
  padding: 0 60px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.1rem;
  outline: none;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.input-style:focus {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

/* Game Cards */
.grid-item {
  width: 25%;
  padding: 15px;
  float: left;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.grid-item-inner {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.grid-item-inner:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
}

.grid-item img {
  width: 100%;
  border-radius: 15px 15px 0 0;
}

.grid-item-info {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  border-top: 2px solid rgba(0, 255, 255, 0.2);
}

.grid-item-info h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00f6ff;
}

.grid-item-info span {
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Footer */
footer {
  text-align: center;
  padding: 50px 20px;
  color: #64748b;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 1000px) {
  .grid-item { width: 33.3%; }
}

@media (max-width: 700px) {
  .grid-item { width: 50%; }
  header h1 { font-size: 2.5rem; }
}

@media (max-width: 480px) {
  .grid-item { width: 100%; }
  header h1 { font-size: 2rem; }
  .cta-button { padding: 12px 30px; }
}
