@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {

    --accent-color: #f70188;
    --dark-color: #4b3b1f;
    --black-color: #1A1A1A;
    --bg-color: #012A4A;

    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
    /* --heading-color: #001973;  */
    --heading-color: #3B2F2F;
    

    --stl-1: #78f701;
    --stl-2: #f7ca01;
    --stl-3: #f73201;
    --stl-4: #f70188;
    --stl-5: #D87D2E;
    --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(--bg-color);
    color: #D6C7A1;
    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-otg {
    position: relative;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.title-otg {
    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-otg::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: 7%;
    }

    #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-otg {
    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-otg {
    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-otg {
    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-otg {
        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-otg {
    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-otg {
    padding: 45px 0px;
}

.about-thumb-otg {
    display: flex;
    gap: var(--gap-30-40);
    flex-direction: row;
}

@media (max-width: 991px) {
    .about-thumb-otg {

        flex-direction: column;
    }
}

.about-box-otg {
    flex: 1;
}

.about-box-img-otg {
    position: relative;
}

@media (max-width: 991px) {
    .about-box-img-otg {
        height: 380px;
    }
}

.about-box-img-otg 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-otg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #353535;
    left: 0;
    top: 0;
    transform: rotate(5deg);
}

.txt-aboutus-idx-otg {
    color: var(--white);
    font-size: clamp(16px, 4vw, 18px);
    font-weight: 600;
}

.btn-aboutus-idx-otg {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.step-section-otg {
    padding: 45px 0px;
}

.step-thumb-otg {
    display: flex;
    gap: var(--gap-25-30);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 25px;
}

.step-all-box-otg:hover .step-box-otg {
    border: 2px solid var(--accent-color);

}

.step-all-box-otg {
    width: 100%;
}

.step-box-margin-otg {
    margin-top: 40px;
}

.step-box-otg {
    padding: 46px 28px 43px;
    border: 2px solid #666;
    border-radius: 5px;
    transition: .3s;
}

@media (min-width: 767px) and (max-width: 1199px) {
    .step-all-box-otg {
        width: calc(50% - 30px);
    }
}

@media (min-width: 1200px) {
    .step-all-box-otg {
        width: calc(25% - 30px);
    }
}

.step-num-otg {
    position: relative;
    padding-left: 16px;
    display: flex;
}

.step-content-otg p {
    color: var(--light-gray);
}

.step-num-otg 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-otg:hover .step-num-otg span {
    background-color: var(--accent-color);
    color: #fff
}

.step-num-otg 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-otg:hover .step-num-otg span:before {
    border-bottom-color: var(--accent-color);

}

.step-num-otg 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-otg:hover .step-num-otg span:after {
    border-left-color: var(--accent-color);

}

.game-section-otg {
    padding: 45px 0px;
}

.game-title-margin-top-otg {
    margin-top: 55px;
}

.game-box-thumb-otg {
    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-otg {
        flex-direction: column-reverse;
    }
}

.game-box-thumb-otg:last-child {
    margin-bottom: 0;
}

.game-item-box-otg {
    flex: 1;
}

.game-txt-otg {
    color: var(--light-gray);
    text-align: center;
}

.game-img-otg {
    position: relative;
    height: 320px;
}

.game-img-otg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #353535;
    left: 0;
    top: 0;
    transform: rotate(5deg);
}

.game-img-otg 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-otg {
    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-otg-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-otg-games2 {
        display: none;
    }
}

.card-bg-otg {
    width: 100%;
    height: 100%;
}

.card-bg-otg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767px) {
    .card-bg-otg 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-otg {
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    color: var(--white);
}

@media (min-width: 768px) {
    .card-btn-otg {
        display: flex;
        justify-content: center;
    }
}

.card-btn-otg: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
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
  margin-bottom: 40px;
  
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  background-color: color-mix(in srgb, var(--default-color), transparent 10%);
  overflow: hidden;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--heading-color);
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--white);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}


.faq-section-otg {
    padding: 45px 0px;
}


.form-section-otg {
    padding: 45px 0px;
    position: relative;
    width: 100vw;
    overflow: hidden;
    background: url(../images/contact-1.webp) no-repeat center center;
    background-size: cover;
}

.form-section-otg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    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(--bg-color);
    color: #fff;
}

.input-group_group--block::placeholder {
    color: var(--white);
}

.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: #fff;
}

.textarea-group_group--block::placeholder {
    color: var(--white);
}

.textarea-group_group--block:focus {
    box-shadow: 0px 0px 13px var(--stl-4);
}

.forms-width-otg {
    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-otg {

        padding: 15px;
    }
}

.forms-width-otg label {
    color: var(--white);
}

.cntr {
    display: flex;
    gap: 7px;
}

.check-color-otg {
    font-size: clamp(12px, 4vw, 17px);
}

.checingcoda {
    color: var(--white);
}

.checingcoda:hover {
    color: var(--stl-4);
}

.btn-form-otg {
    display: flex;
    justify-content: center;
    margin: 25px 0px;

}

.disclaimer-section-otg {
    padding: 45px 0px;
}


.thumb-block-discl-otg {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
}

.img-bg-discl-otg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.09;
}

.img-bg-discl-otg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 992px) {
    .thumb-block-discl-otg {
        max-width: 1024px;
    }
}


.txt-diclaimer-otg {
    color: var(--white);
    text-align: center;
    font-size: clamp(18px, 4vw, 21px);
}

.footer-section-otg {
    padding: 45px 0px;
    background-color: var(--black-color);
}

.thumb-logo-footer-otg {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

@media (max-width: 575px) {
    .thumb-logo-footer-otg {
        flex-direction: column;
    }
}

.link-logo-footer-otg {
    display: flex;
    align-items: center;
    gap: 7px;
}

.box-logo-footer-otg {
    width: 75px;
}

.logo-footer-otg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.centered-logo-footer-otg {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.footer-icons-otg {
    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-otg {
    width: 75px;
}

.img-18-otg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flex-link-politik-otg {
    margin: 25px 0px;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.footer-links-otg {
    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-otg:hover {
    background-position: 0;
    background-image: linear-gradient(to right, var(--stl-4), var(--stl-4) 50%, var(--light-gray) 50%);
}

.footer-links-otg::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-otg:hover::before {
    width: 100%;
}

.copy-title {
    text-align: center;
    color: var(--white);
}

.contacts-section-otg {
    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-otg {
    align-items: center;
    display: flex;
    gap: 7px;
}

.check-color-otg {
    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(--bg-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-otg {
    display: flex;
    justify-content: center;
    cursor: pointer;
    margin: 25px 0px;
}

.allthumb-cont-otg {
    display: flex;

}

.thumb-cont-address-otg {
    display: flex;
    gap: 15px;
    margin: 25px 0px;
    flex-wrap: wrap;
    justify-content: center;

}

.thumb-cont-address-otg 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-otg {
    color: var(--black-color);
}

.thumb-cont-address-otg li:hover .ctnraa-otg {
    color: var(--stl-4);

}

@media (min-width: 768px) {
    .thumb-cont-address-otg li {
        width: calc(33.33% - 15px);
    }
}

.thumb-cont-address-otg li:hover span {
    fill: var(--stl-4);
}

.thumb-cont-address-otg a {
    word-break: break-all;
}

.box-address-otg {
    background-color: var(--white);
    padding: 10px;
    margin-bottom: 25px;
    border: 2px dashed var(--stl-4);
    border-radius: var(--border-r);
}

.box-address-otg p {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--black-color);
    text-align: center;
}

.privacy-section-otg {
    word-break: break-all;
    padding: 45px 0px;
}

.privacy-otg {
    color: var(--white);
}

.aboutus-section-page-otg {
    padding: 45px 0px;
}

.thumba-about-otg {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-direction: row;

}

@media (max-width: 767px) {
    .thumba-about-otg {
        flex-direction: column;
    }
}

.box-about-us-page-otg {
    flex: 1;
}

.descrip-about-otg {
    color: var(--white);
}

.gallery {
    --g: 8px;
    --s: 400px;

    display: grid;
    border-radius: 50%;
}

.gallery > 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 > 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 > 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 > 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 > 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-otg {
    padding: 45px 0px;
}


.thumb-img-main-otg {
    display: flex;
    justify-content: center;
    position: relative;
}

.main-page-otg {
    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-otg {
        width: 60%;
    }
}

@media (min-width: 992px) {
    .main-page-otg {
        width: 49%;
    }
}

.txt-main-page-otg {
    color: var(--white);
}

.section-page-frame {
    padding: 45px 0px;
}

.game-main-otg {
    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: white;
    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(--white);
}

.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: 700px;
    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(--heading-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");
}

.error-message {
    color: red;
    font-size: 14px;
}

.gap-2 {
  gap: 0.5rem !important;
}
.btn-outline-secondary {
  color: #17303b;
  border-color: #17303b;
}
