/* RESET & DESAIN UMUM */
* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f4f7fe;
    padding: 20px;
    color: #2b3674;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* HEADER & PROFIL */
.header {
    background: linear-gradient(135deg, #4318ff, #6ad2ff);
    color: white;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.user-info h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.star-points {
    background: #ffce20;
    color: #2b3674;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 15px;
}

/* BANNER PENGUMUMAN */
.banner {
    background: #ffeb3b;
    padding: 15px 20px;
    border-radius: 15px;
    font-weight: bold;
    color: #5d4037;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* GRID MENU UTAMA */
.grid-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.03);
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #4318ff;
}

.icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.card h3 {
    margin-bottom: 5px;
    font-size: 16px;
}

.card p {
    font-size: 13px;
    color: #64748b;
}

/* KOTAK KELASKU */
.kelasku-section {
    background: white;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.03);
}

.kelasku-section h2 {
    margin-bottom: 20px;
    font-size: 20px;
    border-bottom: 2px solid #f4f7fe;
    padding-bottom: 10px;
}

.kelasku-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.kelasku-card {
    background: #f8fafc;
    padding: 18px;
    border-radius: 15px;
    border: 1px dashed #cbd5e1;
}

.kelasku-card h4 {
    margin-bottom: 12px;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.kelasku-card ul {
    list-style: none;
    font-size: 14px;
}

.kelasku-card li {
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e2e8f0;
}

/* SECTION BAWAH */
.bottom-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.box {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.03);
}

.box h3 {
    margin-bottom: 15px;
    border-bottom: 2px solid #f4f7fe;
    padding-bottom: 10px;
}

.item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    font-size: 14px;
}