*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    background: #0a050a
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #f0f0f0;
    background: #0a050a;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

a {
    color: #d4a81c;
    text-decoration: none;
    transition: color .2s
}

a:hover {
    color: #08d460
}

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

ul {
    list-style: none
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.box {
    background: #1a0f1a;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 24px
}

.content {
    background: #1a0f1a
}

.dp-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .02em;
    transition: transform .15s, box-shadow .15s, background .15s, color .15s;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1
}

.dp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .4)
}

.dp-btn--play {
    background: #08d460;
    color: #03180d
}

.dp-btn--play:hover {
    background: #06c254;
    color: #03180d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 212, 96, .35)
}

.dp-btn--bonus {
    background: #d4a81c;
    color: #1a0f00
}

.dp-btn--bonus:hover {
    background: #c09618;
    color: #1a0f00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 28, .35)
}

.dp-btn--demo {
    background: transparent;
    color: #f0f0f0;
    border: 2px solid rgba(255, 255, 255, .3)
}

.dp-btn--demo:hover {
    border-color: #08d460;
    color: #08d460
}

.dp-btn--lg {
    padding: 13px 28px;
    font-size: .95rem;
    border-radius: 10px
}

.dp-btn--sm {
    padding: 7px 14px;
    font-size: .78rem;
    border-radius: 6px
}

.dp-btn--block {
    width: 100%;
    justify-content: center
}

.dp-btn-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0
}

.dp-section-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #d4a81c;
    margin-bottom: 18px;
}

.dp-header-z2n {
    padding: 0;
    margin-bottom: 0;
    border-radius: 0;
    background: #66005b;
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5);
    transition: box-shadow .2s
}

.dp-hdr-wrap {
    max-width: 100%;
    padding: 0
}

.dp-header-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 24px;
    height: 64px;
    max-width: 1200px;
    margin: 0 auto
}

.dp-logo-link {
    flex-shrink: 0
}

.dp-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain
}

.dp-header-nav-wrap {
    display: flex;
    flex: 1;
    justify-content: center
}

.dp-nav-list {
    display: flex;
    gap: 2px;
    align-items: center
}

.dp-nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    border-radius: 6px;
    color: rgba(255, 255, 255, .85);
    font-size: .82rem;
    font-weight: 600;
    transition: background .15s, color .15s
}

.dp-nav-link:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff
}

.dp-nav-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0
}

.dp-header-lang {
    position: relative;
    flex-shrink: 0
}

.dp-lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .9);
    font-size: .8rem;
    font-weight: 600;
    transition: background .15s;
    border: none;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer
}

.dp-lang-btn:hover {
    background: rgba(255, 255, 255, .18)
}

.dp-lang-globe {
    width: 13px;
    height: 13px
}

.dp-lang-chevron {
    width: 10px;
    height: 8px;
    transition: transform .2s
}

.dp-lang-picker.open .dp-lang-chevron {
    transform: rotate(180deg)
}

.dp-lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #3d0038;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    min-width: 158px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .5);
    z-index: 100
}

.dp-lang-picker.open .dp-lang-dropdown {
    display: block
}

.dp-lang-opt a {
    display: block;
    padding: 9px 14px;
    color: rgba(255, 255, 255, .8);
    font-size: .82rem;
    transition: background .15s
}

.dp-lang-opt a:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff
}

.dp-lang-active a {
    color: #08d460
}

.dp-header-ctas {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0
}

.dp-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    border-radius: 4px;
    z-index: 950
}

.dp-burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, .9);
    border-radius: 2px;
    transition: transform .25s, opacity .25s
}

.dp-burger.active .dp-burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.dp-burger.active .dp-burger-line:nth-child(2) {
    opacity: 0
}

.dp-burger.active .dp-burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.dp-hero-zone {
    position: relative
}

.dp-hero {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
    overflow: hidden
}

.dp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(108deg, rgba(6, 2, 12, .93) 38%, rgba(90, 0, 82, .68) 70%, rgba(6, 2, 12, .45))
}

.dp-hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 70px 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto
}

.dp-hero-content {
    max-width: 580px
}

.dp-hero-badge {
    display: inline-block;
    background: rgba(212, 168, 28, .18);
    border: 1px solid rgba(212, 168, 28, .6);
    color: #d4a81c;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px
}

.dp-hero-title {
    font-size: clamp(2rem, 4.8vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 12px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .5)
}

.dp-hero-subtitle {
    font-size: .98rem;
    color: rgba(255, 255, 255, .72);
    margin-bottom: 24px
}

.dp-hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.dp-hero-stat {
    text-align: center
}

.dp-stat-val {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: #08d460;
    line-height: 1
}

.dp-stat-lbl {
    display: block;
    font-size: .68rem;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-top: 3px
}

.dp-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.dp-hero-img-wrap {
    flex-shrink: 0
}

.dp-hero-game-img {
    max-width: 300px;
    filter: drop-shadow(0 8px 36px rgba(8, 212, 96, .28))
}

.dp-content-wrap {
    padding-top: 28px;
    padding-bottom: 40px
}

.dp-main-c8v {
    display: flex;
    flex-direction: column;
    gap: 0
}

.dp-demo-section {
    display: grid;
    grid-template-columns:1fr 400px;
    gap: 24px;
    align-items: start;
    margin-bottom: 0
}

.dp-demo-left, .dp-demo-right {
    display: flex;
    flex-direction: column
}

.dp-demo-frame-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.dp-demo-label {
    font-size: .76rem;
    font-weight: 700;
    color: #08d460;
    text-transform: uppercase;
    letter-spacing: .07em
}

.dp-demo-iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    border: 2px solid rgba(212, 168, 28, .25);
    min-height: 280px;
    display: block
}

.dp-demo-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.dp-demo-age {
    background: #66005b;
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    flex-shrink: 0
}

.dp-demo-note {
    font-size: .76rem;
    color: rgba(255, 255, 255, .5);
    flex: 1
}

.dp-details-box {
    flex: 1
}

.dp-details-title {
    font-size: 1.15rem
}

.dp-details-scroll {
    overflow-x: auto
}

.dp-details-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .84rem
}

.dp-details-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: background .15s
}

.dp-details-table tr:hover {
    background: rgba(255, 255, 255, .04)
}

.dp-detail-key {
    padding: 8px 10px 8px 4px;
    color: rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    white-space: nowrap
}

.dp-detail-val {
    padding: 8px 4px;
    color: #f0f0f0;
    font-weight: 600;
    text-align: right
}

.dp-detail-val strong {
    color: #08d460
}

.dp-detail-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #d4a81c
}

.dp-review-wrap {
    margin-bottom: 0
}

.dp-review-box-r5x {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.dp-review-content {
    padding-top: 4px
}

.dp-review-content h2 {
    color: #d4a81c;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 1.4em 0 .5em
}

.dp-review-content h3 {
    color: #e8d890;
    font-size: 1rem;
    font-weight: 700;
    margin: 1.2em 0 .4em
}

.dp-review-content p {
    color: #ddd;
    line-height: 1.72;
    margin-bottom: .95em;
    font-size: .93rem
}

.dp-review-content ul {
    padding-left: 1.4em;
    margin-bottom: 1em
}

.dp-review-content ul li {
    list-style: disc;
    color: #ccc;
    margin-bottom: .4em;
    font-size: .92rem
}

.dp-review-content em {
    color: #d4a81c;
    font-style: normal;
    font-weight: 600
}

.dp-review-content a {
    color: #d4a81c
}

.dp-review-content a:hover {
    color: #08d460
}

.dp-text-block-m2p {
    padding-top: 0
}

.dp-proscons-wrap .dp-proscons-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 20px
}

.dp-proscons-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, .07)
}

.dp-pc-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0
}

.dp-pros-header {
    color: #08d460
}

.dp-cons-header {
    color: #e05050
}

.dp-pc-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.dp-pc-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .88rem;
    color: #ddd;
    line-height: 1.55
}

.dp-pc-bullet {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px
}

.dp-winners-wrap {
}

.dp-winners-sub {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 16px
}

.dp-winners-table-wrap {
    overflow-x: auto
}

.dp-winners-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .84rem;
    min-width: 460px
}

.dp-winners-table thead tr {
    background: #250020;
    border-bottom: 2px solid #d4a81c
}

.dp-winners-table thead th {
    padding: 9px 14px;
    text-align: left;
    color: #d4a81c;
    font-weight: 700;
    white-space: nowrap;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .06em
}

.dp-winners-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    transition: background .15s
}

.dp-winners-table tbody tr:hover {
    background: rgba(255, 255, 255, .04)
}

.dp-winners-table tbody td {
    padding: 9px 14px;
    color: #e0e0e0
}

.dp-rank {
    font-weight: 700;
    color: rgba(255, 255, 255, .45);
    font-size: .8rem
}

.dp-player {
    font-weight: 600;
    color: #f5f5f5
}

.dp-win {
    color: #08d460;
    font-weight: 700
}

.dp-multi {
    color: #d4a81c;
    font-weight: 600;
    text-align: right
}

.dp-time {
    color: rgba(255, 255, 255, .4);
    font-size: .76rem;
    text-align: right
}

.dp-medal {
    margin-right: 2px
}

.dp-gold {
    color: #d4a81c
}

.dp-silver {
    color: #aaa
}

.dp-bronze {
    color: #cd7f32
}

.dp-winners-disclaimer {
    font-size: .7rem;
    color: rgba(255, 255, 255, .3);
    margin-top: 10px
}

.dp-screenshots-wrap {
}

.dp-screenshots-slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #0a050a
}

.dp-slider-track {
    display: flex;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1)
}

.dp-slide {
    flex: 0 0 100%;
    position: relative
}

.dp-slide-img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 16/9;
    display: block
}

.dp-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .82));
    color: #fff;
    padding: 20px 16px 10px;
    font-size: .84rem;
    font-weight: 600;
    border-radius: 0 0 10px 10px
}

.dp-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(90, 0, 82, .8);
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background .2s;
    border: none;
    cursor: pointer
}

.dp-slider-btn:hover {
    background: #66005b
}

.dp-slider-prev {
    left: 10px
}

.dp-slider-next {
    right: 10px
}

.dp-slider-btn svg {
    width: 20px;
    height: 20px
}

.dp-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0 4px
}

.dp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
    padding: 0
}

.dp-dot-active, .dp-dot:hover {
    background: #d4a81c;
    transform: scale(1.3)
}

.dp-faq-section {
}

.dp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.dp-faq-item {
    border: 1.5px solid rgba(255, 255, 255, .07);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s
}

.dp-faq-item.dp-faq-open {
    border-color: rgba(212, 168, 28, .3)
}

.dp-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    text-align: left;
    color: #f0f0f0;
    font-weight: 600;
    font-size: .91rem;
    gap: 12px;
    transition: background .15s;
    background: transparent;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif
}

.dp-faq-q:hover {
    background: rgba(255, 255, 255, .03)
}

.dp-faq-item.dp-faq-open .dp-faq-q {
    color: #d4a81c
}

.dp-faq-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform .25s;
    color: #d4a81c
}

.dp-faq-item.dp-faq-open .dp-faq-arrow {
    transform: rotate(180deg)
}

.dp-faq-a {
    padding: 0 18px 14px;
    font-size: .88rem;
    color: #bbb;
    line-height: 1.68
}

.dp-faq-a p {
    margin-bottom: .5em
}

.dp-faq-a strong {
    color: #e8e8e8
}

.dp-casinos-section {
}

.dp-casinos-sub {
    font-size: .86rem;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 20px
}

.dp-casinos-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.dp-casino-card {
    background: #200820;
    border: 1.5px solid rgba(212, 168, 28, .18);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color .2s, transform .2s, box-shadow .2s
}

.dp-casino-card:hover {
    border-color: rgba(212, 168, 28, .55);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .4)
}

.dp-casino-rank {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .82rem;
    flex-shrink: 0;
    align-self: flex-start
}

.dp-rank-1 {
    background: #d4a81c;
    color: #1a0f00
}

.dp-rank-2 {
    background: #aaa;
    color: #111
}

.dp-rank-3 {
    background: #cd7f32;
    color: #111
}

.dp-casino-info {
    flex: 1
}

.dp-casino-name {
    font-weight: 800;
    font-size: 1rem;
    color: #f5f5f5;
    margin-bottom: 6px
}

.dp-casino-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 8px
}

.dp-casino-stars svg {
    width: 13px;
    height: 13px
}

.dp-casino-rating {
    font-size: .8rem;
    font-weight: 700;
    color: #d4a81c;
    margin-left: 4px
}

.dp-casino-features {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.dp-casino-features li {
    font-size: .8rem;
    color: #ccc;
    padding-left: 15px;
    position: relative;
    line-height: 1.4
}

.dp-casino-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #08d460;
    font-size: .75rem;
    font-weight: 700
}

.dp-casino-cta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto
}

.dp-casino-t18 {
    font-size: .66rem;
    color: rgba(255, 255, 255, .3);
    text-align: center
}

.dp-footer-container {
    padding: 0 24px
}

.dp-footer {
    background: #400038;
    border-radius: 16px 16px 0 0;
    margin-bottom: 0
}

.dp-footer-top {
    display: grid;
    grid-template-columns:1.5fr 1fr 1fr 1.5fr;
    gap: 32px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.dp-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.dp-footer-logo {
    height: 38px;
    width: auto
}

.dp-footer-tagline {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.55
}

.dp-footer-provider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px
}

.dp-footer-prov-label {
    font-size: .7rem;
    color: rgba(255, 255, 255, .38);
    white-space: nowrap
}

.dp-footer-provider-logo {
    height: 26px;
    width: auto;
    opacity: .7;
    filter: brightness(1.3)
}

.dp-footer-nav-title {
    font-size: .72rem;
    font-weight: 700;
    color: #d4a81c;
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: 10px
}

.dp-footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.dp-footer-link {
    font-size: .82rem;
    color: rgba(255, 255, 255, .6);
    transition: color .15s, padding-left .15s
}

.dp-footer-link:hover {
    color: #08d460;
    padding-left: 3px
}

.dp-footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px
}

.dp-trust-badge {
    display: inline-flex;
    align-items: center
}

.dp-trust-svg {
    height: 20px;
    width: auto
}

.dp-footer-au {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 6px
}

.dp-au-flag {
    border-radius: 2px
}

.dp-au-label {
    font-size: .76rem;
    color: rgba(255, 255, 255, .5)
}

.dp-footer-payments {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 20px;
    margin-bottom: 20px
}

.dp-payments-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px
}

.dp-payment-badge {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .11);
    color: rgba(255, 255, 255, .65);
    font-size: .72rem;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 5px;
    letter-spacing: .02em
}

.dp-footer-social {
    margin-bottom: 16px
}

.dp-social-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
    transition: color .15s
}

.dp-social-link:hover {
    color: #08d460
}

.dp-social-link svg {
    width: 16px;
    height: 16px
}

.dp-footer-legal {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 16px;
    margin-bottom: 12px
}

.dp-footer-disclaimer {
    font-size: .73rem;
    color: rgba(255, 255, 255, .38);
    line-height: 1.62
}

.dp-footer-disclaimer a {
    color: rgba(255, 255, 255, .5)
}

.dp-footer-copyright {
    font-size: .7rem;
    color: rgba(255, 255, 255, .28);
    text-align: center
}

.dp-widget {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 800;
    background: #3d0038;
    border: 2px solid rgba(212, 168, 28, .35);
    border-radius: 14px;
    box-shadow: 0 8px 36px rgba(0, 0, 0, .55);
    overflow: hidden;
    width: 276px;
    transition: box-shadow .2s
}

.dp-widget:hover {
    box-shadow: 0 12px 44px rgba(0, 0, 0, .65)
}

.dp-widget-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, .9);
    font-weight: 700;
    font-size: .84rem;
    transition: background .15s;
    background: transparent;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif
}

.dp-widget-toggle:hover {
    background: rgba(255, 255, 255, .06)
}

.dp-widget-icon {
    width: 18px;
    height: 18px;
    color: #d4a81c;
    flex-shrink: 0
}

.dp-widget-label {
    flex: 1;
    text-align: left
}

.dp-widget-chevron {
    width: 16px;
    height: 14px;
    transition: transform .25s;
    color: #d4a81c;
    flex-shrink: 0
}

.dp-widget.collapsed .dp-widget-chevron {
    transform: rotate(180deg)
}

.dp-widget-body {
    padding: 0 12px 12px
}

.dp-widget.collapsed .dp-widget-body {
    display: none
}

.dp-widget-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.dp-widget-item:last-of-type {
    border-bottom: none
}

.dp-widget-rank {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #d4a81c;
    color: #1a0f00;
    font-size: .7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.dp-widget-info {
    flex: 1;
    min-width: 0
}

.dp-widget-name {
    font-weight: 700;
    font-size: .8rem;
    color: #f5f5f5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.dp-widget-bonus {
    font-size: .7rem;
    color: #d4a81c;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.dp-widget-disclaimer {
    font-size: .63rem;
    color: rgba(255, 255, 255, .28);
    text-align: center;
    padding-top: 6px
}

.dp-info-page .dp-content-wrap {
    padding-top: 32px;
    padding-bottom: 48px
}

.dp-info-box-n7q {
    max-width: 860px;
    margin: 0 auto
}

.dp-info-inner h1 {
    font-size: 1.85rem;
    font-weight: 900;
    color: #d4a81c;
    margin-bottom: 20px;
}

.dp-info-inner h2 {
    color: #d4a81c;
    font-size: 1.1rem;
    margin: 1.6em 0 .55em;
    font-weight: 700
}

.dp-info-inner p {
    color: #ccc;
    line-height: 1.72;
    margin-bottom: .9em;
    font-size: .93rem
}

.dp-info-inner ul {
    padding-left: 1.4em;
    margin-bottom: 1em
}

.dp-info-inner ul li {
    list-style: disc;
    color: #bbb;
    margin-bottom: .4em;
    font-size: .9rem
}

.dp-info-inner table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    overflow-x: auto;
    display: block
}

.dp-info-inner table th, .dp-info-inner table td {
    text-align: left;
    padding: 10px 14px;
    border: 1.5px solid rgba(255, 255, 255, .1);
    font-size: .88rem
}

.dp-info-inner table th {
    background: rgba(102, 0, 91, .35);
    color: #d4a81c;
    font-weight: 600
}

.dp-info-inner table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .03)
}

.dp-info-inner a {
    color: #d4a81c
}

.dp-info-inner a:hover {
    color: #08d460
}

.dp-info-inner strong {
    color: #eee;
    font-weight: 700
}

.dp-info-inner em {
    font-style: italic;
    color: #ccc
}

.dp-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 520px
}

.dp-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.dp-form-label {
    font-size: .8rem;
    font-weight: 600;
    color: #bbb
}

.dp-form-input {
    background: #200820;
    border: 1.5px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    padding: 10px 14px;
    color: #f0f0f0;
    font-family: 'Montserrat', sans-serif;
    font-size: .9rem;
    transition: border-color .15s;
    outline: none
}

.dp-form-input:focus {
    border-color: #d4a81c
}

.dp-form-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23d4a81c' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px;
    padding-right: 32px
}

.dp-form-textarea {
    resize: vertical;
    min-height: 120px
}

.dp-form-note {
    font-size: .72rem;
    color: rgba(255, 255, 255, .35);
    margin-top: -4px
}

.dp-form-success {
    background: rgba(8, 212, 96, .1);
    border: 1.5px solid #08d460;
    border-radius: 8px;
    padding: 16px 20px;
    color: #08d460;
    font-weight: 600;
    font-size: .9rem;
    margin-top: 8px
}

.dp-nav-open body {
    overflow: hidden
}

@keyframes dp-fadein {
    from {
        opacity: 0;
        transform: translateY(16px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.dp-anim-in {
    animation: dp-fadein .5s ease forwards
}

@media (max-width: 1080px) {
    .dp-demo-section {
        grid-template-columns:1fr
    }

    .dp-casinos-grid {
        grid-template-columns:1fr 1fr
    }

    .dp-footer-top {
        grid-template-columns:1fr 1fr;
        gap: 24px
    }
}

@media (max-width: 820px) {
    .dp-header-nav-wrap {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #3d0038;
        flex-direction: column;
        padding: 24px 20px;
        overflow-y: auto;
        z-index: 899
    }

    .dp-header-nav-wrap.open {
        display: flex
    }

    .dp-nav-list {
        flex-direction: column;
        width: 100%;
        gap: 2px
    }

    .dp-nav-link {
        font-size: .95rem;
        padding: 12px 14px;
        border-radius: 8px
    }

    .dp-burger {
        display: flex
    }

    .dp-hero-container {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px
    }

    .dp-hero-stats {
        justify-content: center
    }

    .dp-hero-ctas {
        justify-content: center
    }

    .dp-hero-img-wrap {
        display: none
    }

    .dp-proscons-wrap .dp-proscons-grid {
        grid-template-columns:1fr
    }

    .dp-casinos-grid {
        grid-template-columns:1fr
    }

    .dp-footer-top {
        grid-template-columns:1fr
    }

    .dp-widget {
        bottom: 12px;
        right: 12px;
        width: 252px
    }
}

@media (max-width: 500px) {
    .container {
        padding: 0 14px
    }

    .dp-footer-container {
        padding: 0 14px
    }

    .dp-header-inner {
        padding: 0 14px
    }

    .box {
        padding: 18px 16px
    }

    .dp-hero-title {
        font-size: 1.7rem
    }

    .dp-btn--lg {
        padding: 11px 20px;
        font-size: .88rem
    }

    .dp-section-title {
        font-size: 1.2rem
    }

    .dp-demo-iframe {
        min-height: 200px
    }

    .dp-widget {
        width: calc(100vw - 24px);
        right: 12px
    }
}

.dp-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

html,
body {
    width: 100%;
    max-width: 100%;
}

.wrapper,
main,
section,
.container,
.box,
.dp-main-c8v,
.dp-content-wrap {
    min-width: 0;
}

img,
svg,
video,
canvas {
    max-width: 100%;
}

.dp-header-nav-wrap {
    visibility: visible;
    pointer-events: auto;
}

@media (max-width: 1080px) {

    .container,
    .dp-header-inner,
    .dp-hero-container,
    .dp-footer-container {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .dp-demo-section {
        display: grid;
        grid-template-columns:1fr;
        gap: 20px;
        width: 100%;
        min-width: 0;
    }

    .dp-demo-left,
    .dp-demo-right,
    .dp-demo-frame-wrap,
    .dp-details-box {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .dp-casinos-grid {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .dp-footer-top {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 820px) {

    body.dp-menu-open {
        overflow: hidden;
    }

    .dp-header-z2n {
        position: sticky;
        top: 0;
        z-index: 9999;
        width: 100%;
    }

    .dp-header-inner {
        height: 62px;
        min-height: 62px;
        padding: 0 14px;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .dp-logo-link {
        min-width: 0;
        max-width: 150px;
    }

    .dp-logo-img {
        width: auto;
        max-width: 100%;
        height: 36px;
    }

    .dp-header-lang {
        margin-left: auto;
    }

    .dp-header-ctas {
        gap: 6px;
        margin-left: auto;
    }

    .dp-header-ctas .dp-btn {
        padding: 7px 10px;
        font-size: .72rem;
        white-space: nowrap;
    }

    .dp-burger {
        position: relative;
        z-index: 10002;
        display: flex;
        width: 40px;
        height: 40px;
        padding: 8px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        flex-shrink: 0;
    }

    .dp-burger-line {
        display: block;
        width: 23px;
        height: 2px;
        background: #fff;
        border-radius: 3px;
        transition: transform .25s ease, opacity .25s ease;
    }

    .dp-burger.active .dp-burger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .dp-burger.active .dp-burger-line:nth-child(2) {
        opacity: 0;
    }

    .dp-burger.active .dp-burger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .dp-header-nav-wrap {
        display: flex;
        position: fixed;
        top: 62px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9998;
        width: 100%;
        height: calc(100dvh - 62px);
        padding: 18px 14px 90px;
        background: #3d0038;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);
        transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    }

    .dp-header-nav-wrap.open {
        display: flex;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .dp-nav-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 6px;
    }

    .dp-nav-list li {
        width: 100%;
    }

    .dp-nav-link {
        width: 100%;
        min-height: 48px;
        padding: 12px 14px;
        border-radius: 8px;
        font-size: .95rem;
        color: #fff;
        background: rgba(255, 255, 255, .04);
    }

    .dp-nav-link:hover,
    .dp-nav-link:focus {
        background: rgba(255, 255, 255, .1);
        color: #fff;
    }

    .dp-hero {
        min-height: auto;
        background-position: center;
    }

    .dp-hero-container {
        display: block;
        width: 100%;
        padding: 38px 16px;
        text-align: left;
    }

    .dp-hero-content {
        width: 100%;
        max-width: 100%;
    }

    .dp-hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.12;
        overflow-wrap: anywhere;
    }

    .dp-hero-subtitle {
        font-size: .92rem;
        line-height: 1.6;
    }

    .dp-hero-stats {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: 12px;
        width: 100%;
    }

    .dp-hero-stat {
        padding: 12px 8px;
        border-radius: 8px;
        background: rgba(255, 255, 255, .05);
    }

    .dp-hero-ctas {
        display: grid;
        grid-template-columns:1fr;
        gap: 10px;
        width: 100%;
    }

    .dp-hero-ctas .dp-btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }

    .dp-hero-img-wrap {
        display: none;
    }

    .dp-content-wrap {
        width: 100%;
        padding-top: 18px;
        padding-bottom: 28px;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }

    .box {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 18px 14px;
        margin-bottom: 16px;
        border-radius: 10px;
        overflow: hidden;
    }

    .dp-section-title {
        max-width: 100%;
        font-size: 1.2rem;
        line-height: 1.3;
        overflow-wrap: anywhere;
    }

    .dp-demo-section {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .dp-demo-left,
    .dp-demo-right {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .dp-demo-frame-wrap {
        position: relative;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 14px;
        overflow: visible;
        isolation: isolate;
    }

    .dp-demo-frame-wrap::before,
    .dp-demo-frame-wrap::after {
        display: none;
        content: none;
        pointer-events: none;
    }

    .dp-demo-iframe {
        position: relative;
        z-index: 10;
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 16/9;
        border-radius: 8px;
        border: 2px solid rgba(212, 168, 28, .25);
        pointer-events: auto;
        touch-action: auto;
        transform: none;
    }

    .dp-demo-footer {
        display: grid;
        grid-template-columns:auto 1fr;
        gap: 10px;
        align-items: center;
        width: 100%;
    }

    .dp-demo-footer .dp-btn {
        grid-column: 1/-1;
        width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }

    .dp-details-scroll,
    .dp-winners-table-wrap,
    .dp-info-inner table {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .dp-details-table {
        width: 100%;
        min-width: 520px;
    }

    .dp-detail-key,
    .dp-detail-val {
        white-space: nowrap;
    }

    .dp-review-box-r5x,
    .dp-review-content,
    .dp-text-block-m2p {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .dp-review-content p,
    .dp-review-content li,
    .dp-review-content h1,
    .dp-review-content h2,
    .dp-review-content h3,
    .dp-review-content h4,
    .dp-info-inner p,
    .dp-info-inner li {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .dp-review-content img,
    .dp-review-content video,
    .dp-review-content iframe,
    .dp-info-inner img,
    .dp-info-inner video,
    .dp-info-inner iframe {
        display: block;
        width: auto;
        max-width: 100%;
        height: auto;
    }

    .dp-review-content pre,
    .dp-info-inner pre {
        max-width: 100%;
        overflow-x: auto;
    }

    .dp-review-content a,
    .dp-info-inner a {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .dp-proscons-wrap .dp-proscons-grid {
        grid-template-columns:1fr;
        gap: 14px;
    }

    .dp-proscons-grid > * {
        min-width: 0;
    }

    .dp-winners-table {
        min-width: 620px;
    }

    .dp-screenshots-slider {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .dp-slider-track {
        width: 100%;
        min-width: 0;
    }

    .dp-slide {
        flex: 0 0 100%;
        width: 100%;
        min-width: 0;
    }

    .dp-slide-img {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        object-fit: cover;
    }

    .dp-slider-btn {
        width: 36px;
        height: 36px;
    }

    .dp-casinos-grid {
        grid-template-columns:1fr;
        gap: 14px;
    }

    .dp-casino-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 16px;
    }

    .dp-casino-name,
    .dp-casino-features li {
        overflow-wrap: anywhere;
    }

    .dp-casino-cta .dp-btn {
        width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }

    .dp-faq-list {
        width: 100%;
        gap: 8px;
    }

    .dp-faq-item {
        width: 100%;
        max-width: 100%;
    }

    .dp-faq-q {
        width: 100%;
        padding: 14px;
        font-size: .88rem;
        line-height: 1.45;
    }

    .dp-faq-a {
        padding: 0 14px 14px;
        font-size: .84rem;
    }

    .dp-footer-container {
        width: 100%;
        padding: 0 12px;
    }

    .dp-footer {
        width: 100%;
        padding: 18px 14px;
        border-radius: 12px 12px 0 0;
    }

    .dp-footer-top {
        grid-template-columns:1fr;
        gap: 22px;
    }

    .dp-footer-provider,
    .dp-footer-trust-badges,
    .dp-payments-list {
        width: 100%;
        flex-wrap: wrap;
    }

    .dp-footer-provider {
        align-items: flex-start;
    }

    .dp-widget {
        right: 8px;
        bottom: 8px;
        width: min(280px, calc(100vw - 16px));
        max-width: calc(100vw - 16px);
        z-index: 900;
    }

}

@media (max-width: 500px) {

    .dp-header-lang {
        display: none;
    }

    .dp-header-ctas .dp-btn:first-child {
        display: none;
    }

    .dp-header-inner {
        padding: 0 10px;
    }

    .dp-logo-link {
        max-width: 125px;
    }

    .dp-logo-img {
        height: 32px;
    }

    .dp-hero-container {
        padding: 30px 12px;
    }

    .dp-hero-stats {
        grid-template-columns:1fr 1fr;
        gap: 8px;
    }

    .dp-stat-val {
        font-size: 1.1rem;
    }

    .dp-stat-lbl {
        font-size: .62rem;
    }

    .container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .box {
        padding: 15px 10px;
        border-radius: 8px;
    }

    .dp-demo-frame-wrap {
        padding: 8px;
    }

    .dp-demo-iframe {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 9/16;
        border-radius: 6px;
    }

    .dp-demo-label {
        font-size: .66rem;
        line-height: 1.4;
    }

    .dp-demo-note {
        font-size: .68rem;
    }

    .dp-details-table {
        min-width: 500px;
    }

    .dp-section-title {
        font-size: 1.08rem;
    }

    .dp-review-content p,
    .dp-review-content li,
    .dp-info-inner p,
    .dp-info-inner li {
        font-size: .87rem;
    }

    .dp-slider-btn {
        width: 32px;
        height: 32px;
    }

    .dp-slider-prev {
        left: 5px;
    }

    .dp-slider-next {
        right: 5px;
    }

    .dp-footer {
        padding: 16px 10px;
    }

    .dp-widget {
        width: calc(100vw - 12px);
        max-width: calc(100vw - 12px);
        right: 6px;
        bottom: 6px;
    }

}

#demo {
    position: relative;
    width: 100%;

}

#demo .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

#demo .section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
    color: #d4a81c;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.2;
    font-weight: 800;
    overflow-wrap: anywhere;
}

#demo .section-title svg {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

#demo .section-divider {
    width: 72px;
    height: 3px;
    margin: 0 0 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, #d4a81c, #08d460);
}

#demo .section-sub {
    max-width: 760px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, .7);
    font-size: .96rem;
    line-height: 1.7;
}

#demo .demo-block {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border: 1px solid rgba(212, 168, 28, .28);
    border-radius: 16px;
    background: #1a0f1a;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .35);
}

#demo .demo-frame-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    aspect-ratio: 16/9;
    background: #000;
    isolation: isolate;
}

#demo .demo-frame-wrap::before,
#demo .demo-frame-wrap::after {
    display: none;
    content: none;
    pointer-events: none;
}

#demo .demo-frame-wrap iframe {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    min-width: 0;
    border: 0;
    background: #000;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    touch-action: auto;
    transform: none;
}

#demo .demo-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .025);
}

#demo .demo-cta-text {
    flex: 1;
    min-width: 0;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: .9rem;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

#demo .demo-cta-text strong {
    color: #d4a81c;
}

#demo .demo-cta-bar .btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 9px;
    white-space: nowrap;
    text-align: center;
}

#demo .demo-cta-bar .btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

@media (max-width: 820px) {

    #demo {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    #demo .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    #demo .section-title {
        align-items: flex-start;
        font-size: 1.45rem;
    }

    #demo .section-title svg {
        margin-top: 2px;
    }

    #demo .section-sub {
        margin-bottom: 18px;
        font-size: .9rem;
    }

    #demo .demo-block {
        border-radius: 12px;
    }

    #demo .demo-frame-wrap {
        aspect-ratio: 16/10;
    }

    #demo .demo-cta-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 16px;
    }

    #demo .demo-cta-text {
        width: 100%;
        text-align: left;
    }

    #demo .demo-cta-bar .btn {
        width: 100%;
        white-space: normal;
    }

}

@media (max-width: 520px) {

    #demo {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    #demo .container {
        padding-left: 8px;
        padding-right: 8px;
    }

    #demo .section-title {
        gap: 8px;
        font-size: 1.2rem;
    }

    #demo .section-title svg {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
    }

    #demo .section-divider {
        width: 56px;
        margin-bottom: 12px;
    }

    #demo .section-sub {
        font-size: .84rem;
        line-height: 1.6;
    }

    #demo .demo-block {
        border-radius: 9px;
    }

    #demo .demo-frame-wrap {
        aspect-ratio: 9/16;
        min-height: 520px;
    }

    #demo .demo-cta-bar {
        padding: 14px 10px;
    }

    #demo .demo-cta-text {
        font-size: .8rem;
        text-align: center;
    }

    #demo .demo-cta-bar .btn {
        min-height: 48px;
        padding: 12px 14px;
        font-size: .84rem;
    }

}

@media (max-width: 820px) {

    body.dp-menu-open {
        overflow: hidden !important;
    }

    .dp-header-z2n {
        position: sticky !important;
        top: 0 !important;
        z-index: 100000 !important;
        overflow: visible !important;
    }

    .dp-header-inner {
        position: relative !important;
        z-index: 100001 !important;
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        height: 64px !important;
        min-height: 64px !important;
        padding: 0 12px !important;
        overflow: visible !important;
    }

    .dp-header-logo {
        flex: 0 1 auto !important;
        min-width: 0 !important;
    }

    .dp-logo-link {
        display: flex !important;
        align-items: center !important;
        max-width: 115px !important;
    }

    .dp-logo-img {
        display: block !important;
        width: auto !important;
        max-width: 100% !important;
        height: 32px !important;
        object-fit: contain !important;
    }

    .dp-header-ctas {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        margin-left: auto !important;
    }

    .dp-header-ctas .dp-btn--play {
        display: none !important;
    }

    .dp-header-ctas .dp-btn--bonus {
        display: inline-flex !important;
        min-height: 34px !important;
        padding: 7px 12px !important;
        font-size: .72rem !important;
    }

    .dp-burger {
        position: relative !important;
        z-index: 100005 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        flex: 0 0 40px !important;
        width: 40px !important;
        height: 40px !important;
        margin-left: 2px !important;
        padding: 8px !important;
        gap: 5px !important;
        border-radius: 8px !important;
        background: rgba(255, 255, 255, .08) !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .dp-burger-line {
        display: block !important;
        width: 23px !important;
        height: 2px !important;
        background: #fff !important;
        border-radius: 3px !important;
        transition: transform .25s ease, opacity .25s ease !important;
    }

    .dp-burger.active .dp-burger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg) !important;
    }

    .dp-burger.active .dp-burger-line:nth-child(2) {
        opacity: 0 !important;
    }

    .dp-burger.active .dp-burger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg) !important;
    }

    body > .dp-header-nav-wrap {
        position: fixed !important;
        top: 64px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 999999 !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: calc(100dvh - 64px) !important;
        margin: 0 !important;
        padding: 18px 14px 90px !important;
        background: #31002d !important;
        border-top: 1px solid rgba(255, 255, 255, .12) !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateX(100%) !important;
        transition: transform .28s ease, opacity .28s ease, visibility .28s ease !important;
    }

    body > .dp-header-nav-wrap.open {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateX(0) !important;
    }

    body > .dp-header-nav-wrap .dp-nav-list {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 8px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    body > .dp-header-nav-wrap .dp-nav-list li {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    body > .dp-header-nav-wrap .dp-nav-link {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        min-height: 52px !important;
        padding: 13px 16px !important;
        gap: 12px !important;
        border: 1px solid rgba(255, 255, 255, .1) !important;
        border-radius: 10px !important;
        background: rgba(255, 255, 255, .06) !important;
        color: #fff !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    body > .dp-header-nav-wrap .dp-nav-link:hover,
    body > .dp-header-nav-wrap .dp-nav-link:focus {
        border-color: rgba(212, 168, 28, .55) !important;
        background: rgba(212, 168, 28, .12) !important;
        color: #d4a81c !important;
    }

    body > .dp-header-nav-wrap .dp-nav-icon {
        display: block !important;
        flex: 0 0 20px !important;
        width: 20px !important;
        height: 20px !important;
        color: #d4a81c !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .dp-menu-backdrop {
        position: fixed !important;
        inset: 64px 0 0 !important;
        z-index: 999998 !important;
        display: block !important;
        background: rgba(0, 0, 0, .68) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: opacity .28s ease, visibility .28s ease !important;
    }

    .dp-menu-backdrop.open {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
}

@media (min-width: 821px) {

    .dp-menu-backdrop {
        display: none !important;
    }

    .dp-header-nav-wrap {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
    }
}