@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap');

html {
    box-sizing: border-box;
}

*,
*::before,
::after {
    box-sizing: inherit;
}
a {
    color: inherit;
    text-decoration: none;
}
body {
    margin: 0 auto;
    padding: 0;
    font-family: 'Lora', serif;
    font-weight: 400;
    background-color: #333;
}
ul {
    display: inline-block;
    margin: 0;
    padding: 0;
}
li {
    list-style-type: none;
}

.elevation__header {
    width: 100%;
    background: linear-gradient(90deg, #6a0dad, #000);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    box-shadow: 0 0 20px #6a0dad;
    position: relative;
}

.elevation__logo img {
    width: 80px;
}

.elevation__nav {
    display: flex;
    gap: 20px;
}

.elevation__nav-lst {
    list-style: none;
    display: flex;
    gap: 20px;
}

.elevation__nav-lst a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-family: 'Lora', serif;
    transition: 0.3s;
    text-transform: uppercase;
}

.elevation__nav-lst a:hover {
    text-shadow: 0 0 10px #fff;
}

.elevation__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.elevation__burger div {
    width: 30px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

.elevation__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #6a0dad;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    box-shadow: 0 0 20px #6a0dad;
}

.elevation__menu a {
    color: white;
    font-size: 20px;
    font-family: 'Lora', serif;
}

@media (max-width: 760px) {
    .elevation__nav {
        display: none;
    }

    .elevation__burger {
        display: flex;
    }

    .elevation__menu.active {
        display: flex;
        z-index: 5;
        animation: slideIn 0.5s ease-in-out;
    }

    @keyframes slideIn {
        from { transform: translateX(-100%); opacity: 0; }
        to { transform: translateX(0); opacity: 1; }
    }
}
.elevation__hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../elevation-img/elevation-main-high.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.elevation__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.elevation__content {
    position: relative;
    color: white;
    max-width: 700px;
    padding: 20px;
    text-shadow: 0 0 10px #fff;
}

.elevation__title {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #ff00ff;
    text-shadow: 0 0 20px #ff00ff;
}

.elevation__text {
    font-family: 'Lora', serif;
    font-size: 20px;
    margin-bottom: 25px;
    color: #fff;
}

.elevation__button {
    display: inline-block;
    padding: 15px 30px;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    background: #6a0dad;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px #6a0dad;
    transition: 0.3s;
    text-decoration: none;
    border-radius: 5px;
}

.elevation__button:hover {
    box-shadow: 0 0 30px #ff00ff;
    background: #ff00ff;
}

@media (max-width: 768px) {
    .elevation__title {
        font-size: 32px;
    }

    .elevation__text {
        font-size: 18px;
    }
}

.elevation__about {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(90deg, #6a0dad, #000);
    padding: 50px;
    gap: 50px;
}

.elevation__about-left, .elevation__about-right {
    flex: 1;
    max-width: 600px;
}

.elevation__about-title {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    text-transform: uppercase;
    color: #ff00ff;
    text-shadow: 0 0 20px #ff00ff;
    margin-bottom: 15px;
}

.elevation__about-text {
    font-family: 'Lora', serif;
    font-size: 18px;
    min-height: auto;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 20px;
}

.elevation__about-button {
    display: inline-block;
    padding: 15px 30px;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    background: #6a0dad;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px #6a0dad;
    transition: 0.3s;
    text-decoration: none;
    border-radius: 5px;
}

.elevation__about-button:hover {
    box-shadow: 0 0 30px #ff00ff;
    background: #ff00ff;
}

.elevation__about-right {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    height: 450px;
    box-shadow: 0 0 20px #ff00ff;
    animation: glow 1.5s infinite alternate;
}
.elevation__about-right img {
    width: 70%;
    align-items: center;
}

@keyframes glow {
    from { box-shadow: 0 0 20px #ff00ff; }
    to { box-shadow: 0 0 40px #ff00ff; }
}

@media (max-width: 768px) {
    .elevation__about {
        height: auto;
        flex-direction: column;
        text-align: center;
    }

    .elevation__about-right {
        width: 100%;
        height: 300px;
        margin-bottom: 35px;
    }
}
.elevation__advantages {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(90deg, #000, #6a0dad);
}

.elevation__advantages-title {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    text-transform: uppercase;
    color: #ff00ff;
    text-shadow: 0 0 20px #ff00ff;
    margin-bottom: 30px;
}

.elevation__advantages-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.elevation__advantage {
    flex: 1 1 250px;
    max-width: 250px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px #ff00ff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.elevation__advantage:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px #ff00ff;
}

.elevation__advantage-title {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
    margin-bottom: 10px;
}

.elevation__advantage-text {
    font-family: 'Lora', serif;
    font-size: 16px;
    color: #fff;
}

@media (max-width: 768px) {
    .elevation__advantages-container {
        flex-direction: column;
        align-items: center;
    }
}

.elevation__game {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(90deg, #6a0dad, #000);
    padding: 50px;
    gap: 50px;
}

.elevation__game-left, .elevation__game-right {
    flex: 1;
    max-width: 600px;
}

.elevation__game-title {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    text-transform: uppercase;
    color: #ff00ff;
    text-shadow: 0 0 20px #ff00ff;
    margin-bottom: 20px;
}

.elevation__game-button {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    background: #ff00ff;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px #ff00ff;
    transition: 0.3s;
    text-decoration: none;
    border-radius: 5px;
}

.elevation__game-button:hover {
    box-shadow: 0 0 30px #00ffff;
    background: #00ffff;
}

.elevation__game-right {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00ffff;
    /* background: rgba(255, 255, 255, 0.1); */
    width: 100%;
    height: 450px;
    box-shadow: 0 0 20px #ff00ff;
    animation: glow 1.5s infinite alternate;
}

.elevation__game-right img {
    width: 65%;
}

@keyframes glow {
    from { box-shadow: 0 0 20px #ff00ff; }
    to { box-shadow: 0 0 40px #00ffff; }
}

@media (max-width: 768px) {
    .elevation__game {
        flex-direction: column;
        text-align: center;
        height: auto;
    }

    .elevation__game-right {
        width: 100%;
        height: 250px;
    }

    .elevation__game-title {
        font-size: 35px;
    }
}

.elevation__faq {
    text-align: center;
    padding: 50px 20px;
    background: url('../elevation-img/elevation-main-low.jpg') no-repeat center center/cover;
    position: relative;
}

.elevation__faq::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.elevation__faq-container {
    position: relative;
    max-width: 800px;
    margin: auto;
    z-index: 2;
}

.elevation__faq-title {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    text-transform: uppercase;
    color: #ff00ff;
    text-shadow: 0 0 20px #ff00ff;
    margin-bottom: 30px;
}

.elevation__faq-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 0 15px #ff00ff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.elevation__faq-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #00ffff;
}

.elevation__faq-toggle {
    display: none;
    margin: 20px auto;
    cursor: pointer;
    padding: 10px;
    background: #ff00ff;
    color: white;
    font-family: 'Cinzel', serif;
    border: none;
    box-shadow: 0 0 20px #ff00ff;
}

.elevation__faq-toggle:hover {
    box-shadow: 0 0 30px #00ffff;
    background: #00ffff;
}

.elevation__faq-question {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #ff00ff;
}

.elevation__faq-answer {
    font-family: 'Lora', serif;
    font-size: 16px;
    color: #fff;
    margin-top: 5px;
}

@media (max-width: 760px) {
    .elevation__faq-item:nth-child(n+4) {
        display: none;
    }
    .elevation__faq-toggle {
        display: block;
        margin: 20px auto;
        cursor: pointer;
        padding: 10px;
        background: #ff00ff;
        color: white;
        border: none;
        box-shadow: 0 0 20px #ff00ff;
    }
}

.elevation__reviews {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(90deg, #000, #6a0dad);
    position: relative;
}

.elevation__reviews-title {
    font-family: 'Cinzel', serif;
    font-size: 45px;
    color: #fff;
    text-shadow: 0 0 20px #ff00ff;
}

.elevation__reviews-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    z-index: 2;
}

.elevation__review-card {
    flex: 1 1 calc(25% - 20px);
    background: rgba(255, 0, 255, 0.2);
    border: 2px solid #ff00ff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px #ff00ff;
    transition: transform 0.3s ease-in-out;
}

.elevation__review-card:hover {
    transform: scale(1.05);
}

.elevation__review-card img {
    width: 40%;
}

.elevation__review-text {
    font-family: 'Lora', serif;
    font-size: 18px;
    font-style: italic;
    color: #fff;
}

.elevation__review-author {
    margin-top: 10px;
    font-weight: bold;
    color: #00ffff;
}


.elevation__contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(90deg, #6a0dad, #000);
    position: relative;
}

.elevation__contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.elevation__contact-container {
    position: relative;
    max-width: 900px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.elevation__contact-info, .elevation__contact-form {
    flex: 1;
    padding: 20px;
}

.elevation__contact-title {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #ff00ff;
    text-shadow: 0 0 20px #ff00ff;
    margin-bottom: 20px;
}

.elevation__contact-info p {
    font-family: 'Lora', serif;
    font-size: 18px;
    margin: 10px 0;
    color: #fff;
}

.elevation__contact-form input, .elevation__contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
}

.elevation__contact-form button {
    font-family: 'Cinzel', serif;
    background: #ff00ff;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px #ff00ff;
}

.elevation__modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    box-shadow: 0 0 20px #ff00ff;
    text-align: center;
    z-index: 5;
}

.elevation__modal button {
    font-family: 'Cinzel', serif;
    margin-top: 10px;
    background: #00ffff;
    color: black;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

@media (max-width: 580px) {
    .elevation__contact-container {
        flex-direction: column;
    }
}

.elevation__disclaimer {
    background-color: #ffeb3b;
    color: #000;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-family: Arial, sans-serif;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.elevation__disclaimer-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.elevation__disclaimer-text {
    font-size: 30px;
    margin: 20px 0;
    font-weight: 500;
}

.elevation__disclaimer-free {
    color: #2e7d32;
}

.elevation__disclaimer-age {
    color: #d32f2f;
}

.elevation__disclaimer-warning {
    color: #ff9800;
}

.elevation__disclaimer-info {
    color: #1976d2;
}

.elevation__footer {
    background: linear-gradient(90deg, #20002c, #c31432);
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.elevation__footer-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.elevation__footer-block {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    flex: 1 1 30%;
    margin: 10px;
    text-align: end;
}

.elevation__footer-description {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.elevation__footer-description p {
    max-width: 500px;
    padding: 10px 15px;
}

.elevation__footer-text-descr {
    width: 300px;
    display: flex;
    justify-content: space-around;
    padding-top: 25px;
    font-family: 'Lora', serif;
    font-size: 16px;
    color: #fff;
}

.elevation__footer-title {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    margin-bottom: 10px;
}

.elevation__footer-text {
    font-family: 'Lora', serif;
    font-size: 16px;
    text-align: center;
}

.elevation__footer-images img {
    transition: transform 0.3s ease-in-out;
}

.elevation__footer-images img:hover {
    transform: scale(1.1);
}

.elevation__footer-copyright {
    font-family: 'Lora', serif;
    font-size: 14px;
    opacity: 0.8;
    color: #fff;
}

.elevation__footer-img {
    width: 110px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.elevation__footer-img:hover {
    transform: scale(1.1);
}
.elevation__footer-rights {
    font-family: 'Lora', serif;
    font-size: 14px;
    opacity: 0.7;
}
.elevation__aware {
    width: 300px; 
    height: 83px;
}
.elevation__care {
    width: 300px; 
    height: 83px;
}
.age-restriction-icon {
    width: 70px;
    height: 70px;
}

@media (max-width: 768px) {
    .elevation__footer {
        padding: 30px 5px;
    }
    .elevation__footer-block {
        margin: 0;
    }
    .elevation__footer-container {
        flex-direction: column;
        text-align: center;
    }
    .elevation__aware {
        margin-bottom: 20px;
    }
}

.elevation__page-title-top {    
    font-family: 'Cinzel', serif;
    font-size: 35px;
    color: #fff;
    text-align: center;
    margin: 0;
    padding-bottom: 20px;
    text-shadow: 0 0 6px #cecb0d, 0 0 10px #310abe88;
}
.elevation__page-container {
    max-width: 100%;
    background: linear-gradient(90deg, #000, #6a0dad);
    color: rgb(126, 84, 84);
    text-align: center;
    padding: 20px 0px;
}
.elevation__page-section {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
}
.elevation__page-titlelow {
    font-family: 'Cinzel', serif;
    font-size: 35px;
    color: #fff;
    text-align: left;
    margin-bottom: 40px;
    text-shadow: 0 0 8px #badf9b, 0 0 10px #2d96b188;
}

.elevation__page-text {
    font-family: 'Lora', serif;
    font-size: 20px;
    color: #fff;
    text-align: left;

}

.elevation__page-item {
    color: #000;
    text-align: left;
}

.elevation__page-list {
    font-family: 'Lora', serif;
    font-size: 20px;
    color: #aaa;
    text-align: left;
}

.elevation__page-footer-text {
    font-family: 'Lora', serif;
    font-size: 20px;
    color: #fff;
    text-align: center;
}

@media(max-width: 950px) {
    .elevation__page-container {
        padding: 15px;
    }
}

@media(max-width: 350px) {
    .elevation__page-container {
        padding: 15px;
    }

    .elevation__page-title-top {
        font-size: 25px;
        padding-top: 5px;
        text-align: center;
    }

    .elevation__page-section {
        padding: 10px;
    }

    .elevation__page-titlelow {
        font-size: 20px;
    }

    .elevation__page-text {
        font-size: 16px;
    }

    .elevation__page-list {
        font-size: 15px;
        padding-bottom: 15px;
    }

    .elevation__page-footer-text {
        font-size: 15px;
    }
}

#cookiesElevation {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #111, #6a0dad);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 20px #ff00ff;
    animation: glow 1.5s infinite alternate;
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
    width: 90%;
}

.elevation__cookies-style {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

@media (max-width: 760px) {
    .elevation__cookies-style {
        flex-direction: column;
        justify-content: center;
    }

    .elevation__cokies-text {
        text-align: center;
    }
}

.elevation__cokies-text {
    font-family: 'Lora', serif;
    font-size: 20px;
    color: #fff;
    margin-right: 15px;
}

.elevation__cokies-text a {
    color: #00ffff;
}

.elevation__page-link {
    color: #eeff00;
}

#ageElevation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.elevation__age-style {
    background: linear-gradient(90deg, #6a0dad, #111);
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 20px #ff00ff;
    animation: glow 1.5s infinite alternate;
}

.elevation__age-title {
    font-family: 'Cinzel', serif;
    font-size: 25px;
    color: #23f5f5;
    margin-bottom: 15px;
    text-shadow: 0 0 6px #cecb0d, 0 0 10px #310abe88;
}

.elevation__age-text {
    font-family: 'Lora', serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
}

.age-btn {
    margin-right: 15px;
}

@media (max-width: 760px) {
    .age-btn {
        margin-bottom: 20px;
    }
}