html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #15115d;
    overflow: hidden;
}

body {
    font-family: Arial, sans-serif;
    position: relative;
}

.container {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #15115d;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(150deg, #B031B2, #452DA9, #0C0B4D);
    display: flex;
    justify-content: center;
    align-items: center;
}

.dialog-box {
    display: none;
    background: #372b70;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    color: white;
    width: 300px;
    background: linear-gradient(#6F3FCF, #3A3672);
}

.loading-text {
    margin-bottom: 20px;
    font-size: 18px;
    color: white;
}

.dialog-text {
    margin-bottom: 20px;
    font-size: 18px;
    color: white;
}

.buttons {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
}

.button-yes, .button-no {
    background-color: transparent;
    border: 2px solid #6030f0;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.3s ease-out;
}

.button-yes:hover, .button-no:hover {
    background-color: #6633FF;
}

#rulesFrame {
    position: absolute;
    transform-origin: 50% 50%;
    transform: scale(0);
    z-index: 1;
    display: none;
}