body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: sans-serif;
}

/* Modal Container */
#info-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 9999;
    max-width: 400px;
    text-align: center;
    border: 1px solid #fff;
    width: 90%;
}

.modal-content {
    position: relative;
}

#close-btn {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}

#close-btn:hover {
    color: #fff;
}

h2 {
    margin-top: 0;
    color: #FFD700;
}

p {
    line-height: 1.6;
}