@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

html {
    box-sizing: border-box;
}
*,
*::before,
::after {
    box-sizing: inherit;
}
img {
    width: 100%;
}
ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
a {
    color: inherit;
    text-decoration: none;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Fira Sans', sans-serif;
    background-color: #121212;
    color: #fff;
}


.membr_header {
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a, #333);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.membr_container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.membr_nav .membr_menu {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.membr_menu li {
    display: inline;
}

.membr_link {
    text-decoration: none;
    color: #fff;
    font-family: 'Fira Sans', sans-serif;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    transition: color 0.3s;
}

.membr_link:hover {
    color: #ffcc00;
}

.membr_link:hover::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #ffcc00;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.membr_logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.membr_logo {
    width: 50px;
    height: auto;
}

.membr_title {
    font-size: 22px;
    font-weight: bold;
    font-family: 'Bebas Neue', sans-serif;
}

.membr_burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    gap: 5px;
}

.membr_burger span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease-in-out;
}

.membr_mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out;
}

.membr_mobile-menu-list {
    list-style: none;
    padding: 100px 0;
}

.membr_mobile-link {
    display: block;
    padding: 15px;
    font-family: 'Fira Sans', sans-serif;
    font-size: 22px;
    text-decoration: none;
    color: #ffcc00;
    font-weight: bold;
    transition: color 0.3s;
}

.membr_mobile-link:hover {
    color: #fff;
}

.membr_mobile-menu.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

@media (max-width: 760px) {
    .membr_nav {
        display: none;
    }

    .membr_logo {
        display: none;
    }

    .membr_title {
        text-align: center;
        width: 100%;
    }

    .membr_burger {
        display: flex;
    }
}

.membr_about {
    width: 100%;
    height: 100vh;
    background: linear-gradient(45deg, #ff7f50, #ffcc00);
    display: flex;
    align-items: center;
    justify-content: center;
}

.membr_about-container {
    max-width: 1250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.membr_about-text {
    flex: 1;
    text-align: center;
}

.membr_about-title {
    font-size: 32px;
    font-weight: bold;
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 10px;
    color: #ffcc00;
}

.membr_about-description {
    font-family: 'Fira Sans', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
}

.membr_about-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.membr_about-action img {
    width: 90%;
}

.membr_about-button {
    text-align: center;
    padding: 12px 25px;
    font-family: 'Fira Sans', sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: #121212;
    background-color: #ffcc00;
    border-radius: 5px;
    transition: background 0.3s;
}

.membr_about-button:hover {
    background-color: #e6b800;
}

.membr_game {
    width: 100%;
    height: 100vh;
    background-color: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
}

.membr_game-container {
    max-width: 1250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.membr_game-text {
    flex: 1;
    text-align: center;
}

.membr_game-title {
    font-size: 32px;
    font-weight: bold;
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 10px;
    color: #ffcc00;
}

.membr_game-button {
    display: inline-block;
    padding: 12px 25px;
    font-family: 'Fira Sans', sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: #121212;
    background-color: #ffcc00;
    border-radius: 5px;
    transition: background 0.3s;
}

.membr_game-button:hover {
    background-color: #e6b800;
}

.membr_game-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.membr_game-img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

@media (max-width: 760px) {
    .membr_about-container,
    .membr_game-container {
        flex-direction: column;
        text-align: center;
    }

    .membr_about-action,
    .membr_game-image {
        margin-top: 20px;
    }
}

.membr_advantages {
    width: 100%;
    background: url('../membr-images/memr-backgr-img-2.jpg') no-repeat center center/cover;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.membr_advantages-title {
    max-width: 300px;
    background: rgba(0, 0, 0, 0.6);
    margin: 0 auto;
    padding: 25px 10px;
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    color: #fff;
    font-size: 35px;
    text-align: center;
    border-radius: 10px;
}

.membr_advantages-container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.membr_advantages-block {
    flex: 1;
    min-width: 250px;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s;
}

.membr_advantages-block:hover {
    transform: scale(1.05);
}

.membr_advantages-title {
    font-size: 22px;
    font-family: 'Bebas Neue', sans-serif;
    color: #ffcc00;
    margin-bottom: 10px;
}

.membr_advantages-text {
    font-family: 'Fira Sans', sans-serif;
    font-size: 16px;
    color: #ddd;
}

.membr_reviews {
    width: 100%;
    background: linear-gradient(45deg, #ff7f50, #ffcc00);
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.membr_reviews-title {
    font-family: 'Bebas Neue', sans-serif;
    color: #fff;
    font-size: 35px;
    text-align: center;
    padding: 25px 0;
}

.membr_reviews-container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.membr_reviews-block {
    flex: 1;
    min-width: 280px;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s;
}

.membr_reviews-block:hover {
    transform: scale(1.05);
}

.membr_reviews-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.membr_reviews-name {
    font-family: 'Fira Sans', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 10px;
}

.membr_reviews-text {
    font-family: 'Fira Sans', sans-serif;
    font-size: 16px;
    color: #ddd;
}

@media (max-width: 760px) {
    .membr_advantages-container,
    .membr_reviews-container {
        flex-direction: column;
    }

    .membr_advantages-block:nth-child(1) {
        order: 4;
    }
    .membr_advantages-block:nth-child(2) {
        order: 2;
    }
    .membr_advantages-block:nth-child(3) {
        order: 3;
    }
    .membr_advantages-block:nth-child(4) {
        order: 1;
    }

    .membr_reviews-block:nth-child(1) {
        order: 3;
    }
    .membr_reviews-block:nth-child(2) {
        order: 1;
    }
    .membr_reviews-block:nth-child(3) {
        order: 2;
    }
}

.membr_contacts {
    width: 100%;
    background: linear-gradient(45deg, #8a2be2, #00ced1);
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.membr_contacts-title {
    font-family: 'Bebas Neue', sans-serif;
    color: #fff;
    font-size: 35px;
    text-align: center;
    padding: 25px 0;
}

.membr_contacts-container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.membr_contacts-info,
.membr_contacts-form {
    flex: 1;
    min-width: 300px;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

.membr_contacts-title {
    font-size: 24px;
    font-family: 'Bebas Neue', sans-serif;
    color: #ffcc00;
    margin-bottom: 15px;
}

.membr_contacts-text {
    font-family: 'Fira Sans', sans-serif;
    font-size: 16px;
    color: #ddd;
    margin-bottom: 10px;
}

.membr_contacts-form input,
.membr_contacts-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.membr_contacts-form button {
    width: 100%;
    background-color: #ffcc00;
    color: #000;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.membr_contacts-form button:hover {
    background-color: #e6b800;
}

.membr_modal-thn {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.membr_modal-thn-content {
    background: #222;
    padding: 20px;
    font-family: 'Fira Sans', sans-serif;
    text-align: center;
    border-radius: 10px;
    max-width: 400px;
}

.membr_modal-thn-btn {
    background-color: #ffcc00;
    border: none;
    padding: 10px;
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
}

@media (max-width: 760px) {
    .membr_contacts-container {
        flex-direction: column;
    }

    .membr_contacts-info {
        order: 2;
    }
    .membr_contacts-form {
        order: 1;
    }
}

.membr_faq {
    width: 100%;
    background: url('../membr-images/memr-backgr-img-1.jpg') no-repeat center center/cover;
    padding: 50px 0;    
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.membr_faq-title {
    background-color: rgba(0, 0, 0, 0.7);
    max-width: 750px;
    margin: 0 auto;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    font-family: 'Bebas Neue', sans-serif;
    color: #fff;
    font-size: 35px;
    text-align: center;
}

.membr_faq-container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.membr_faq-item {
    width: 30%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.membr_faq-sub-title {
    font-size: 20px;
    font-family: 'Bebas Neue', sans-serif;
    color: #fff;
    margin-bottom: 10px;
}

.membr_faq-text {
    font-family: 'Fira Sans', sans-serif;
    font-size: 16px;
    color: #ddd;
}

@media (max-width: 768px) {
    .membr_faq-item {
        width: 100%;
    }
}

.membr_disclaimer {
    width: 100%;
    background: linear-gradient(45deg, #8a2be2, #00ced1);
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.membr_disclaimer-title {
    text-align: center;
    font-size: 35px;
    font-family: 'Bebas Neue', sans-serif;
    color: #fff;
    padding: 25px 0;
    margin-bottom: 15px;
}

.membr_disclaimer-container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.membr_disclaimer-info,
.membr_disclaimer-links {
    width: 48%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.membr_disclaimer-sub-title {
    font-size: 24px;
    font-family: 'Bebas Neue', sans-serif;
    color: #fff;
    margin-bottom: 15px;
}

.membr_disclaimer-text {
    font-family: 'Fira Sans', sans-serif;
    font-size: 16px;
    color: #ddd;
    margin-bottom: 10px;
}

.membr_disclaimer-link-item {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 10px;
}

.membr_disclaimer-link img {
    width: 300px;
    height: 84px;
}

@media (max-width: 760px) {
    .membr_faq-container {
        flex-direction: column;
    }

    .membr_disclaimer-container {
        flex-direction: column;
    }

    .membr_disclaimer-info,
    .membr_disclaimer-links {
        width: 100%;
        padding: 20px 0;
    }

    .membr_disclaimer-links img {
        width: 270px;
    }

    .membr_disclaimer-link-item {
        width: 100%;
    }
    .membr_disclaimer-link-item img {
        margin: 0;
        padding-right: 15px;
    }
}

.membr_footer {
    width: 100%;
    background: linear-gradient(45deg, #ff4500, #ffcc00);
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.membr_footer-container {
    max-width: 1250px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.membr_footer-links,
.membr_footer-about,
.membr_footer-rights {
    width: 30%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.membr_footer-title {
    font-size: 20px;
    font-family: 'Bebas Neue', sans-serif;
    color: #fff;
    margin-bottom: 10px;
}

.membr_footer-text {
    font-family: 'Fira Sans', sans-serif;
    font-size: 16px;
    color: #ddd;
}

.membr_footer-link {
    color: #ffcc00;
    font-size: 16px;
    text-decoration: none;
    display: block;
    margin: 5px 0;
    transition: color 0.3s;
}

.membr_footer-link:hover {
    color: #ff4500;
}

@media (max-width: 760px) {
    .membr_footer-container {
        flex-direction: column;
    }

    .membr_footer-links,
    .membr_footer-about,
    .membr_footer-rights {
        width: 100%;
    }
}

.membr_modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    z-index: 9999;
}
.membr_modal-content {
    background: rgba(27, 22, 0, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
    text-align: center;
    max-width: 400px;
}
.membr_modal-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #3af302;
}
.membr_modal-content p {
    font-family: 'Fira Sans', sans-serif;
    font-size: 1.2em;
    margin-bottom: 20px;
    color: whitesmoke;
}
.membr_modal-buttons {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}
.membr_modal-button {
    padding: 10px 20px;
    background-color: #3af302;
    border: none;
    border-radius: 5px;
    color: black;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1em;
    transition: background-color 0.5s;
}
.membr_modal-button:hover {
    background-color: #0f3460;
    color: whitesmoke;
}
.membr_page-title-top {    
    font-family: 'Bebas Neue', sans-serif;
    font-size: 35px;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 20px;
    text-shadow: 0 0 6px #cecb0d, 0 0 10px #310abe88;
}
.membr_page-container {
    max-width: 100%;
    background-color: #0f3460;
    color: rgb(126, 84, 84);
    text-align: center;
    padding: 20px 0px;
}
.membr_page-section {
    max-width: 1200x;    
    margin: 25px auto;
    padding: 25px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0f3460;
    border-radius: 10px;
}
.membr_page-item-sub {
    margin: 0;
    padding: 15px;
}
.membr_page-titlelow {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 35px;
    color: #a8a503;
    text-align: left;
    margin-bottom: 40px;
    text-shadow: 0 0 8px #850a0a, 0 0 10px #b11fce88;
}
.membr_page-text {
    font-family: 'Fira Sans', sans-serif;
    font-size: 20px;
    color: #fff;
    text-align: left;
}
.membr_page-text-high {
    text-align: center;
    color: #fff;
    margin: 0;
    padding: 15px;
    text-shadow: 0 0 8px #850a0a, 0 0 10px #b11fce88;
}
.new__page-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #fff;
    padding: 0;
}
.membr_page-list {
    padding-left: 15px;
    font-family: 'Fira Sans', sans-serif;
    font-size: 20px;
    text-shadow: 0 0 8px #850a0a, 0 0 10px #b11fce88;
    color: #fff;
    text-align: left;
}
.membr_page-item li {
    padding: 10px 0;
}
.membr_page-list a {
    color: #aa03ec;
    text-shadow: 0 0 8px #850a0a, 0 0 10px #b11fce88;
}
.membr_page-footer-text {
    font-family: 'Fira Sans', sans-serif;
    font-size: 20px;
    margin: 0;
    padding: 25px 0;
    color: #0ee906;
    text-shadow: 0 0 8px #850a0a, 0 0 10px #b11fce88;
    text-align: center;
}
.home {
    min-width: 20%;
    background-color: #0f3460;
    color: rgb(126, 84, 84);
}
.membr_page-block-home {
    min-width: 290px;
    background-color: #0f3460;
}
.membr_page-text-home {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 25px;
    color: #a8a503;
    text-shadow: 0 0 8px #850a0a, 0 0 10px #b11fce88;
}
@media(max-width: 950px) {
    .membr_page-container {
        padding: 15px;
    }
}
@media(max-width: 350px) {
    .membr_page-container {
        padding: 15px;
    }
    .membr_page-title-top {
        font-size: 25px;
        padding-top: 5px;
        text-align: center;
    }
    .membr_page-section {
        padding: 10px;
    }
    .membr_page-titlelow {
        font-size: 20px;
    }
    .membr_page-text {
        font-size: 16px;
    }
    .membr_page-text-high {
        font-size: 15px;
    }
    .membr_page-list {
        font-size: 15px;
        padding-bottom: 15px;
    }
    .membr_page-footer-text {
        font-size: 15px;
    }
}
.membr_scroll-up {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #6f00ff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s, visibility .4s;
}
.membr_scroll-up.visible {
    opacity: 1;
    visibility: visible;
}
#cookiesNew {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    background: rgba(255, 204, 0, 0.4);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
    margin: 15px;
    z-index: 9998;
    max-width: 600px;
    width: 100%;
}
.membr_cookies-style {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3af302;
}
@media (max-width: 760px) {
    .membr_cookies-style {
        flex-direction: column;
        justify-content: center;
    }
    .membr_cokies-text {
        text-align: center;
    }
}
.membr_cokies-text {
    font-family: 'Fira Sans', sans-serif;
    font-size: 20px;
    color: #fff;
    margin-right: 15px;
}
.membr_cokies-text a {
    text-decoration: none;
    color: #0242f3;
}
.membr_page-link {
    color: #eeff00;
}
.membr_cookie-button {
    padding: 10px 20px;
    background-color: #3af302;
    border: none;
    border-radius: 5px;
    color: black;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1em;
    transition: background-color 0.5s;
}
.membr_cookie-button:hover {
    background-color: #0f3460;
    color: whitesmoke;
}
