<style>
*{margin:0;padding:0;box-sizing:border-box;}

body{
    font-family:'Bitter', serif;
    background:#f4f6f8;
    padding:20px;
    color:#222;
}

.container{width:96%;
    max-width:1600px;
    margin:auto;}

.page-title{text-align:center;margin-bottom:25px;}
.page-title h1{font-size:32px;color:#1565c0;margin-bottom:8px;}
.page-title p{color:#777;font-size:14px;}

.card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.reference{
    font-size:14px;
    color:#777;
    margin-bottom:20px;
}

.verse-row{
    display:flex;
    align-items:baseline;
    gap:8px;
}

.verse-number{
    flex-shrink:0;
    color:#888;
    font-size:22px;
    font-weight:600;
    line-height:1.8;
}

.verse-text{
    flex:1;
    font-size:26px;
    line-height:1.2;padding-bottom: 10px;
}

.word{
    color:#000000;
    cursor:pointer;
    border-bottom:1px dotted #1565c0;
    transition:.2s;
}

.word:hover{
    background:#66FF66; font-size:125%;
}

#tooltip{
    position:fixed;
    display:none;

    width:min(700px,90vw);
    max-height:70vh;

    overflow-y:auto;
    overflow-x:hidden;

    background:#fff;
    color:#000;

    padding:20px;

    border:1px solid #999;
    border-radius:12px;

    box-shadow:0 10px 30px rgba(0,0,0,.3);

    z-index:99999;

    white-space:normal;
    word-break:break-word;

    line-height:1.2;
    font-size:20px;
}

.tooltip-title{
    color:#000080;
    font-size:32px;
    font-weight:bold;
    margin-bottom:10px;
}
.tooltip-row{margin-bottom:4px;}
.tooltip-label{font-weight:bold;}

@keyframes fadeIn{
    from{opacity:0;transform:translateY(8px);}
    to{opacity:1;transform:translateY(0);}
}

.footer{
    margin-top:40px;
    background:#fff;
    border-radius:12px;
    padding:25px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.footer-col h3{
    margin-bottom:10px;
    color:#1565c0;
	    font-size:20px;

}

.footer-col p{
    color:#666;
    line-height:1.1;
    font-size:20px;
}

@media(max-width:768px){

    body{padding:12px;}

    .card{padding:18px;}

    .page-title h1{font-size:24px;}

    .verse-number{font-size:18px;}

    .verse-text{
    font-size:22px;
    line-height:1.2; padding-bottom: 10px;
    }

    #tooltip{
        max-width:90vw;
        min-width:unset;
        font-size:20px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer{
        padding:18px;

    }
}

/* ===== BUTTON ===== */

.btn{
    display:inline-block;
    background: #0000CC;
    color:#fff;
    text-decoration:none;
    border:none;
    border-radius:8px;
    padding:10px 18px;
    font-family:'Bitter', serif;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:all .25s ease;
    box-shadow:0 2px 6px rgba(66,165,245,.25);
}

.btn:hover{
    background:#1e88e5;
    transform:translateY(-2px);
    box-shadow:0 4px 12px rgba(30,136,229,.35);
}

.btn:active{
    transform:translateY(0);
}

.btn:disabled{
    background:#b0bec5;
    cursor:not-allowed;
    box-shadow:none;
}

/* ===== BUTTON OUTLINE ===== */

.btn-outline{
    background:#fff;
    color:#1565c0;
    border:2px solid #42a5f5;
}

.btn-outline:hover{
    background:#42a5f5;
    color:#fff;
}

/* ===== BUTTON GROUP ===== */

.button-group{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:15px;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

    .btn{
        width:100%;
        text-align:center;
        padding:12px;
        font-size:15px;
    }

    .button-group{
        flex-direction:column;
        gap:8px;
    }
}
/* ===== INTRODUKSI ===== */

.intro-card{
    margin-top:25px;
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.intro-title{
    color:#1565c0;
    font-size:28px;
    margin-bottom:15px;
    border-bottom:2px solid #e3f2fd;
    padding-bottom:10px;
}

.intro-text{
    font-size:20px;
    line-height:1.2;
    color:#333;
    text-align:justify;
}

.intro-text p{
    margin-bottom:15px;
}

@media(max-width:768px){

    .intro-card{
        padding:20px;
    }

    .intro-title{
        font-size:22px;
    }

    .intro-text{
        font-size:18px;
        line-height:1.2;
    }
}
/* ===== INTRO DENGAN FOTO ===== */

.intro-profile{
    display:flex;
    gap:25px;
    align-items:flex-start;
}

.intro-photo{
    flex-shrink:0;
}

.intro-photo img{
    width:220px;
    height:auto;
    border-radius:12px;
    border:1px solid #ccc;
    box-shadow:0 2px 10px rgba(0,0,0,.15);
}

.intro-content{
    flex:1;
}

@media(max-width:768px){

    .intro-profile{
        flex-direction:column;
    }

    .intro-photo{
        text-align:center;
        width:100%;
    }

    .intro-photo img{
        width:180px;
        max-width:100%;
    }
}
.book-selector{
    margin-top:20px;
    text-align:center;
}

.book-selector select{
    width:100%;
    max-width:450px;
    padding:12px 15px;
    border:1px solid #d0d0d0;
    border-radius:8px;
    background:#fff;
    font-family:'Bitter', serif;
    font-size:16px;
    color:#333;
    cursor:pointer;
    outline:none;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    transition:.3s;
}

.book-selector select:hover{
    border-color:#0000FF;
}

.book-selector select:focus{
    border-color:#0000FF;
    box-shadow:0 0 10px rgba(0,0,255,.15);
}

@media(max-width:768px){

    .book-selector select{
        width:95%;
        font-size:15px;
        padding:10px 12px;
    }

}

</style>
