body {
    background: #050506;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    font-family: "Murecho", sans-serif;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(40, 34, 32, 0.9) 0%, rgba(5, 5, 6, 1) 100%);
    z-index: 2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./bg.jpeg') no-repeat center center;
    background-size: cover;
    z-index: 1;
    filter: blur(10px);
}

.hidden {
    visibility: hidden;
    width: 0;
    height: 0;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    z-index: 2;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
}

.logo img {
    max-width: 600px;
    width: 100%;
}

.description {
    text-align: center;
    color: #fff;
    font-size: 20px;
    line-height: 1.2;
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    p {
        margin: 0;
    }
}

.description__text {
    font-size: 16px;
    width: 100%;
    line-height: 1.5;
    max-width: 800px;
    text-align: center;
    margin-top: 20px !important;
}

.actions {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.actions__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.social-button {
    display: inline-block;
    width: 32px;
    height: 32px;
    color: #fff;
    transition: opacity 0.3s ease;
}

.social-button:hover {
    opacity: 0.7;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #ff8c1a 0%, #f15f2c 100%);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 10px 20px;
    margin-left: 20px;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.primary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.18) 40%, rgba(255,255,255,0.32) 50%, rgba(255,255,255,0.18) 60%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 1;
    animation: shine-cycle 5.2s linear infinite;
}

@keyframes shine-cycle {
    0% {
        left: -60%;
    }
    42.3% {
        left: 110%;
    }
    100% {
        left: 110%;
    }
}

@keyframes shine-move {
    0% {
        left: -60%;
    }
    80% {
        left: 110%;
    }
    100% {
        left: 110%;
    }
}

@keyframes shine-pause {
    0% {
        left: 110%;
    }
    100% {
        left: 110%;
    }
}

.primary-button:hover {
    filter: brightness(1.2);
}

.primary-button__icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 10px;
    margin-top: 2px;
}

.primary-button__text {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 16px;
    line-height: 1.2;
    color: #fff;
    font-weight: 600;
}

.primary-button__text span:last-child {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
}

.footer {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
}

.footer_container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: rgba(25, 20, 16, 0.5);
    padding: 10px 24px 10px 12px;
    border-radius: 10px;
    width: fit-content;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.footer__icon {
    width: 32px;
    height: 32px;
    color: orange;
}

.footer__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

@media (max-height: 820px) {
 .container {
    padding-bottom: 90px;
 }   
}

@media (max-width: 768px) {
    .actions {
        flex-direction: column;
        gap: 30px;
    }

    .primary-button {
        margin-left: 0;
    }

    .description__text {
        font-size: 12px;
    }

    .description {
        font-size: 16px;
    }

    .logo img {
        max-width: 300px;
    }
    
}