:root {
  --neon-pink: #ff0055;
  --neon-blue: #00f3ff;
  --neon-yellow: #ffff00;
  --dark-bg: #0f0f0f;
  --card-bg: #1a1a1a;
  --text-main: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-main);
  font-family: "Roboto", sans-serif;
  padding-top: 80px;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.main-header {
  background: rgba(15, 15, 15, 0.95);
  border-bottom: 3px solid var(--neon-pink);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 0 15px rgba(255, 0, 85, 0.2);
  backdrop-filter: blur(5px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.2s;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-icon {
  font-size: 2rem;
}

.logo-text {
  font-family: "Press Start 2P", cursive;
  color: #fff;
  font-size: 1.5rem;
  text-shadow: 2px 2px var(--neon-pink);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-menu a {
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  padding: 8px 15px;
  border-radius: 4px;
}

.nav-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--neon-blue);
}

.btn-login {
  border: 2px solid var(--neon-blue);
  color: var(--neon-blue) !important;
  padding: 8px 15px !important;
}

.btn-login:hover {
  background: var(--neon-blue) !important;
  color: #000 !important;
  box-shadow: 0 0 10px var(--neon-blue);
}

.search-wrapper {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.search-input {
  padding: 15px 25px;
  width: 100%;
  border: 2px solid #333;
  border-radius: 50px;
  background: #000;
  color: #fff;
  font-size: 1.1rem;
  outline: none;
  transition: all 0.3s;
}

.search-input:focus {
  border-color: var(--neon-blue);
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

.search-results-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: var(--card-bg);
  border: 2px solid var(--neon-blue);
  border-radius: 16px;
  margin-top: 10px;
  max-height: 500px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 243, 255, 0.3);
}

.search-result-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #333;
  transition: all 0.2s;
  text-decoration: none;
  color: #fff;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: rgba(0, 243, 255, 0.1);
  border-left: 4px solid var(--neon-blue);
}

.search-result-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 15px;
  border: 1px solid #444;
}

.search-result-info {
  flex: 1;
}

.search-result-info h4 {
  margin: 0 0 5px 0;
  font-size: 0.95rem;
  color: #fff;
}

.search-result-info .game-meta {
  font-size: 0.8rem;
  color: #888;
}

.search-loading {
  text-align: center;
  padding: 20px;
  color: var(--neon-blue);
  font-weight: bold;
}

.search-no-results {
  text-align: center;
  padding: 20px;
  color: #666;
}

.section-title {
  color: #fff;
  font-family: "Press Start 2P", cursive;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: var(--neon-pink);
  margin-top: 10px;
  box-shadow: 0 0 10px var(--neon-pink);
}

.title-blue::after {
  background: var(--neon-blue);
  box-shadow: 0 0 10px var(--neon-blue);
}

.title-blue {
  color: var(--neon-blue);
}

.no-results {
  text-align: center;
  padding: 4rem;
  color: #666;
  font-size: 1.2rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.game-card {
  background: var(--card-bg);
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-pink);
  box-shadow: 0 5px 15px rgba(255, 0, 85, 0.3);
}

.game-card:hover h3 {
  color: var(--neon-pink);
}

.card-popular:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
}

.card-popular:hover h3 {
  color: var(--neon-blue);
}

.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.game-card:hover .card-image img {
  transform: scale(1.1);
}

.card-meta {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  backdrop-filter: blur(5px);
}

.metascore {
  color: var(--neon-pink);
  font-size: 0.9rem;
}
.reseñas {
  color: var(--neon-yellow);
  font-size: 0.9rem;
}

.meta-blue {
  color: var(--neon-blue);
}

.card-info {
  padding: 1rem;
}

.transparent-info {
  padding: 0.75rem;
}

.game-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
}

.game-genres {
  color: #888;
  font-size: 0.85rem;
}

.cyber-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #333;
}

.cyber-header-flex h1 {
  margin: 0;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
}

.listas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.listas-grid > .lista-card-clickable {
  background: var(--card-bg);
  border: 1px solid var(--neon-blue);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: inherit;
}

.lista-card-clickable:hover {
  transform: translateY(-8px);
  border-color: var(--neon-blue);
  box-shadow: 0 8px 25px rgba(0, 243, 255, 0.4);
}

.lista-card-clickable:hover .lista-card-title {
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink);
}

.lista-card-title {
  color: var(--neon-blue);
  font-size: 1.4rem;
  margin: 0 0 0.5rem 0;
  transition: all 0.3s;
  font-weight: 700;
  text-align: center;
}

.lista-card-description {
  color: #999;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  text-align: center;
}

.lista-card-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: auto;
}

.btn-retro {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  font-size: 0.9rem;
  border: 2px solid;
  background: transparent;
}

.btn-retro.btn-small {
  font-size: 0.8rem;
  padding: 8px 16px;
}

.btn-retro.btn-neon-pink {
  color: var(--neon-pink);
  border-color: var(--neon-pink);
}

.btn-retro.btn-neon-pink:hover {
  background: var(--neon-pink);
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 0, 85, 0.5);
  transform: translateY(-2px);
}

.btn-retro.btn-neon-blue {
  color: var(--neon-blue);
  border-color: var(--neon-blue);
}

.btn-retro.btn-neon-blue:hover {
  background: var(--neon-blue);
  color: #000;
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
  transform: translateY(-2px);
}

.back-link {
  display: inline-block;
  color: var(--neon-blue);
  font-weight: bold;
  margin-bottom: 1.5rem;
  transition: transform 0.2s;
}

.back-link:hover {
  transform: translateX(-5px);
}

.game-hero {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(4px) brightness(0.4);
  transform: scale(1.02);
  z-index: -1;
}

.hero-scanlines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.1) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  height: 100%;
  padding: 2.5rem;
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  z-index: 3;
}

.hero-poster {
  width: 180px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.hero-text {
  flex: 1;
}

.game-main-title {
  font-family: "Press Start 2P", cursive;
  color: #fff;
  font-size: 2rem;
  text-shadow: 3px 3px 0px var(--neon-pink);
  margin: 0 0 1rem 0;
}

.hero-meta-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.meta-badge,
.date-badge,
.dev-badge {
  background: rgba(0, 0, 0, 0.7);
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: bold;
  border: 1px solid var(--neon-pink);
  color: var(--neon-pink);
}

.game-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2rem;
  margin-bottom: 3rem;
}

.main-column {
  min-width: 0;
}

.info-section {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #333;
  margin-bottom: 2rem;
}

.text-box {
  color: #ccc;
  line-height: 1.8;
}

.no-data {
  color: #666;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #333;
  transition: all 0.3s ease;
  cursor: pointer;
  aspect-ratio: 16/9;
}

.gallery-item:hover {
  transform: scale(1.05);
  border-color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.gallery-item:hover img {
  filter: brightness(1.2);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  font-size: 3rem;
  color: var(--neon-blue);
  text-shadow: 0 0 15px var(--neon-blue);
}

.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border: 3px solid var(--neon-blue);
  border-radius: 8px;
  box-shadow: 0 0 50px rgba(0, 243, 255, 0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: var(--neon-pink);
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px var(--neon-pink);
}

.lightbox-close:hover {
  color: #fff;
  text-shadow: 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink);
  transform: scale(1.2);
}

.action-panel {
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--neon-blue);
  margin-bottom: 2rem;
  text-align: center;
}

.panel-title {
  color: #fff;
  font-family: "Press Start 2P", cursive;
  font-size: 0.8rem;
  margin: 0 0 1.5rem 0;
}

.panel-description {
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.panel-footer {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #888;
}

.panel-link {
  color: var(--neon-blue);
  text-decoration: underline;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-action {
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  text-decoration: none;
  display: block;
  text-align: center;
}

.btn-add {
  background: var(--neon-blue);
  color: #000;
}

.btn-add:hover {
  background: #fff;
  box-shadow: 0 0 15px var(--neon-blue);
}

.btn-review {
  background: var(--neon-pink);
  color: #fff;
}

.btn-review:hover {
  background: #fff;
  color: var(--neon-pink);
  box-shadow: 0 0 15px var(--neon-pink);
}

.details-panel {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #333;
}

.panel-header {
  color: var(--neon-pink);
  font-family: "Press Start 2P", cursive;
  font-size: 0.75rem;
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--neon-pink);
}

.detail-row {
  margin-bottom: 1.5rem;
}

.detail-row strong {
  display: block;
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: rgba(0, 243, 255, 0.1);
  border: 1px solid var(--neon-blue);
  color: var(--neon-blue);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
}

.website-link {
  display: block;
  text-align: center;
  color: var(--neon-blue);
  padding: 10px;
  border: 1px solid var(--neon-blue);
  border-radius: 6px;
  margin-top: 1rem;
  transition: all 0.3s;
}

.website-link:hover {
  background: var(--neon-blue);
  color: #000;
}

.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 2rem;
}

.auth-card {
  background: var(--card-bg);
  border: 2px solid var(--neon-pink);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(255, 0, 85, 0.3);
}

.login-form {
  border-color: var(--neon-blue);
  box-shadow: 0 8px 32px rgba(0, 243, 255, 0.3);
}

.auth-title {
  font-family: "Press Start 2P", cursive;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.validation-error {
  background: rgba(255, 0, 85, 0.1);
  border: 1px solid var(--neon-pink);
  color: var(--neon-pink);
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  color: #aaa;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input {
  width: 100%;
  padding: 12px;
  background: #000;
  border: 1px solid #444;
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: var(--neon-blue);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.btn-submit {
  width: 100%;
  padding: 12px;
  background: var(--neon-blue);
  border: none;
  border-radius: 6px;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  background: #fff;
  box-shadow: 0 0 20px var(--neon-blue);
  transform: translateY(-2px);
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #888;
}

.auth-link {
  color: var(--neon-blue);
  font-weight: bold;
  transition: color 0.3s;
}

.auth-link:hover {
  color: var(--neon-pink);
}

.login-form .auth-link {
  color: var(--neon-pink);
}

.alert-retro {
  border: 2px solid var(--neon-blue);
  color: var(--neon-blue);
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(0, 243, 255, 0.05);
  font-weight: bold;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  border: 2px dashed #333;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
}

.empty-state h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-family: "Press Start 2P", cursive;
  font-size: 1rem;
}

.empty-state p {
  color: #999;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.text-white {
  color: #fff;
}

.text-muted {
  color: #999;
}

.text-neon-blue {
  color: var(--neon-blue);
}

.text-neon-pink {
  color: var(--neon-pink);
}

.neon-border-blue {
  border-color: var(--neon-blue) !important;
}

.neon-border-pink {
  border-color: var(--neon-pink) !important;
}

.lista-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #333;
  gap: 2rem;
}

.lista-header-content {
  flex: 1;
}

.lista-description {
  color: #999;
  margin-top: 0.5rem;
  line-height: 1.6;
  font-size: 1rem;
}

.lista-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.lista-game-card {
  background: var(--card-bg);
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.lista-game-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-pink);
  box-shadow: 0 5px 15px rgba(255, 0, 85, 0.3);
}

.lista-game-card .card-image {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.lista-game-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lista-game-card:hover .card-image img {
  transform: scale(1.1);
}

.lista-game-card .card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.lista-game-card .card-title {
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s;
}

.lista-game-card:hover .card-title {
  color: var(--neon-pink);
}

.lista-game-card .card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.btn-game-action {
  flex: 1;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  border: 2px solid;
}

.btn-game-primary {
  background: transparent;
  color: var(--neon-blue);
  border-color: var(--neon-blue);
}

.btn-game-primary:hover {
  background: var(--neon-blue);
  color: #000;
  box-shadow: 0 0 15px var(--neon-blue);
}

.btn-game-danger {
  background: transparent;
  color: #ff3333;
  border-color: #ff3333;
}

.btn-game-danger:hover {
  background: #ff3333;
  color: #fff;
  box-shadow: 0 0 15px #ff3333;
}

.lista-counter {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid #333;
}

.lista-counter p {
  color: #999;
  font-size: 1rem;
  margin: 0;
}

.lista-counter .count-number {
  color: var(--neon-blue);
  font-weight: bold;
  font-size: 1.5rem;
  font-family: "Press Start 2P", cursive;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  .main-container {
    padding: 1rem;
  }

  .logo-text {
    font-size: 1rem;
  }

  .nav-menu a {
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }

  .game-hero {
    height: 300px;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }

  .hero-poster {
    width: 120px;
  }

  .game-main-title {
    font-size: 1.2rem;
  }

  .game-layout {
    grid-template-columns: 1fr;
  }

  .action-panel {
    position: static;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
