body {
    color: #000000;
    background: var(--tg-theme-bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    font-family: 'Manrope', sans-serif;
}



.button {
    text-align: center;
    margin-top: 5px;
    width: 100%;
    max-width: 350px;
    border: none;
    border-radius: 11px;
    line-height: 53px;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.button-primary {
    background-color: #FFEA00;
    color: #000000;
}

.button-secondary {
    background-color: #f4f5f7;
    color: #000000;
}

.button:hover {
    cursor: pointer;
}

.section {
    text-align: center;
    width: 100%;
    max-width: 390px;
}

#video-container {
    display: flex;
    justify-content: center;
    position: relative;
}

#video {
    width: 100%;
    height: auto;
    transform: scaleX(-1);
}

.oval {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 2px #ff0000 solid;
    width: 180px;
    height: 250px;
    border-radius: 50%;
}

.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}