body {
    background-image: url("assets/IndonesianSupremeCourt.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    font-family: Arial, sans-serif;
    align-items: center;
}

.text-center {
    text-align: center;
}

.center-wrapper {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.center-logo {
    width: 210px;
    background-color: white;
    border-radius: 60%;
    padding: 12px;
}

.uppercase {
    text-transform: uppercase;
}

.navbar {
    padding: 8px 10px;
    background-color: black;
    color: aliceblue;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.navbar h2 {
    margin: 4px 0;
    line-height: 1.2;
    font-size: 20px;
}

.smaller {
    width: 80px;
    margin-bottom: 6px;
}

.fake-body {
    margin: 25px;
    border: 10px solid black;
    backdrop-filter: blur(25px);

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;  
}

blockquote {
    font-style: italic;
    font-size: larger;
    background: #CE8F3F;
    background: linear-gradient(16deg,rgba(206, 143, 63, 1) 0%, rgba(255, 213, 101, 1) 100%);
    margin: 6px 0 0;    
    padding: 8px 12px;
    font-size: 24px;
    border-radius: 12px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;  
}

.nowrap {
    white-space: break-spaces;
}

.box-inline {
    width: 220px;
    padding: 15px;
    margin: 25px;
    border: 5px solid white;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    cursor: pointer;
    transition: 0.3s ease;
}

.box-inline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.box-image img {
    width: 100%;
    height: 140px;
    object-fit: contain;
}

.box-title h2 {
    margin-top: 15px;
    font-size: 16px;
}

.box-link {
    text-decoration: none;
    color: inherit;
}

.video-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;

    border-radius: 50%;
    border: none;
    background-color: red;
    color: white;
    font-size: 20px;

    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.video-btn:hover {
    transform: scale(1.1);
}

.video-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);

    display: none;
    flex-direction: row;

    z-index: 2000;
}

.video-overlay video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;
    color: white;
    background-color: red;
    border: none;
    border-radius: 50%;
    cursor: pointer;

    z-index: 2001;
}

.close-btn:hover {
    transform: scale(1.1);
    background-color: darkred;
}

.close-btn:focus {
    outline: none;
}

.video-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.playlist {
    width: 220px;
    background: rgba(0,0,0,0.85);
    margin-top: 90px;
    padding: 20px;

    display: flex;
    flex-direction: column;
    gap: 12px;

    position: absolute;
    right: -300px;
    top: 0;
    height: 100%;

    transition: right 0.3s ease;
}

.playlist.show {
    right: 0;
    margin-top: 90px;
}

.playlist-toggle {
    position: absolute;
    top: 20px;
    right: 90px;

    width: 45px;
    height: 45px;
    border-radius: 50%;

    font-size: 24px;
    background: #CE8F3F;
    border: none;
    cursor: pointer;
    z-index: 2002;
}

.playlist button {
    padding: 12px;
    background: #CE8F3F;
    border: none;
    color: black;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
}

.playlist button:hover {
    background: #FFD565;
}