/* --- Modern Main Page Styling --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f0f4f8;
    margin: 0;
    padding: 40px 0;
    color: #2d3748;
}

#title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

h1 {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(to right, #4776e6, #8e54e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#button {
    display: flex;
    gap: 12px;
}

#button button {
    background: white;
    color: #4776e6;
    border: 2px solid #4776e6;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

#button button:hover {
    background: #4776e6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(71, 118, 230, 0.2);
}

/* --- Surah List Grid --- */
#list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.surah {
    background: white;
    padding: 25px;
    border-radius: 20px;
    text-align: right; /* Menjaga teks Arab tetap di kanan */
    cursor: pointer;
    transition: 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.surah:hover {
    transform: translateY(-5px);
    border-color: #4776e6;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

/* Styling Isi Kartu */
.surah .arabic {
    font-size: 24px;
    font-weight: 700;
    color: #4776e6;
    margin: 0 0 10px 0;
}

.surah .latin {
    font-size: 18px;
    font-weight: 800;
    color: #2d3748;
    margin: 0;
    text-align: left; /* Nama latin di kiri */
}

.surah .meaning {
    font-size: 13px;
    color: #718096;
    margin: 5px 0 0 0;
    text-align: left; /* Arti di kiri */
}

/* Badge Nomor Surah */
.surah-num {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #f1f5f9;
    color: #4776e6;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
}