* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'ABChanelCorpoExtraLight';
}


body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100dvh;
    background: white;
    color: black;
    overflow: hidden;
    position: relative;
}

#playcanvas-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    object-fit: contain;
    border: 0;
}

#header {
    position: relative;
    font-size: 24px;
    font-family: "ABChanelCorpoLight";
    font-weight: 500;
    text-align: center;
    padding: 20px 10px 10px 10px;
    /* padding-top: 20px; */
    z-index: 1000;
    background: white;
    width: 100%;
    cursor: pointer;
}

#header-blur {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    /* padding-top: 10px; */
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(3px);
    z-index: 1000;
} 

#header-blur button {
    background: transparent;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
} 

#header-blur button img{
    width: 25px;
    height: 25px;
} 

#description-blur {
    display: none;
    margin-top: 5px;
    text-align: center;
    width: 85%;
    font-family: "ABChanelCorpoExtraLight";
    font-size: 13px;
    line-height: 160%;
    z-index: 1;
}

#content {
    display: none;
    flex-direction: column;
    justify-content: start;
    /* align-items: center; */
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30%;
    padding: 20px 31px;
    background: rgba(255, 255, 255, 0.2);
    color: black;
    backdrop-filter: blur(3px) brightness(1.2);
    overflow: visible;
    z-index: 1000;
} 


#content #cross-content {
    background: url(../images/semi-circle.png) no-repeat center center;
    background-size: contain;
    /* backdrop-filter: blur(30px) brightness(1.2); */
    position: absolute;
    right: 12%;
    top: -19px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    z-index: 1003;
    background-color: transparent;
    opacity: 0.6;
}


#content #cross-content img {
    margin-top: 13px;
    width: 12px;
    height: 12px;
}

#content h2 {
    text-align: center;
    width: 100%;
    height: auto;
    font-size: 20px;
}

#content .scrollable-content {
    width: 100%;
    height: auto;
    overflow-y: auto;
    margin-bottom: 32px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#content #show-more {
    padding-left: 5px;
    width: 100%;
    display: flex;
    justify-content: flex-start; /* Align content to the left */
    width: 100%; /* Ensure div takes full width */
    
}

#content #show-more button{
    background: transparent;
    display: flex;
    align-items: center; /* Align image & text in one line */
    gap: 8px; /* Add space between image and text */
    border: none;
    background: none;
    cursor: pointer;
}

#content #show-more img{
    width: 15px;
    height: 15px;
}

#content #show-more p{
    text-decoration: underline;
    font-size: 13px;
    font-family: "ABChanelCorpoExtraLight";
    text-underline-offset: 3px;
    font-weight: bold;
}

.left-button {
    position: absolute;
    left: 0;
}

.right-button {
    position: absolute;
    right: 0;
    transform: rotate(180deg);
}

ul {
    /* display: none; */
    margin-top: 5%;
    list-style: inside;
    padding: 10px;
    text-align: left;
}

ul li {
    font-size: 13px;
    margin-bottom: 5px;
}

#plus-button {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#plus-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#language-selector {
    position: absolute;
    /* top: 64px; */
    width: 100%;
    height: 100dvh;
    display: none;
    
    padding: 10px 38px;
    padding-top: 100px;
    background: white;
    z-index: 2000;
    
}

#language-buttons{
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    height: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#language-selector h1{
    position: absolute;
    top: 18px;
    left: 50%;
    translate: -50%;
    text-align: center;
    font-size: 26px;
    font-family: "ABChanelCorpoRegular";
    font-weight: 100;
    width: 100%;
}

#language-selector .cross-button{
    position: absolute;
    top: 55px;
    left: 50%;
    translate: -50%;
    text-align: center;
    background: transparent;
    cursor: pointer;
}

#language-selector .cross-button img{
    height: 25px;
    width: 25px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px;
    border: 2px solid transparent;
    /* background: #f0f0f0; */
    backdrop-filter: blur(3px) brightness(1.2);
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

.flag-img {
    width: 24px;
    height: 16px;
    object-fit: contain;
}

.lang-btn.selected {
    border: 2px solid black;
    background: #e0e0e0;
}

img {
    -webkit-user-select: none; /* Prevents text selection on WebKit browsers */
    -moz-user-select: none; /* Prevents text selection on Firefox */
    -ms-user-select: none; /* Prevents text selection on Microsoft Edge */
    user-select: none; /* Standard way to prevent text selection */
    pointer-events: none; /* Prevents interaction with the image */
    -webkit-touch-callout: none; /* Prevents the long-press menu on iOS */
}

button {
    -webkit-tap-highlight-color: transparent; /* Removes blue highlight on tap */
    outline: none; /* Prevents outline on click */
    border: none; /* Optional: If there’s an unwanted border */
}