<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&amp;display=swap');

:root {

    --accent-color: #D4AF37;
    --dark-color: #4b3b1f;
    --blue-color: #3C6E91;
    --red-color: #8B1E3F;
    --green-color: #2F9E81;
    --black-color: #0E2F44;
    --light-color: #fdfdfd;
    --gray-color: #4B4B4B;

    --stl-1: #78f701;
    --stl-2: #f7ca01;
    --stl-3: #f73201;
    --stl-4: #D87D2E;
    --stl-5: #f70188;
    --bg-1: #0c3b03;
    --bg-2: #232709;
    --bg-3: #270909;
    --bg-4: #262709;
    --bg-5: #27091e;


    --border-color: rgba(255, 255, 255, .2);
    --border-20: 21px;
    --border-r: 0px;
    --white: white;
    --light-gray: #ccc;
    --black: black;
    --gap-25-30: 30px;
    --gap-30-40: 32px;

}


html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
    margin: 0;
    padding: 0;
    font-weight: normal;

}

h2 {
    margin: 15px 0;
}

ol, ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    overflow-x: hidden;
    line-height: 1.4;
    background-color: var(--light-color);
    direction: ltr;
    font-family: 'Merriweather Sans', sans-serif !important;
    font-size: 17px;
    margin: 0;
    padding: 0px;
}

ul, li {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

p, li {
    padding: 5px 0px;
}

a {
    text-decoration: none;
    color: var(--accent-color);
}

img {
    width: 100%;
    display: block;
}

.cont-rso {
    position: relative;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 992.98px) {
    .contact-info {
        flex-direction: column;
        margin-bottom: 20px;
    }
}

.title-rso {
    font-size: clamp(18px, 4vw, 28px);
    color: var(--accent-color);
    text-align: center;
    font-weight: 500;
    margin-bottom: var(--gap-25-30);
    letter-spacing: 1px;
}

.title-rso::after {
    content: '--- â— â— â— ---';
    display: block;
    color: var(--stl-4);
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    letter-spacing: 5px;
    animation: bounce-text 1.5s infinite ease-in-out;
}

@keyframes bounce-text {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}


nav {
    height: 80px;
    display: flex;
    justify-content: center;
    position: fixed;
    z-index: 99;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    transition: background-color 0.3s ease;
    width: 100%;
    background: transparent;
}


nav.scrolled {
    background-color: var(--black-color);
}

nav .wrapper {
    background: transparent;

    position: fixed;
    max-width: 1380px;
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    border-radius: 16px;
}

.logo-here {
    width: 45px;
}

@media (max-width: 575px) {
    .logo-here {
        width: 50px;
    }
}

.logo-site {
    display: flex;
    align-items: center;
    gap: 20px;
}

.wrapper .logo-site a {
    color: var(--black-color);
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 1199px) {
    .wrapper .logo-site a {

        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .wrapper .logo-site a {

        font-size: 14px;
    }
}

.wrapper .nav-links {
    gap: var(--gap-25-30);
    display: inline-flex;
    transition: all 0.6s ease;

}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    font-size: clamp(18px, 4vw, 21px);
    font-weight: 700;
    display: block;
    text-decoration: none;
    color: var(--accent-color);
    line-height: 1;
    background-image: linear-gradient(to right, var(--accent-color), var(--accent-color) 50%, var(--light-gray) 50%);
    background-size: 200% 100%;
    background-position: -100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: .5s ease-in-out;
    position: relative;

}


.nav-links li a:hover {
    background-position: 0;
    background-image: linear-gradient(to right, var(--accent-color), var(--accent-color) 50%, var(--light-gray) 50%);
}

.nav-links li a::before {
    content: '';
    background: var(--stl-4);
    display: block;
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    transition: .5s ease-in-out;
}

.nav-links li a:hover::before {
    width: 100%;
}

.nav-links .mobile-item {
    display: none;
}

.nav-links .drop-menu {
    position: absolute;
    background: #242526;
    width: 180px;
    line-height: 45px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover {
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
}


.wrapper .btn {
    color: var(--white);
    font-size: 34px;
    cursor: pointer;
    display: none;
}

.menu-btn-img {
    width: 30px;
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
    color: var(--light-gray);
}

.radiobtn-menu {
    display: none !important;
}

@media screen and (max-width: 970px) {
    .wrapper .btn {
        display: block;
    }

    .wrapper .nav-links {
        z-index: 3;
        position: fixed;
        height: 430px;
        width: 100%;

        left: 0;
        top: -100%;
        background: var(--black-color);
        display: block;
        padding: 50px 10px;
        line-height: 50px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
        transition: all 0.6s ease;
    }

    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #242526;
    }

    ::-webkit-scrollbar-thumb {
        background: #3A3B3C;
    }

    #menu-btn:checked ~ .nav-links {
        top: 0;
    }

    #menu-btn:checked ~ .btn.menu-btn {
        display: none;
    }

    #close-btn:checked ~ .btn.menu-btn {
        display: block;
    }

    .nav-links li {
        margin: 15px 10px;
    }

    .nav-links li a {
        padding: 10px 20px;
        display: block;
        font-size: 20px;
        color: var(--light-gray);
        text-align: center;
    }

    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 20px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
    }

    #showDrop:checked ~ .drop-menu,
    #showMega:checked ~ .mega-box {
        max-height: 100%;
    }

    .nav-links .desktop-item {
        display: none;
    }

    .nav-links .mobile-item {
        display: block;
        color: #f2f2f2;
        font-size: 20px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .nav-links .mobile-item:hover {
        background: #3A3B3C;
    }

    .drop-menu li {
        margin: 0;
    }

    .drop-menu li a {
        border-radius: 5px;
        font-size: 18px;
    }

}

nav input {
    display: none;
}

.hero-section-rso {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-gray);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/hero-1.webp);
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 10s ease-in-out;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding-top: 40vh;
}

.hero-description {
    color: var(--light-gray);
    font-size: 18px;
    max-width: 800px;
    text-align: center;
    margin: 10px auto 20px;
    line-height: 1.4;
}

.hero:hover .hero-image {
    transform: scale(1.1);
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.hero-image {
    animation: zoomInOut 10s ease-in-out infinite;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .85);
}

.thumb-hero-rso {
    position: relative;
    z-index: 15;
    height: 100%;
    display: flex;

    flex-direction: column;
    min-height: 100vh;
    padding: 150px 0;
    justify-content: center;
    align-items: center;
}

.hero-rso {
    color: var(--accent-color);
    margin: 0 auto 10px;
    padding: 0 20px;
    font-size: 32px;
    text-transform: uppercase;

    text-align: center;
    overflow: hidden;
    position: relative;

}

@media (min-width: 575px) {
    .hero-rso {
        font-size: clamp(65px, 5vw, 120px);
        line-height: 1;
    }
}

.neoh_fn_down .fn__svg, .neoh_fn_down .icon {
    display: block;
    left: 50%;
    margin-left: -9px;
    position: absolute
}

.neoh_fn_down {
    position: absolute;
    bottom: 24px;
    z-index: 15;
    text-decoration: none;
    color: white;
    padding-top: 60px
}

.neoh_fn_button, .neoh_fn_services .item_num span {
    font-size: 16px;
    text-align: center;
}

.neoh_fn_down:hover, .neoh_fn_down:hover {
    color: var(--stl-4)
}

.neoh_fn_down:hover .icon:after, .arrow:after {
    background-color: var(--stl-4);


}

.neoh_fn_down:hover .fn__svg {
    fill: var(--stl-4);
}

.neoh_fn_down .icon {
    top: -16px;
    width: 18px;
    height: 40px;
    color: #aaa;
    -webkit-animation: 1.5s infinite bottomArrow;
    animation: 1.5s infinite bottomArrow;
    transition: .3s
}

.neoh_fn_down .icon:after {
    content: '';
    position: absolute;
    width: 2px;
    height: 40px;
    background-color: #aaa;
    left: 50%;
    margin-left: -1px;
    transition: .3s
}

.neoh_fn_down .fn__svg {
    bottom: -4px;
    transform: rotate(90deg);
    z-index: 3;
    fill: var(--light-gray);
    transition: .3s
}

.text-rso {
    font-size: clamp(16px, 4vw, 21px);
}

@keyframes bottomArrow {
    0% {
        transform: translate(0, 0);
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        transform: translate(0, 20px);
        opacity: 0
    }
}

@keyframes topArrow {
    0% {
        transform: translate(0, 0);
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        transform: translate(0, -20px);
        opacity: 0
    }
}

.about-section-ind-rso {
    padding: 45px 0px;
}

.about-thumb-rso {
    display: flex;
    gap: var(--gap-30-40);
    flex-direction: row;
}

@media (max-width: 991px) {
    .about-thumb-rso {

        flex-direction: column;
    }
}

.about-box-rso {
    flex: 1;
}

.about-box-img-rso {
    position: relative;
}

@media (max-width: 991px) {
    .about-box-img-rso {
        height: 380px;
    }
}

.about-box-img-rso img {
    object-fit: cover;
    border-radius: var(--border-r);
    width: 100%;
    height: 400px;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 50px rgba(0, 0, 0, .6);
}

.about-box-img-rso::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #353535;
    left: 0;
    top: 0;
    transform: rotate(5deg);
}

.txt-aboutus-idx-rso {
    color: var(--gray-color);
    font-size: clamp(16px, 4vw, 18px);
    font-weight: 600;
}

.btn-aboutus-idx-rso {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.step-section-rso {
    padding: 45px 0px;
}

.step-thumb-rso {
    display: flex;
    gap: var(--gap-25-30);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 25px;
}

.step-all-box-rso:hover .step-box-rso {
    border: 2px solid var(--accent-color);

}

.step-all-box-rso {
    width: 100%;
}

.step-box-margin-rso {
    margin-top: 40px;
}

.step-box-rso {
    padding: 46px 28px 43px;
    border: 2px solid #666;
    border-radius: 5px;
    transition: .3s;
}

@media (min-width: 767px) and (max-width: 1199px) {
    .step-all-box-rso {
        width: calc(50% - 30px);
    }
}

@media (min-width: 1200px) {
    .step-all-box-rso {
        width: calc(25% - 30px);
    }
}

.step-num-rso {
    position: relative;
    padding-left: 16px;
    display: flex;
}

.step-content-rso p {
    color: var(--gray-color);
}

.step-num-rso span {
    background-color: #252525;
    color: var(--light-gray);
    min-width: 46px;
    line-height: 30px;
    display: flex;
    justify-content: center;
    position: relative;
    transition: .3s;
    font-weight: 600;
    letter-spacing: .5px;
}

.step-all-box-rso:hover .step-num-rso span {
    background-color: var(--accent-color);
    color: #fff
}

.step-num-rso span:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    transition: .3s;
    border-width: 0 0 30px 12px;
    border-bottom-color: #252525;
    right: 100%;
    top: 0;

}

.step-all-box-rso:hover .step-num-rso span:before {
    border-bottom-color: var(--accent-color);

}

.step-num-rso span:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    transition: .3s;
    border-width: 30px 0 0 12px;
    border-left-color: #252525;
    left: 100%;
    top: 0;
}

.step-all-box-rso:hover .step-num-rso span:after {
    border-left-color: var(--accent-color);

}

.game-section-rso {
    padding: 45px 0px;
}

.game-title-margin-top-rso {
    margin-top: 55px;
}

.game-box-thumb-rso {
    display: flex;
    flex-direction: row;
    gap: var(--gap-25-30);
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 100px;
}

@media (max-width: 767px) {
    .game-box-thumb-rso {
        flex-direction: column-reverse;
    }
}

.game-box-thumb-rso:last-child {
    margin-bottom: 0;
}

.game-item-box-rso {
    flex: 1;
}

.game-txt-rso {
    color: var(--gray-color);
    text-align: center;
}

.game-img-rso {
    position: relative;
    height: 320px;
}

.game-img-rso::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #353535;
    left: 0;
    top: 0;
    transform: rotate(5deg);
}

.game-img-rso img {
    object-fit: cover;
    border-radius: var(--border-r);
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 50px rgba(0, 0, 0, .6);
}

.btn-game-rso {
    display: flex;
    justify-content: center;
    margin: 15px 0px;
}


.card {
    position: relative;
    width: 100%;
    background-color: var(--stl-4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1000px;
    box-shadow: 0 0 0 5px var(--stl-4);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (max-width: 767px) {
    .card {
        flex-direction: column;
    }
}

@media (min-width: 768px) {
    .card {
        width: calc(50% - 40px);
        height: 420px;
    }

}

.overlay {
    height: 100%;
    width: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .6);
}

.title-card-rso-games2 {
    color: var(--white);
    font-size: clamp(16px, 4vw, 21px);
    position: absolute;
    top: auto;
    left: 50%;
    width: 55%;
    text-align: center;
    transform: translateX(-50%);

}

@media (max-width: 767px) {
    .title-card-rso-games2 {
        display: none;
    }
}

.card-bg-rso {
    width: 100%;
    height: 100%;
}

.card-bg-rso img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767px) {
    .card-bg-rso img {
        height: 320px;
    }
}


.card__image {
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
    .card:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
    }
}

.card__content {

    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    background-color: #313131;

    transform-origin: bottom;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (min-width: 768px) {
    .card__content {
        position: absolute;
        transform: rotateX(-90deg);
    }
}

.card:hover .card__content {
    transform: rotateX(0deg);
}

.card__title {
    margin: 0;
    font-size: 18px;
    color: var(--stl-4);
    font-weight: 700;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .card__title {
        text-align: center;
        margin: 0;
        font-size: 24px;
    }
}

@media (min-width: 1025px) {
    .card__title {
        text-align: center;

        font-size: 30px;
    }
}

.card:hover svg {
    scale: 0;
}

.card-btn-rso {
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    color: var(--white);
}

@media (min-width: 768px) {
    .card-btn-rso {
        display: flex;
        justify-content: center;
    }
}

.card-btn-rso:hover {
    color: var(--stl-4);
}

.card__description {
    margin: 10px 0 10px;
    font-size: 13px;
    color: var(--white);
    line-height: 1.4;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .card__description {
        text-align: center;
        font-size: 18px;
    }
}

@media (min-width: 1025px) {
    .card__description {
        text-align: center;

        font-size: 22px;
    }
}

.faq-section-rso {
    padding: 45px 0px;
}

.thumb-faq-rso {
    display: flex;
    gap: var(--gap-25-30);
    flex-wrap: wrap;
    justify-content: center;
}

.title-txt-faq-rso {
    font-size: clamp(16px, 4vw, 20px);
    color: var(--white);
    text-align: center;
}

.faq-svg-box-rso {
    border: 1px solid var(--stl-4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    fill: var(--stl-4);
    width: 75px;
    height: 75px;
}

.faq-svg-box-rso svg {
    padding: 10px;
    width: 75px;
    height: 75px;
}

.flip {
    position: relative;
}

.flip &gt; .front, .flip &gt; .back {
    display: block;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-duration: 0.5s;
    transition-property: transform, opacity;
}

.flip &gt; .front {
    transform: rotateY(0deg);
}

.flip &gt; .back {

    opacity: 1;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transform: rotateY(0deg);
}

@media (min-width: 768px) {
    .flip &gt; .back {
        position: absolute;
        opacity: 0;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        transform: rotateY(-180deg);
    }
}

.flip:hover &gt; .front {
    transform: rotateY(180deg);
}

.flip:hover &gt; .back {
    opacity: 1;
    transform: rotateY(0deg);
}

.flip.flip-vertical &gt; .back {
    transform: rotateX(-180deg);
}

.flip.flip-vertical:hover &gt; .front {
    transform: rotateX(180deg);
}

.flip.flip-vertical:hover &gt; .back {
    transform: rotateX(0deg);
}

.flip {
    position: relative;
    display: inline-block;
    width: 100%;

}

@media (min-width: 575px) {
    .flip {
        width: calc(50% - 30px);
    }
}

.flip &gt; .front, .flip &gt; .back {
    color: white;
    text-align: center;
    background-size: cover !important;
    background-position: center !important;

    padding: 1em 2em;
    background: #313131;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .flip &gt; .front, .flip &gt; .back {
        height: 220px;
    }
}

.text-shadow {
    text-shadow: 1px 1px rgba(0, 0, 0, 0.04), 2px 2px rgba(0, 0, 0, 0.04), 3px 3px rgba(0, 0, 0, 0.04), 4px 4px rgba(0, 0, 0, 0.04), 0.125rem 0.125rem rgba(0, 0, 0, 0.04), 6px 6px rgba(0, 0, 0, 0.04), 7px 7px rgba(0, 0, 0, 0.04), 8px 8px rgba(0, 0, 0, 0.04), 9px 9px rgba(0, 0, 0, 0.04), 0.3125rem 0.3125rem rgba(0, 0, 0, 0.04), 11px 11px rgba(0, 0, 0, 0.04), 12px 12px rgba(0, 0, 0, 0.04), 13px 13px rgba(0, 0, 0, 0.04), 14px 14px rgba(0, 0, 0, 0.04), 0.625rem 0.625rem rgba(0, 0, 0, 0.04), 16px 16px rgba(0, 0, 0, 0.04), 17px 17px rgba(0, 0, 0, 0.04), 18px 18px rgba(0, 0, 0, 0.04), 19px 19px rgba(0, 0, 0, 0.04), 1.25rem 1.25rem rgba(0, 0, 0, 0.04);
}

@media (max-width: 767px) {
    .flip {
        display: flex;
        gap: 10px;
        flex-direction: column;
    }
}

.form-section-rso {
    padding: 45px 0px;
    position: relative;
    width: 100vw;
    overflow: hidden;
    background: url(../images/contact-1.webp) no-repeat center center;
    background-size: cover;
}

.form-section-rso::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
}

.input-group_group--block {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    outline: none;
    background-color: var(--light-color);
    color: var(--black-color);
}

.input-group_group--block::placeholder {
    color: var(--black-color);
}

.input-group_group--block:focus {
    box-shadow: 0px 0px 13px var(--stl-4);
}

.textarea-group_group--block {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    outline: none;
    background-color: var(--bg-4);
    color: var(--gray-color);
}

.textarea-group_group--block::placeholder {
    color: var(--black-color);
}

.textarea-group_group--block:focus {
    box-shadow: 0px 0px 13px var(--stl-4);
}

.forms-width-rso {
    max-width: 960px;
    background-color: var(--black-color);
    padding: 40px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

@media (max-width: 767px) {

    .forms-width-rso {

        padding: 15px;
    }
}

.forms-width-rso label {
    color: var(--white);
}

.cntr {
    display: flex;
    gap: 7px;
}

.check-color-rso {
    font-size: clamp(12px, 4vw, 17px);
}

.checingcoda {
    color: var(--white);
}

.checingcoda:hover {
    color: var(--stl-4);
}

.btn-form-rso {
    display: flex;
    justify-content: center;
    margin: 25px 0px;

}

.disclaimer-section-rso {
    padding: 45px 0px;
}


.thumb-block-discl-rso {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    padding: 25px;
    border-radius: var(--border-r);
    border: 2px dashed var(--stl-4);
    background-color: var(--black-color);
}

.img-bg-discl-rso {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.09;
}

.img-bg-discl-rso img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 992px) {
    .thumb-block-discl-rso {
        max-width: 1024px;
    }
}


.txt-diclaimer-rso {
    color: var(--white);
    text-align: center;
    font-size: clamp(18px, 4vw, 21px);
}

.footer-section-rso {
    padding: 45px 0px;
    background-color: var(--black-color);
}

.thumb-logo-footer-rso {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

@media (max-width: 575px) {
    .thumb-logo-footer-rso {
        flex-direction: column;
    }
}

.link-logo-footer-rso {
    display: flex;
    align-items: center;
    gap: 7px;
}

.box-logo-footer-rso {
    width: 75px;
}

.logo-footer-rso {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.centered-logo-footer-rso {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.footer-icons-rso {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.responsible-gaming-logos {
    display: flex;
    gap: 15px;
}

.responsible-gaming-logos a {
    display: inline-block;
}

.responsible-gaming-logos img {
    height: 50px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
}

.responsible-gaming-logos a:hover img {
    filter: grayscale(0%);
}

.box-img-disclaimer-rso {
    width: 75px;
}

.img-18-rso {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flex-link-politik-rso {
    margin: 25px 0px;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.footer-links-rso {
    font-size: 17px;
    text-align: center;
    display: block;
    text-decoration: none;
    color: var(--light-gray);
    line-height: 1;
    background-image: linear-gradient(to right, var(--stl-4), var(--stl-4) 50%, var(--light-gray) 50%);
    background-size: 200% 100%;
    background-position: -100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: .5s ease-in-out;
    position: relative;
}

.footer-links-rso:hover {
    background-position: 0;
    background-image: linear-gradient(to right, var(--stl-4), var(--stl-4) 50%, var(--light-gray) 50%);
}

.footer-links-rso::before {
    content: '';
    background: var(--stl-4);
    display: block;
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    transition: .5s ease-in-out;
}

.footer-links-rso:hover::before {
    width: 100%;
}

.copy-title {
    text-align: center;
    color: var(--white);
}

.contacts-section-rso {
    padding: 45px 0px;

}

.contact-form {
    background-color: var(--black-color);
    padding: 40px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .contact-form {
        padding: 15px;
    }
}

.contact-form h2 {
    margin-bottom: 15px;
}

.box-privacy-cont-rso {
    align-items: center;
    display: flex;
    gap: 7px;
}

.check-color-rso {
    color: var(--white);
}

.checingcoda {
    color: var(--white);
}

.checingcoda:hover {
    color: var(--stl-4);
}

.inpt-ctnr {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    outline: none;
}

.contact-form .inpt-ctnr {
    background-color: var(--light-color);
    color: #fff;
}

.contact-form .inpt-ctnr:focus {
    box-shadow: 0px 0px 13px var(--stl-4);
}

.contact-form .inpt-ctnr::placeholder {
    color: var(--white);
}

.btn-cntrk-rso {
    display: flex;
    justify-content: center;
    cursor: pointer;
    margin: 25px 0px;
}

.allthumb-cont-rso {
    display: flex;

}

.thumb-cont-address-rso {
    display: flex;
    gap: 15px;
    margin: 25px 0px;
    flex-wrap: wrap;
    justify-content: center;

}

.thumb-cont-address-rso li {
    cursor: pointer;
    width: 100%;
    background-color: var(--white);
    padding: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--black-color);
    justify-content: center;
    border: 2px dashed var(--stl-4);
    border-radius: var(--border-r);
}

.ctnraa-rso {
    color: var(--black-color);
}

.thumb-cont-address-rso li:hover .ctnraa-rso {
    color: var(--stl-4);

}

@media (min-width: 768px) {
    .thumb-cont-address-rso li {
        width: calc(33.33% - 15px);
    }
}

.thumb-cont-address-rso li:hover span {
    fill: var(--stl-4);
}

.thumb-cont-address-rso a {
    word-break: break-all;
}

.box-address-rso {
    background-color: var(--white);
    padding: 10px;
    margin-bottom: 25px;
    border: 2px dashed var(--stl-4);
    border-radius: var(--border-r);
}

.box-address-rso p {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--black-color);
    text-align: center;
}

.privacy-section-rso {
    word-break: break-all;
    padding: 45px 0px;
}

.privacy-rso {
    color: var(--white);
}

.aboutus-section-page-rso {
    padding: 45px 0px;
}

.thumba-about-rso {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-direction: row;

}

@media (max-width: 767px) {
    .thumba-about-rso {
        flex-direction: column;
    }
}

.box-about-us-page-rso {
    flex: 1;
}

.descrip-about-rso {
    color: var(--white);
}

.gallery {
    --g: 8px;
    --s: 400px;

    display: grid;
    border-radius: 50%;
}

.gallery &gt; img {
    grid-area: 1/1;
    width: 400px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    transform: translate(var(--_x, 0), var(--_y, 0));

    z-index: 0;
    transition: .3s, z-index 0s .3s;
}

.gallery img:hover {
    --_i: 1;
    z-index: 1;
    transition: transform .2s, clip-path .3s .2s, z-index 0s;
}

.gallery:hover img {
    transform: translate(0, 0);
}

.gallery &gt; img:nth-child(1) {
    clip-path: polygon(50% 50%, calc(50% * var(--_i, 0)) calc(120% * var(--_i, 0)), 0 calc(100% * var(--_i, 0)), 0 0, 100% 0, 100% calc(100% * var(--_i, 0)), calc(100% - 50% * var(--_i, 0)) calc(120% * var(--_i, 0)));
    --_y: calc(-1 * var(--g))
}

.gallery &gt; img:nth-child(2) {
    clip-path: polygon(50% 50%, calc(100% - 120% * var(--_i, 0)) calc(50% * var(--_i, 0)), calc(100% - 100% * var(--_i, 0)) 0, 100% 0, 100% 100%, calc(100% - 100% * var(--_i, 0)) 100%, calc(100% - 120% * var(--_i, 0)) calc(100% - 50% * var(--_i, 0)));
    --_x: var(--g)
}

.gallery &gt; img:nth-child(3) {
    clip-path: polygon(50% 50%, calc(100% - 50% * var(--_i, 0)) calc(100% - 120% * var(--_i, 0)), 100% calc(100% - 120% * var(--_i, 0)), 100% 100%, 0 100%, 0 calc(100% - 100% * var(--_i, 0)), calc(50% * var(--_i, 0)) calc(100% - 120% * var(--_i, 0)));
    --_y: var(--g)
}

.gallery &gt; img:nth-child(4) {
    clip-path: polygon(50% 50%, calc(120% * var(--_i, 0)) calc(50% * var(--_i, 0)), calc(100% * var(--_i, 0)) 0, 0 0, 0 100%, calc(100% * var(--_i, 0)) 100%, calc(120% * var(--_i, 0)) calc(100% - 50% * var(--_i, 0)));
    --_x: calc(-1 * var(--g))
}


.section-main-page-rso {
    padding: 45px 0px;
}


.thumb-img-main-rso {
    display: flex;
    justify-content: center;
    position: relative;
}

.main-page-rso {
    border-radius: var(--border-r);
    border: 2px dashed var(--stl-4);
    object-fit: contain;
    height: auto;
    z-index: 2;
    position: relative;

}

@media (min-width: 576px) and (max-width: 991px) {
    .main-page-rso {
        width: 60%;
    }
}

@media (min-width: 992px) {
    .main-page-rso {
        width: 49%;
    }
}

.txt-main-page-rso {
    color: var(--gray-color);
}

.section-page-frame {
    padding: 45px 0px;
}

.game-main-rso {
    width: 100%;
    height: 420px;
}

.vbn-btn-1 {
    border: 2px solid var(--stl-4);
    background-color: var(--stl-4);
    color: var(--white);
    text-align: center;
    text-transform: none;
    border-radius: 10px;
    justify-content: center;
    padding: 16px 26px;
    line-height: 1em;
    transition: all .3s;
    display: flex;
    cursor: pointer;
}

.vbn-btn-1:hover {
    background-color: var(--white);
    color: var(--stl-4);
}

.vbn-btn-2 {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    border: 3px solid var(--stl-4);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    background-color: transparent;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    font-family: inherit;
}

.vbn-btn-2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--stl-4);
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}

.vbn-btn-2:hover::before {
    transform: translateX(0);
}

.vbn-btn-3 {
    display: block;
    width: fit-content;
    max-width: 100%;
    text-decoration: none;
    color: var(--stl-4);
    text-transform: uppercase;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    line-height: 46px;
    padding: 0 28px;
    position: relative;
    cursor: pointer;
}

.vbn-btn-3:hover {
    color: var(--white);
    border-color: var(--stl-4);
}

.vbn-btn-4 {
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background-color: transparent;
    cursor: pointer;
    border-radius: 10px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.vbn-btn-4:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-color);
}

.vbn-btn-4:active {
    box-shadow: 0 0 10px var(--stl-4);
}

.vbn-btn-5 {
    background: #282936;
    padding: 10px 2rem;
    outline: 2.5px solid var(--stl-4);
    outline-offset: 3px;
    border: 0;
    color: white;
    font-size: 1rem;
    border-radius: 100rem;
    transition: 0.4s;
    font-weight: 600;
    cursor: pointer;
}

.vbn-btn-5:hover {
    outline-offset: 4.5px;
    background: var(--stl-4);
}

.vbn-btn-5:hover::after {
    opacity: 1;
}

#g1 {
    display: flex;
}

.scroll-to-top {
    z-index: 9999;
    direction: initial;
    position: fixed;
    bottom: 20px;
    right: 30px;
    width: 60px;
    height: 60px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-icon {
    position: absolute;
    z-index: 10;
    left: 15px;
    top: 11px;
}

.arrow-icon path {
    stroke: var(--accent-color);
}

.progress-ring {
    fill: var(--stl-4);
    transform: rotate(-90deg);
}

.progress-ring__circle {
    transition: 0.35s stroke-dashoffset;
    transform-origin: 50% 50%;
    stroke: var(--stl-4)
}


/* Age Verification Popup Styles */
.age-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-popup-box {
    background: var(--dark-color);
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-20);
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
    font-family: 'Merriweather Sans', sans-serif;
}

.age-popup-title {
    font-size: clamp(24px, 5vw, 32px);
    color: var(--accent-color);
    margin-bottom: var(--gap-25-30);
}

.age-popup-message {
    font-size: 1rem;
    margin-bottom: var(--gap-25-30);
    color: var(--light-gray);
    opacity: 0.9;
}

.age-popup-buttons {
    display: flex;
    justify-content: space-between;
    gap: var(--gap-25-30);
}

.age-popup-button {
    flex: 1;
    padding: 12px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: var(--border-20);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.age-popup-button.yes {
    background-color: var(--accent-color);
    color: var(--black-color);
}

.age-popup-button.yes:hover {
    background-color: var(--stl-2);
}

.age-popup-button.no {
    background-color: var(--red-color);
    color: var(--white);
}

.age-popup-button.no:hover {
    background-color: var(--stl-4);
}


/*  */

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}
.bg-dark {
    background-color: var(--black-color);
}
.text-white {
  color: #fff !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.d-flex {
    display: flex;
}
.flex-wrap {
    flex-wrap: wrap;
}
.align-items-center {
    align-items: center;
}
.justify-content-between {
    justify-content: space-between;
}
.mb-0 {
    margin-bottom: 0;
}
.text-primary {
  color: var(--accent-color) !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-md-0 {
margin-top: 0 !important;
}
.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #787878;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgba(0, 0, 0, 0);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 10px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
                border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn-primary {
  color: var(--black-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.btn-primary:hover {
  color: var(--black-color);
  background-color: #d5ad62;
  border-color: #d5ad62;
}
.btn-check:focus + .btn-primary,
.btn-primary:focus {
  color: var(--black-color);
  background-color: var(--dark-color);
  border-color: var(--dark-color);
  box-shadow: 0 0 0 0.25rem rgba(0, 177, 112, 0.5);
}
.me-2 {
  margin-right: 0.5rem !important;
}
.btn-outline-light {
  color: #f8f8f8;
  border-color: #f8f8f8;
}
.btn-outline-light:hover {
  color: var(--black-color);
  background-color: #f8f8f8;
  border-color: #f8f8f8;
}
.btn-check:focus + .btn-outline-light,
.btn-outline-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 248, 248, 0.5);
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    outline: 0;
}
.bg-white {
  background-color: #fff;
}
.p-5 {
  padding: 3rem;
}
.rounded {
  border-radius: 10px;
}
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}
.mb-3 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: .425rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}
.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  appearance: none;
}
.form-check-input[type="checkbox"] {
  border-radius: 0.25em;
}
.form-check-input[type="radio"] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #80e8c2;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 208, 132, 0.25);
}
.form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.form-check-input:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.gap-2 {
  gap: 0.5rem !important;
}
.btn-outline-secondary {
  color: #17303b;
  border-color: #17303b;
}
</pre></body></html>