GameFinder+
SELECTOR DE JUEGOS
x; margin-bottom: 2rem; } .search-box { width: 100%; padding: 1.1rem 1.8rem; background: var(--dark-card); border: 2px solid var(--border); border-radius: 30px; color: var(--text-main); font-size: 1.15rem; outline: none; transition: all 0.3s; margin-bottom: 1.5rem; } .search-box:focus { border-color: var(--primary); box-shadow: 0 0 0 5px rgba(139,92,246,0.2), 0 20px 50px rgba(139,92,246,0.3); transform: translateY(-4px); } .filters-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.2rem; margin-bottom: 1.5rem; } .filter-group { display: flex; flex-direction: column; text-align: left; } label { font-weight: 600; margin-bottom: 0.6rem; color: var(--primary-light); font-size: 0.9rem; } select, input[type="range"] { padding: 0.9rem 1.2rem; background: var(--dark-card); border: 2px solid var(--border); border-radius: 15px; color: var(--text-main); font-size: 1rem; outline: none; transition: all 0.3s; font-family: inherit; } select:focus, input[type="range"]:focus { border-color: var(--primary); box-shadow: 0 0 15px rgba(139,92,246,0.3); } .range-value { text-align: center; margin-top: 0.5rem; font-weight: bold; color: var(--primary-light); } .clear-filters { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #000; border: none; padding: 1rem 1.8rem; border-radius: 50px; cursor: pointer; font-size: 1rem; font-weight: 700; transition: all 0.3s; box-shadow: 0 8px 25px rgba(139,92,246,0.4); justify-self: center; grid-column: 1 / -1; } .clear-filters:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 35px rgba(139,92,246,0.6); } /* Resultados */ .results-info { width: 100%; max-width: 1200px; padding: 1.2rem 2rem; background: var(--dark-card); border-radius: 20px; margin-bottom: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; border: 1px solid var(--border); backdrop-filter: blur(10px); box-shadow: 0 15px 40px rgba(0,0,0,0.6); } .favorites-link { color: var(--primary-light); cursor: pointer; font-weight: bold; text-decoration: underline; transition: all 0.3s; } .favorites-link:hover { color: var(--primary); text-shadow: 0 0 10px var(--primary-light); } /* Grid de juegos */ .game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; width: 100%; max-width: 1400px; } .game-card { background: var(--dark-card); border-radius: 25px; overflow: hidden; border: 2px solid var(--border); backdrop-filter: blur(10px); box-shadow: 0 15px 40px rgba(0,0,0,0.6); transition: all 0.3s; position: relative; } .game-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 25px 60px rgba(139,92,246,0.4); border-color: var(--primary-light); } .game-image { width: 100%; height: 200px; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.8rem; font-weight: 700; } .favorite-btn { position: absolute; top: 15px; right: 15px; background: rgba(10,10,15,0.8); border: 2px solid var(--primary); width: 45px; height: 45px; border-radius: 50%; cursor: pointer; font-size: 1.4rem; transition: all 0.3s; display: flex; align-items: center; justify-content: center; z-index: 2; } .favorite-btn:hover { transform: scale(1.2) rotate(15deg); background: rgba(139,92,246,0.2); } .favorite-btn.active { color: #e74c3c; border-color: #e74c3c; background: rgba(231, 76, 60, 0.2); text-shadow: 0 0 15px #e74c3c; } .game-content { padding: 1.8rem; text-align: left; } .game-title { font-size: 1.4rem; margin-bottom: 1rem; color: var(--text-main); font-weight: 600; } .game-details { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.2rem; } .tag { background: rgba(139,92,246,0.15); color: var(--primary-light); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 500; border: 1px solid var(--border); backdrop-filter: blur(5px); } .tag.players { background: rgba(167,139,250,0.15); color: var(--primary-light); } .tag.platform { background: rgba(79,172,254,0.15); color: #4facfe; } .tag.duration { background: rgba(67,233,123,0.15); color: #43e97b; } .tag.age-tag { background: rgba(243,156,18,0.15); color: #f39c12; border-color: #f39c12; } .description { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.2rem; } .no-results { text-align: center; padding: 4rem; background: var(--dark-card); border-radius: 25px; grid-column: 1 / -1; border: 2px solid var(--border); backdrop-filter: blur(10px); } @media (max-width: 768px) { .filters-grid { grid-template-columns: 1fr; } .game-grid { grid-template-columns: 1fr; } .results-info { flex-direction: column; } }
SELECTOR DE JUEGOS