.header {
    text-align: center;
    margin-bottom: 30px;
}

.search-bar {
    margin-bottom: 20px;
    text-align: center;
}

#searchInput {
    width: 300px;
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.mods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.mod-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    text-align: center;
}

.mod-card:hover {
    transform: translateY(-5px);
}

.mod-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
}

.mod-title {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

.mod-stats {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 14px;
}

.mod-description {
    margin-top: 10px;
    font-size: 14px;
    color: #444;
    max-height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mod-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.mod-button:hover {
    background-color: #0056b3;
}