html {
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE and Edge */
    overflow-x: hidden !important; /* Предотвращаем горизонтальный скролл */
    overflow-y: auto !important; /* Разрешаем вертикальный скролл */
}

html::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, and Edge */
}

body {
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE and Edge */
    overflow-x: hidden !important; /* Предотвращаем горизонтальный скролл */
    overflow-y: auto !important; /* Разрешаем вертикальный скролл */
    font-family: "system-ui","-apple-system","BlinkMacSystemFont","Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Open Sans","Helvetica Neue","sans-serif";
    background-color: #533A6A !important;
    background-image: url('/static/img/background_purple.png') !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
}

body::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, and Edge */
}
.header {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: visible;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: left;

}

.sw-logo {
    width: 100px;
    margin-left: 20px;
    margin-top: 30px;
}
.title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: 20px;
    color: #fff;
}

.description {
    font-size: 0.8rem;
    line-height: 1.2;
    color: #e8e8e8;
    margin-bottom: 10px;
    margin-left: 20px;
    max-width: 230px;
}

.santa-image{
    position: absolute;
    bottom: -20%;
    right: -40%;
    width: 100%;
    z-index: -1;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}


.container {
    width: calc(100% - 40px) !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
    margin-bottom: 20px !important;
    padding: 5px !important;
    padding-bottom: 20px;
    background-color: #412350;
    border-radius: 30px;
}

.img-wraper {
    padding: 8px !important;
}

#card-container {
    margin: 0 !important;
    
}
.card-image{
    width: 100%;
    border-radius: 17px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    /* margin-bottom: 10px; */
}






.close-btn-wraper {
    display: flex;
    justify-content: right;
}

.close-btn-my {
    margin-top: 5px;
    margin-right: 5px;
    width: 40px;
    height: 40px;
}
.modal-content {
    border-radius: 17px !important;
}
.modal-content .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#modalCardImg {
    width: 60%; 
    padding: 10px;
    border: rgba(0, 0, 0, 0.1) solid 3px;
    border-radius: 23px;
    margin-bottom: 15px;
}

#modalCardImg.contest-banner {
    width: 90% !important;
    max-width: 90% !important;
}
#howItWorksModal p {
    text-align: center;
}

.card-button {
    background-color: #512567;
    color: #fff;
    border-radius: 13px;
    border: 0;
    padding: 10px 16px 10px 16px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 0px #32123A;
}


.video-btn-close {
    position: absolute;
    right: 10px;
    width: 40px;
    height: 40px;

}






#text-container p {
    text-indent: 30px;
}
#get-video-btn {
    display: none;
}






.video-modal-content {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    background: transparent; /* Убирает лишний фон, если нужно */
    border: none; /* Убирает границы */
  }

.video-modal-content {
height: 100vh; /* Высота экрана */
border: none;
border-radius: 0; /* Убирает закругления углов */
display: flex;
justify-content: center;
align-items: center;
}
.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none; /* Убирает рамку у iframe */
}


  .video-modal-dialog {
    max-width: 100%;
    width: 100%;
    height: 95%;
    margin: 0;
    padding: 0;
  }



  .video-btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 10;
}