.student-space{
    max-width:900px;
    margin:40px auto;
    padding:30px;
    border-radius:24px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.student-space h2{
    margin-bottom:25px;
    font-size:28px;
    font-weight:700;
    text-align:center;
    color:#16a34a;
}

.student-space ul{
    list-style:none;
    padding:0;
    margin:0;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:18px;
}

.student-space li{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.35s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.student-space li:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(108,99,255,.20);
}

.student-space li a{
    display:flex;
    align-items:center;
    gap:15px;
    padding:20px;
    text-decoration:none;
    color:#222;
    font-weight:600;
    font-size:15px;
}

.student-space li i{
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:#00b90f;
    color:#fff;
    font-size:20px;
}

.student-message{
    max-width:700px;
    margin:30px auto;
    padding:18px 25px;
    border-radius:15px;
    background:#fff1f2;
    border-left:5px solid #dc2626;
    color:#991b1b;
    font-weight:600;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}