
body{
    background:#0a0a0a;
}

.hbkal-wrap{
    max-width:1200px;
    margin:40px auto;
    background:#111;
    border-radius:18px;
    overflow:hidden;
    color:#fff;
    border:1px solid #222;
    font-family:Arial,sans-serif;
}

.hbkal-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    background:#151515;
    border-bottom:1px solid #222;
}

.hbkal-title-wrap h2{
    margin:0;
    font-size:28px;
}

.hbkal-title-wrap p{
    margin:4px 0 0;
    color:#888;
    font-size:13px;
}

.hbkal-controls{
    display:flex;
    gap:10px;
    align-items:center;
}

.hbkal-filter{
    background:#1b1b1b;
    color:#fff;
    border:1px solid #333;
    padding:10px;
    border-radius:10px;
}

.hbkal-btn{
    background:#d6111e;
    color:#fff;
    border:none;
    padding:10px 14px;
    border-radius:10px;
    cursor:pointer;
    font-weight:bold;
}

.hbkal-month{
    text-align:center;
    padding:18px;
    background:#121212;
    color:#d6111e;
    font-size:26px;
    font-weight:900;
    border-bottom:1px solid #222;
}

.hbkal-weekdays{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    background:#181818;
}

.hbkal-weekdays div{
    text-align:center;
    padding:14px;
    font-weight:bold;
    color:#aaa;
    border-bottom:1px solid #222;
}

.hbkal-grid{
    display:grid;
    grid-template-columns:repeat(7,1fr);
}

.hbkal-day{
    min-height:140px;
    border:1px solid #1f1f1f;
    padding:8px;
    position:relative;
}

.hbkal-today-highlight{
    background:#1d0d0f;
    box-shadow:inset 0 0 0 2px #d6111e;
}

.hbkal-day-number{
    font-weight:bold;
    margin-bottom:8px;
}

.hbkal-event{
    color:#fff;
    padding:6px 8px;
    border-radius:8px;
    margin-bottom:5px;
    font-size:12px;
    font-weight:bold;
    cursor:pointer;
}

.hbkal-modal{
    position:fixed;
    inset:0;
    display:none;
    justify-content:center;
    align-items:center;
    z-index:999999999;
}

.hbkal-backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.88);
    backdrop-filter:blur(8px);
}

.hbkal-modal-box{
    position:relative;
    width:92%;
    max-width:820px;
    background:#121212;
    border-radius:20px;
    overflow:hidden;
    z-index:1000000000;
    border:1px solid #2a2a2a;
}

.hbkal-modal-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 20px;
    background:#181818;
    border-bottom:1px solid #2a2a2a;
}

.hbkal-modal-title{
    color:#d6111e;
    font-size:22px;
    font-weight:900;
}

.hbkal-close{
    background:none;
    border:none;
    color:#d6111e;
    font-size:42px;
    font-weight:bold;
    cursor:pointer;
}

.hbkal-modal-content{
    padding:20px;
    max-height:70vh;
    overflow:auto;
}

.hbkal-item{
    padding:18px 0;
    border-bottom:1px solid #222;
}

.hbkal-item-title{
    font-size:18px;
    font-weight:bold;
    color:#fff;
}

.hbkal-item-type{
    display:inline-block;
    margin-top:8px;
    padding:4px 8px;
    border-radius:8px;
    font-size:11px;
    font-weight:bold;
    background:#222;
}

.hbkal-item-excerpt{
    margin-top:10px;
    color:#aaa;
    line-height:1.5;
}

.hbkal-item-link{
    display:inline-block;
    margin-top:14px;
    background:#d6111e;
    color:#fff;
    text-decoration:none;
    padding:10px 14px;
    border-radius:10px;
    font-weight:bold;
}
