/* Author: Saulius Navickas */
/* Version: 2.0 */


     /* GENERAL */ 
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(120deg, #1e3a8a, #9333ea, #facc15, #ef4444);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #fff;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

header {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(6px);
}

h1 {
    margin: 0;
    font-size: 2rem;
}

main {
    padding: 20px;
}

footer {
    text-align: center;
    padding: 12px;
    font-size: 0.9rem;
    color: #fff;
}

/* FILTER BOXES */
.filter-box {
    background: rgba(0,0,0,0.2);
    padding: 16px;
    margin-bottom: 16px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.filter-box h2 {
    margin-top: 0;
}

.checkbox-group,
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-group label,
.radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.95rem;
    cursor: pointer;
}

/* BUTTON */
button#showSuggestions {
    background: linear-gradient(45deg, #ff3cac, #784ba0, #2b86c5);
    background-size: 300% 300%;
    color: white;
    padding: 10px 18px;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    animation: buttonGradient 6s ease infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button#showSuggestions:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255,255,255,0.6);
}

@keyframes buttonGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* RESULTS */
.results-box {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.game-card {
    background: rgba(0,0,0,0.5);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(4px);
}

.game-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 0 25px rgba(255,255,255,0.7);
}

.game-card h3 {
    margin: 0 0 8px;
    color: #fffbeb;
}

.game-card p {
    margin: 4px 0;
    font-size: 0.9rem;
}

/* BADGES */
.badge {
    display: inline-block;
    background: linear-gradient(45deg, #facc15, #f87171, #34d399, #3b82f6);
    background-size: 400% 400%;
    color: #fff;
    border-radius: 6px;
    padding: 2px 8px;
    margin-right: 4px;
    font-size: 0.8rem;
    animation: badgeGradient 10s ease infinite;
}

@keyframes badgeGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

