body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #f0f2f5;
            color: #333;
            margin: 0;
            padding: 2rem;
            display: flex;
            justify-content: center;
        }
        .container {
            width: 100%;
            max-width: 800px;
        }
        h1 {
            text-align: center;
            color: #1d2129;
            margin-bottom: 2rem;
        }
        .mod-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .mod-item {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            margin-bottom: 1rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .mod-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }
        .mod-link {
            display: block;
            padding: 1.5rem;
            text-decoration: none;
            color: #007bff;
            font-size: 1.1rem;
            font-weight: 500;
        }
        .mod-link:hover {
            text-decoration: underline;
        }
        .mod-link:visited {
            color: #551a8b;
        }

.page-link {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #007bff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.page-link:hover {
    text-decoration: underline;
    color: #0056b3;
}