* { margin: 0; padding: 0; font-family: "Montserrat", sans-serif; color: #fff; box-sizing: border-box;}

.age-verification {
    width: 100%;
    background: #212121;
    padding: 1em;
    position: relative;
    z-index: 1000;
}

.age-verification-content {
    gap: 1em;
    background: rgba(250, 97, 49, 0.1);
    padding: 1.5em 2em;
    border-radius: 10px;
    border: 1px solid rgba(250, 97, 49, 0.3);
}

.age-verification-content p {
    font-weight: 600;
    font-size: 1.1em;
}

.age-icon {
    width: 24px;
    height: 24px;
}

.age-verification-buttons {
    gap: 1em;
}

.age-verify-btn {
    border: none;
    padding: 0.7em 2em;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.age-verify-btn.accept {
    background: #FA6131;
}

.age-verify-btn.accept:hover {
    background: #e55529;
}

.age-verify-btn.decline {
    background: transparent;
    border: 1px solid #FA6131;
}

.age-verify-btn.decline:hover {
    background: rgba(250, 97, 49, 0.1);
}

a {
    text-decoration: none;
    cursor: pointer;
}

body, html {
    box-sizing: border-box;
}

.flex-row {
    display: flex;
    align-items: center;
}

.flex-row-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-column {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.flex-column-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.padding {
    padding: 0 2em;
}

.header {
    background: #212121;
    justify-content: space-between;
    padding-top: 1em;
    padding-bottom: 1em;
}

.header * {
    font-size: 1.2em;
    font-weight: 700;
    font-style: italic;
}

.nav a {
    display: block;
    margin: 0 0.8em;
}

.nav-mobile {
    display: none;
    cursor: pointer;
}

.menu-wrapper a {
    display: block;
    margin: 0.15em 0;
    font-size: 1.2em;
    font-weight: 700;
    font-style: italic;
}

.header_banner {
    background: url("/assets/images/banner.png");
    background-size: cover;
    background-repeat: round;
    padding-top: 9em;
    padding-bottom: 11em;
}

.header_banner-content {
    width: 60%;
    align-items: flex-start;
}

.header_banner-title h1 {
    font-size: 3em;
    font-weight: 800;
    font-style: italic;
}

.header_banner-title h3 {
    font-size: 1.2em;
    font-weight: 500;
    font-style: italic;
}

.header_banner-tips {
    gap: 10px;
    width: 70%;
    flex-wrap: wrap;
    margin-top: 1em;
}

.header_banner-tip {
    background: linear-gradient(180deg, rgba(250, 97, 49, 0) 0%, rgba(250, 97, 49, 0.5) 100%);
    border: 1px solid #FA6131;
    padding: 0.7em 1em;
    border-radius: 95px;
    font-weight: 500;
    font-style: italic;
    font-size: 0.9em;
}

.header_banner-tip img {
    margin-right: 5px;
}

.cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
    margin-top: 6em;
    margin-bottom: 6em;
}

.card {
    width: 100%;
    max-width: 640px;
    background: #212121;
    padding: 0.5em;
    border-radius: 10px;
}

.card_top {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

.card_top-left {
    align-items: flex-start;
    width: 45%;
}

.card_top-left-title {
    gap: 5px;
    margin-bottom: 5px;
}

.card_top-left-number {
    font-size: 1.2em;
    font-weight: 700;
    color: #828282;
}

.card_top-left-name {
    font-size: 1.2em;
    font-weight: 700;
}

.card_top-right-bonus {
    align-items: flex-start;
    width: 100%;
}

.card_top-right-bonus span {
    color: #828282;
    font-weight: 700;
    font-size: 0.9em;
}

.card_top-right {
    height: 100%;
    width: 55%;
    justify-content: space-between;
    min-height: 130px;
}

.card_top-right-rate {
    width: 100%;
    justify-content: space-between;
}

.card_top-right-rate-info {
    gap: 10px;
}

.card_top-right-bonus p {
    font-weight: 700;
    font-size: 2em;
}

.card_top-left-logo {
    width: 250px;
    height: 110px;
    background-color: #303132;
    border-radius: 5px;
    padding: 1em;
}

.card_top-left-logo img {
    width: 100%;
}

.card_bottom {
    margin-top: 5px;
}

.card_bottom-actions {
    width: 100%;
    max-width: 320px;
    gap: 5px;
}

.card_bottom-actions button:first-child {
    width: 100%;
}

.card_bottom-actions a {
    padding: 0.9em;
    border-radius: 10px;
    font-size: 0.9em;
    font-weight: 700;
    width: 100%;
    border: none;
    text-transform: uppercase;
    text-align: center;
}

.card_bottom-disclamer {
    gap: 5px;
    font-weight: 500;
    font-size: 0.9em;
    width: 100%;

}

.card_bottom-disclamer p {
    color: #828282;
}

.card_bottom-actions a:first-child {
    background: #FA6131;
}

.card_bottom-actions a:last-child {
    background: none;
    border: 2px solid #828282;
    color: #828282;
}

.info_container {
    background: #212121;
    padding: 1em;
    width: 100%;
    max-width: 1300px;
    border-radius: 12px;
    margin: 2em auto;

}

.verif {
    background: red;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    color: #fff !important;
    font-weight: 800 !important;
    font-size: 30px !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    margin: 0 auto;
    margin-bottom: 10px;
}

.info_container p {
    font-size: 0.9em;
    font-weight: 600;
    color: #828282;
}

.footer {
    background: #212121;
    align-items: flex-start;
    padding: 4em 1em;
}

.links {
    width: 45%;
    flex-wrap: wrap;
    gap: 2em;
}

.links-item {
    background: #303132;
    border: 1px solid #828282;
    width: 200px;
    height: 75px;
}

.footer-info {
    align-items: flex-start;
    gap: 2em;
    width: 55%;
}

.footer-info p {
    color: #828282;
    font-weight: 400;
    font-size: 0.8em;

}

.footer-info .logo p {
    font-size: 1.2em;
    font-weight: 700;
    font-style: italic;
    color: #fff;
}

.info-links {
    font-size: 1.2em;
    font-weight: 700;
    font-style: italic;
    color: #fff;   
    gap: 1em;

}
.info-links a {
    display: block;
    font-size: 0.7em;
    font-weight: 600;
}

img.logo {
    width: 40px;
    margin-right: 10px;
}

.logo-kink {
    display: flex;
    align-items: center;
    justify-content: center;
}

.opened {
    display: flex !important;
    animation: menu-open 0.5s forwards;
}

.menu-wrapper {
    position: absolute;
    width: 100%;
    top: 0;
    background: #212121;
    padding: 10px;
    display: none;
}

.faq p {
    margin: 1em 0;
}

.popup_wrapper {
    top: 0;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #000000b5;
    z-index: 999;
    display: none;
}

.popup_content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 96%;
    max-width: 450px;
    width: 100%;
    transform: translate(-50%, -50%) scale(1);
    animation: openPopup 0.5s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 15px;
    display: flex;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 10px 35px 10px;
    gap: 10px;
}

	.popup_content h1 {
		font-size: 2em;
        color: #000;
	}
.popup_actions {
    width: 100%;
    gap: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.popup_actions button {
    padding: 10px 15px;
    border: 1px solid #000;
    width: 100px;
    text-align: center;
    cursor: pointer;
    color: #fff;
    font-weight: 800;
    text-shadow: 1px 1px 1px black;
    font-size: 2em;
}

.popup_actions button:first-child {
    background: rgb(0, 218, 0);
}

.popup_actions button:last-child {
    background: red;
}

.popup_content h1 {
    text-align: center;
}

.opened-popup {
    display: block;
}

.close {
    position: absolute;
    height: 20px;
    width: 20px;
    right: 15px;
    top: 15px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1;
    outline: none;
}

.close img {
    width: 100%;
    height: 100%;
}

.colored {
    background: #180404;
    padding: 2em 1em;
}

.colored h3 {
    margin: 10px 0;
}

.italic {
    font-style: italic;
}

.center-text {
    text-align: center;
}

.top-header {
    background: rgb(0, 59, 0);
    color: #fff;
    padding: 10px;
}

@keyframes menu-open {
    from {
        top: -100%;
    }

    to {
        top: 50px;
    }
}

@media screen and (max-width: 940px) {
    .age-verification-content {
        text-align: center;
        padding: 1.2em;
        margin-top: 320px;
        margin-bottom: 320px;
    }

    .age-verification-buttons {
        flex-direction: column;
        width: 100%;
    }

    .age-verify-btn {
        width: 100%;
        margin: 0;
    }

    .header_banner-content {
        width: 100%;
    }

    .header_banner-tips {
        width: auto;
    }

    .header_banner {
        background: url("/assets/images/banner-mob.png");
        background-size: cover;
        background-repeat: no-repeat;
    }

    .header_banner-title h1 {
        font-size: 2em;
    }

    .card_top, .card_top-left, .card_bottom, .footer, .info-links {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .card_top-right-bonus, .footer-info {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .card_top-right {
        min-height: unset;
    }

    .card_bottom-actions {
        max-width: unset;
    }

    .card_bottom-disclamer {
        margin: 1em 0;
    }

    .card_top-right-bonus, .footer-info{
        margin-top: 1em;
    }

    .info_container { 
        border-radius: 0;
        margin: 0;
    }

    .footer-info, .links, .card_top-left, .card_top-right { 
        width: 100%;
    }

    .nav-mobile {
        display: block;
    }

    .nav {
        display: none;
    }
}