    body {
        margin: 0;
        overflow: hidden;
        background: #ffffff;
    }

    #background {
        position: fixed;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: -1;
    }

    .circle {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        will-change: transform, opacity, filter;
    }



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Stetica", sans-serif;
}

@font-face {
    font-family: "Stetica";
    src: url("./fonts/AA_Stetica_Regular.otf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Stetica";
    src: url("./fonts/AA_Stetica_Bold.otf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Stetica";
    src: url("./fonts/AA_Stetica_Italic.otf") format("truetype");
    font-weight: 400;
    font-style: italic;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh; 
    position: relative;
}

.buttons {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mold {
    position: absolute;
    width: 400px;
    height: 450px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px) saturate(180%);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2), 
              inset 0 4px 20px rgba(255, 255, 255, 0.3);
    z-index: 0;
}

.logo-name {
    display: flex;
    align-items: center;
    z-index: 1;
    margin-bottom: 40px; /* Аккуратный отступ до кнопок */
}

.logo-img {
    z-index: 2;
    height: 67px;
    width: auto;
    margin-right: -80px;

    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2), 
              inset 0 4px 20px rgba(255, 255, 255, 0.3);

}

.logo-prikol {
    z-index: 7;
  transform: scale(23%);
  transform-origin: top left;
  width: 75px;
  height: 75px;
  margin-bottom: -7px;
  margin-right: -85px;
}
  
  
.ring {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 44px solid transparent;
    box-sizing: border-box;
}

.light-half-a {
    border-color: #8ac98aea;
    top: 10px;
    left: 52px;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
    z-index: 5;
    filter: blur(0)

}


.light-half-b {
    border-color: #8ac98aea;
    top: 9px;
    left: 51px;
    clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
    z-index: 3;
    filter: blur(0)
}

.dark-half-a  {
    border-color: #1d7833ea;
    top: 41px;
    left: 21px;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
    z-index: 4;

}

.dark-half-b  {
    border-color: #1d7833ea;
    top: 40px;
    left: 20px;
    clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
    z-index: 4;

}

.title-name {
    position: relative;
    z-index: 1;
    font-size: 30px;
    font-weight: 700;
    color:#000000b6;
    text-shadow: 10px 10px 10px 10px black;

    margin-top: 0px;
    padding: 20px 20px;
    padding-left: 90px;

    border-radius: 20px;


    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2), 
              inset 0 4px 20px rgba(255, 255, 255, 0.3);
    

}


button {
    padding: 12px 30px;
    border-radius: 20px;
    font-size: 23px;
    cursor: pointer;
    transition: 0.2s;

    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2), 
              inset 0 4px 20px rgba(255, 255, 255, 0.3);
}


.btn-outline {
    background-color: rgba(255, 255, 255, 0.74);
    border: 1px solid #48e496;
    color: #48e496;
    margin-bottom: 30px;
}

.btn-outline:hover {
    background-color: #e8fcef;
}

.btn-outline:active {
    background-color: #3ec07f;
    color: white;
}

.question {
    z-index: 10;
    font-size: 30;
    font-weight: 400;
    padding: 10px 20px;
    border-radius: 50%;
    color:#3ec07f;
    border-color:#3ec07f;

    margin-top: -100px
}


@media (max-width: 768px) {
    .mold {
        width: 90%;          /* Резиновая ширина */
        max-width: 360px;    /* Ограничитель */
        height: 450px;
        min-height: unset;
        min-width: unset;
        margin-top: 0;       /* Убрали твои 30% */
    }

    .title-name {
        z-index: 1;
        font-size: 24px;
        font-weight: 700;
        color: #000000b6;
        text-shadow: 10px 10px 10px 10px black;
        
        /* Убрали адский calc(100% + 100px) */
        width: auto; 
        height: auto;
        padding: 20px 20px 20px 80px; /* Оставили место слева под кольца */
        
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(2px);
        box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2), 
                  inset 0 4px 20px rgba(255, 255, 255, 0.3);
    }
}