body {
    margin: 0;
    padding: 0;

    background-color: azure;

    display: flex;
    justify-content: center;
    align-items: center;
}

@font-face {
    font-family: 'Futura';
    src: url(fonts/FuturaBT-Light.otf);
}

@font-face {
    font-family: 'TranjanPro';
    src: url(fonts/trajanpro_bold.otf);
}


.panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;

    z-index: 9999;

    background-color: #437fee;

    display: flex;
    align-items: center;
}

.title {
    margin-left: 30px;
    margin-top: 27px;
    color: azure;
    font-family: 'TranjanPro', Arial, Helvetica, sans-serif;
    font-size: 27px;
}

@media (max-width:768px) {
    .title {
        font-size: 22px;
        margin-left: 17px;
        margin-top: 27px;
    }
}

.right-elm-panel {
    margin-left: auto;
    margin-right: 30px;

    display: flex;
    flex-direction: row;
    gap: 10px;
}

@media (max-width:768px) {
    .right-elm-panel {
        margin-right: 12px;
        gap: 5px;
    }
}

.settings-btn {
    width: 40px;
    height: 40px;

    background-color: transparent;
    border-radius: 100px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.settings-btn:hover {
    background-color: #296dec;
}

.settings-btn img {
    width: 25px;
    height: 25px;

    filter: brightness(0) invert(1);
}

.menu-btn {
    width: 40px;
    height: 40px;

    background-color: transparent;
    border-radius: 100px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-btn:hover {
    background-color: #296dec;
}

.menu-btn img {
    width: 32px;
    height: 32px;

    filter: brightness(0) invert(1);
}

.profile {
    width: 40px;
    height: 40px;

    background-color: transparent;
    border-radius: 100px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.profile:hover {
    background-color: #296dec;
}

.profile img {
    width: 32px;
    height: 32px;
    border-radius: 100px;
}


.content {
    width: 95%;
    height: auto;
    margin-top: 85px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width:768px) {
    .content {
        width: 90%;
    }
}

.title-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width:768px) {
    .title-container {
        margin-top: 70px;
        transform: scale(2);
    }
}

.title-top {
    margin: 0;
    color: #006eff;
    font-family: 'Futura', Arial, Helvetica, sans-serif;
}

.title-content {
    margin-top: 4px;
    margin-bottom: -4px;
    line-height: 40px;
    color: #006eff;
    text-align: center;
    font-family: 'TranjanPro', Arial, Helvetica, sans-serif;
    font-size: 40px;
}

.title-bottom {
    margin: 0;
    color: #006eff;
    font-family: 'Futura', Arial, Helvetica, sans-serif;
}


.play-game-container {
    margin-top: 130px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.support-only-pc-text {
    margin-top: 35px;
    color: #006eff;
    text-align: center;
    font-family: 'TranjanPro', Arial, Helvetica, sans-serif;
    font-size: 12px;
}

@media (max-width:768px) {
    .play-game-container {
        margin-top: 70px;
        flex-direction: column;
        gap: 20px;
    }

    .support-only-pc-text {
        margin-top: 30px;
    }
}

.play-btn {
    width: 185px;
    height: 30px;
    padding: 10px 55px;
    border-radius: 10px;

    background-color: #006eff;
    box-shadow: 0 5px 20px #006eff84;

    color: azure;
    text-decoration: none;
    font-family: 'Futura', Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: bold;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: box-shadow 0.6s ease, transform 0.3s ease;
}

.play-btn:hover {
    box-shadow: 0 5px 20px #006eff;
    transform: translateY(-5px);
}

.download-game {
    position: relative;
    width: 250px;
    height: 30px;
    padding: 10px 10px 10px 35px;
    border-radius: 10px;

    background-color: #006eff;
    box-shadow: 0 5px 20px #006eff84;

    color: azure;
    text-decoration: none;
    font-family: 'Futura', Arial, Helvetica, sans-serif;
    font-size: 22px;
    font-weight: bold;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: box-shadow 0.6s ease, transform 0.3s ease;
}

@media (max-width:768px) {
    .download-game {
        font-size: 17px;
    }
}

.download-game::before{
    content:"";
    position:absolute;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    width: 23px;
    height: 23px;

    background-color:#fff; /* ЦВЕТ SVG */

    -webkit-mask: url("images/windows.svg") no-repeat center;
    mask: url("images/windows.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.download-game:hover {
    box-shadow: 0 5px 20px #006eff;
    transform: translateY(-5px);
}

.socials {
    margin-top: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
}

@media (max-width:768px) {
    .socials {
        flex-direction: column;
        gap: 15px;
    }
}

.telegram {
    position: relative;
    width: 130%;
    padding: 10px 40px 10px 50px;
    border-radius: 10px;

    color: azure;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #26A5E4;
    transition: box-shadow 0.6s ease, transform 0.3s ease;
}

.telegram:hover {
    box-shadow: 0 5px 20px #26A5E4;
    transform: translateY(-5px);
}

.telegram::before{
    content:"";
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    width: 23px;
    height: 23px;

    background-color:#fff; /* ЦВЕТ SVG */

    -webkit-mask: url("images/telegram.svg") no-repeat center;
    mask: url("images/telegram.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.instagram {
    position: relative;
    width: 130%;
    padding: 10px 40px 10px 50px;
    border-radius: 10px;

    color: azure;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #FF0069;
    transition: box-shadow 0.6s ease, transform 0.3s ease;
}

.instagram:hover {
    box-shadow: 0 5px 20px #FF0069;
    transform: translateY(-5px);
}

.instagram::before{
    content:"";
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    width: 23px;
    height: 23px;

    background-color:#fff; /* ЦВЕТ SVG */

    -webkit-mask: url("images/instagram.svg") no-repeat center;
    mask: url("images/instagram.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.youtube{
    width: 130%;
    padding: 10px 40px 10px 50px; /* место под иконку */
    border-radius: 10px;

    color: azure;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #FF0000;
    position: relative; /* ОБЯЗАТЕЛЬНО */
    transition: box-shadow 0.6s ease, transform 0.3s ease;
}

.youtube:hover {
    box-shadow: 0 5px 20px #FF0000;
    transform: translateY(-5px);
}

.youtube::before{
    content:"";
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    width: 23px;
    height: 23px;

    background-color:#fff; /* ЦВЕТ SVG */

    -webkit-mask: url("images/youtube.svg") no-repeat center;
    mask: url("images/youtube.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

@media (max-width: 768px) {
  .telegram::before,
  .instagram::before,
  .youtube::before {
    left: 85px;
  }
}


.end-text {
    color: #006effbd;
    margin-top: 50px;

    font-family: 'TranjanPro', Arial, Helvetica, sans-serif;
    font-size: 13px;
}