.modules-page {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 120px 20px 80px;
    background: transparent;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.modules-container {
    max-width: 900px;
    width: 100%;
}

.modules-header {
    text-align: center;
    margin-bottom: 40px;
}

.modules-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.modules-title .highlight {
    background: linear-gradient(90deg, #f0e6ff, #e6f0ff, #ffe6f0, #e6ffe6, #fff5e6, #f0e6ff);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerSoft 8s ease-in-out infinite;
    display: inline-block;
}

@keyframes shimmerSoft {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.modules-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.modules-table-wrapper {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    overflow-x: auto;
}

.modules-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.modules-table thead {
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modules-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modules-table th:not(:first-child) {
    text-align: center;
}

.modules-table td {
    padding: 14px 20px;
    font-size: 15px;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.modules-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.modules-table tbody tr:last-child td {
    border-bottom: none;
}

.modules-table .module-name {
    font-weight: 500;
    color: white;
}

.modules-table .module-status {
    text-align: center;
}

.modules-table .module-status .material-symbols-outlined {
    font-size: 22px;
    vertical-align: middle;
}

.modules-table .module-status .check-icon {
    color: #4ade80;
}

.modules-table .module-status .close-icon {
    color: #f87171;
}

.modules-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.modules-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.modules-legend-icon {
    font-weight: 700;
}

.modules-legend-icon.check {
    color: #4ade80;
}

.modules-legend-icon.cross {
    color: #f87171;
}

@media (max-width: 768px) {
    .modules-page {
        padding: 80px 16px 60px;
    }

    .modules-title {
        font-size: 32px;
    }

    .modules-table th,
    .modules-table td {
        padding: 12px 14px;
        font-size: 13px;
    }
}

.modules-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 10px;
}

.modules-button-wrapper .root-base-button {
    padding: 14px 48px;
    background: #4361ee;
    color: white;
    border: none;
    border-radius: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.modules-button-wrapper .root-base-button:hover {
    background: #6d86ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(67, 97, 238, 0.3);
}