/* IndieRoot - Custom Styles */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

main {
    flex: 1;
}

/* Game Cards */
.game-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    border-radius: 0.5rem;
    overflow: hidden;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.game-card .card-img-top {
    background-color: #e9ecef;
}

/* Navbar brand */
.navbar-brand i {
    color: #ffc107;
}

/* Category badges */
.badge.bg-secondary {
    font-weight: 500;
    font-size: 0.75rem;
}

/* Form cards */
.card {
    border: none;
    border-radius: 0.5rem;
}

/* Footer */
footer {
    margin-top: auto;
}
