/* MOD PAGE CONTAINER */
.mod-list-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* MOD PAGE TITLE */
.page-title {
    text-align: center;
    font-size: 30px;
    color: #ff6600;
    font-weight: bold;
    margin-bottom: 30px;
}

/* MOD CARD */
.mod-card {
    background: #222;
    width: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(255, 102, 0, 0.5);
    transition: transform 0.3s ease-in-out;
}

.mod-card:hover {
    transform: translateY(-5px);
}

/* MOD IMAGE */
.mod-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* MOD DETAILS */
.mod-details {
    padding: 15px;
    text-align: center;
}

.mod-details h2 {
    font-size: 20px;
    color: #ff6600;
    margin-bottom: 10px;
}

.mod-details p {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 10px;
}

/* MOD INFO LIST */
.mod-info-list {
    list-style: none;
    padding: 0;
    font-size: 14px;
    color: #ccc;
    text-align: left;
    margin: 10px 0;
}

.mod-info-list li {
    padding: 5px 0;
    border-bottom: 1px solid #333;
}

/* DOWNLOAD BUTTON */
.download-btn {
    display: block;
    background: linear-gradient(to right, #ff6600, #ff3300);
    color: #fff;
    padding: 12px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    margin-top: 10px;
    transition: 0.3s;
}

.download-btn:hover {
    background: linear-gradient(to right, #ff3300, #ff6600);
    transform: scale(1.1);
}
