:root {
    --olean-primary: #14E0FF;
    --olean-secondary: #FF2FD0;
    --olean-accent: #FFD447;
    --olean-bg: #090B1D;
    --olean-surface: #141B36;
    --olean-text-primary: #EAF6FF;
    --olean-text-secondary: #A8BCD7;
    --olean-font-heading: 'Orbitron', sans-serif;
    --olean-font-body: 'Rajdhani', sans-serif;
    --olean-radius: 4px;
    --olean-shadow: 0 8px 32px rgba(255, 47, 208, 0.15);
    --olean-border: 1px solid rgba(20, 224, 255, 0.2);
}

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

body.olean_body {
    font-family: var(--olean-font-body);
    background-color: var(--olean-bg);
    color: var(--olean-text-primary);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 500;
    overflow-x: hidden;
}

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

a {
    color: var(--olean-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--olean-secondary);
}

.olean_container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.olean_heading_xl {
    font-family: var(--olean-font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(20, 224, 255, 0.5);
    line-height: 1.1;
}

.olean_heading_primary {
    font-family: var(--olean-font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--olean-primary);
}

.olean_heading_secondary {
    font-family: var(--olean-font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
    color: var(--olean-text-primary);
}

.olean_heading_tertiary {
    font-family: var(--olean-font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--olean-secondary);
}

.olean_text_body {
    margin-bottom: 1.5rem;
    color: var(--olean-text-secondary);
}

.olean_text_highlight {
    color: var(--olean-accent);
    font-weight: bold;
}

.olean_center {
    text-align: center;
}

.olean_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--olean-font-heading);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--olean-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    text-decoration: none;
}

.olean_btn_primary {
    background: linear-gradient(45deg, var(--olean-secondary), var(--olean-primary));
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 47, 208, 0.4);
}

.olean_btn_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 47, 208, 0.6);
    color: #fff;
}

.olean_btn_secondary {
    background: transparent;
    border: 2px solid var(--olean-primary);
    color: var(--olean-primary);
}

.olean_btn_secondary:hover {
    background: rgba(20, 224, 255, 0.1);
    color: var(--olean-primary);
}

.olean_btn_large {
    padding: 16px 32px;
    font-size: 1.2rem;
}

.olean_section {
    padding: 80px 0;
    position: relative;
}

.olean_section_dark {
    background-color: var(--olean-surface);
    border-top: var(--olean-border);
    border-bottom: var(--olean-border);
}

.olean_header {
    background-color: rgba(9, 11, 29, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(20, 224, 255, 0.3);
}

.olean_header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.olean_logo {
    font-family: var(--olean-font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--olean-primary);
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(20, 224, 255, 0.5);
}

.olean_nav_list {
    display: flex;
    gap: 30px;
    list-style: none;
}

.olean_nav_link {
    font-family: var(--olean-font-heading);
    color: var(--olean-text-secondary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
}

.olean_nav_link:hover,
.olean_nav_link.olean_active {
    color: var(--olean-primary);
}

.olean_age_badge_compact {
    background: var(--olean-secondary);
    color: #fff;
    padding: 4px 8px;
    font-weight: bold;
    border-radius: 2px;
    font-size: 0.8rem;
}

.olean_burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 101;
}

.olean_burger_line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--olean-primary);
    position: absolute;
    left: 0;
    transition: 0.3s;
}

.olean_burger_line:nth-child(1) { top: 0; }
.olean_burger_line:nth-child(2) { top: 11px; }
.olean_burger_line:nth-child(3) { top: 22px; }

.olean_burger.is-open .olean_burger_line:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}
.olean_burger.is-open .olean_burger_line:nth-child(2) {
    opacity: 0;
}
.olean_burger.is-open .olean_burger_line:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .olean_nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background-color: var(--olean-surface);
        border-left: var(--olean-border);
        padding: 40px 20px;
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    .olean_nav.is-open {
        right: 0;
    }
    .olean_nav_list {
        flex-direction: column;
        gap: 20px;
    }
    .olean_burger {
        display: block;
    }
}

.olean_hero_diagonal {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--olean-bg);
}

.olean_hero_diagonal_image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.olean_hero_img_cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: contrast(1.2) saturate(1.5);
}

.olean_hero_diagonal_image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--olean-bg) 0%, transparent 100%);
}

.olean_hero_diagonal_content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.olean_hero_content_inner {
    max-width: 600px;
    background: rgba(9, 11, 29, 0.8);
    padding: 40px;
    border: var(--olean-border);
    border-left: 4px solid var(--olean-primary);
    backdrop-filter: blur(5px);
}

.olean_proof_sticker {
    display: inline-block;
    background: var(--olean-secondary);
    color: #fff;
    padding: 6px 12px;
    font-family: var(--olean-font-heading);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 20px;
    transform: rotate(-2deg);
}

.olean_hero_ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--olean-primary);
    color: var(--olean-bg);
    padding: 10px 0;
    font-family: var(--olean-font-heading);
    font-weight: bold;
    font-size: 0.9rem;
    overflow: hidden;
    z-index: 3;
}

.olean_ticker_track {
    display: flex;
    white-space: nowrap;
    animation: olean-ticker 20s linear infinite;
}

.olean_ticker_track span {
    padding: 0 20px;
}

@keyframes olean-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .olean_hero_diagonal {
        min-height: 60vh;
    }
    .olean_hero_diagonal_image {
        width: 100%;
        clip-path: none;
    }
    .olean_hero_diagonal_image::after {
        background: linear-gradient(0deg, var(--olean-bg) 30%, transparent 100%);
    }
    .olean_hero_content_inner {
        padding: 20px;
        margin-top: 40px;
    }
}

.olean_social_games_zone {
    display: grid;
    grid-template-columns: 1fr;
    max-width: clamp(820px, 72vw, 900px);
    width: 100%;
    margin-inline: auto;
    gap: clamp(20px, 3vw, 28px);
    padding-inline: clamp(14px, 3vw, 24px);
    margin-bottom: 40px;
}

.olean_game_card {
    background: var(--olean-surface);
    border: var(--olean-border);
    border-radius: var(--olean-radius);
    padding: 20px;
    box-shadow: var(--olean-shadow);
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
}

.olean_game_card_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.olean_game_title {
    font-family: var(--olean-font-heading);
    font-size: 1.2rem;
    color: var(--olean-text-primary);
}

.olean_game_tag {
    background: rgba(20, 224, 255, 0.1);
    color: var(--olean-primary);
    padding: 4px 8px;
    font-size: 0.8rem;
    border-radius: 2px;
    text-transform: uppercase;
}

.olean_slot_stage {
    background-color: #05060A;
    border: 2px solid var(--olean-secondary);
    border-radius: 4px;
    position: relative;
    min-height: clamp(240px, 18vw, 320px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
    box-shadow: inset 0 0 20px rgba(255, 47, 208, 0.2);
}

.olean_slot_reel_window {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.olean_slot_reel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(20, 224, 255, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 100%;
    padding: 10px;
}

.olean_slot_symbol {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(20, 224, 255, 0.5));
}

.olean_slot_payline {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--olean-secondary);
    box-shadow: 0 0 10px var(--olean-secondary);
    z-index: 3;
    transform: translateY(-50%);
    opacity: 0.7;
    pointer-events: none;
}

.olean_wheel_stage {
    background-color: #05060A;
    border: 2px solid var(--olean-primary);
    border-radius: 4px;
    position: relative;
    aspect-ratio: 1/1;
    max-width: 340px;
    margin: 0 auto;
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(20, 224, 255, 0.2);
}

.olean_wheel_img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform-origin: center;
    border-radius: 50%;
    grid-area: 1/1;
    z-index: 1;
}

.olean_wheel_pointer {
    grid-area: 1/1;
    place-self: start center;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid var(--olean-secondary);
    z-index: 2;
    transform: translateY(-5px);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.olean_game_controls {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
    background: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 4px;
}

.olean_bet_choices {
    display: flex;
    gap: 10px;
    width: 100%;
}

.olean_bet_choice_btn {
    flex: 1;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--olean-text-secondary);
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s;
}

.olean_bet_choice_btn.olean_active {
    background: rgba(20, 224, 255, 0.2);
    border-color: var(--olean-primary);
    color: var(--olean-primary);
}

.olean_bet_selector {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 120px;
}

.olean_bet_selector label {
    font-size: 0.8rem;
    color: var(--olean-text-secondary);
    text-transform: uppercase;
}

.olean_select {
    background: var(--olean-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--olean-text-primary);
    padding: 10px;
    border-radius: 2px;
    font-family: var(--olean-font-body);
    font-size: 1rem;
    cursor: pointer;
}

.olean_btn_play {
    flex: 1;
    min-width: 150px;
}

.olean_game_status {
    background: rgba(0,0,0,0.4);
    padding: 10px;
    border-radius: 2px;
    text-align: center;
    font-family: var(--olean-font-heading);
    font-size: 0.9rem;
    color: var(--olean-accent);
    min-height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.olean_game_history {
    font-size: 0.8rem;
    color: var(--olean-text-secondary);
    margin-top: 5px;
    font-family: var(--olean-font-body);
}

@media (max-width: 768px) {
    .olean_social_games_zone {
        padding-inline: 10px;
    }
    .olean_slot_stage {
        min-height: 200px;
    }
    .olean_game_controls {
        flex-direction: column;
        align-items: stretch;
    }
}

.olean_lobby_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.olean_page_header {
    padding: 60px 0 40px;
    text-align: center;
    border-bottom: var(--olean-border);
    margin-bottom: 40px;
}

.olean_page_header_bg {
    background: linear-gradient(rgba(9, 11, 29, 0.8), rgba(9, 11, 29, 0.9)), url('images/midnight-rooftop.webp') center/cover;
}

.olean_wallet_terminal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #05060A;
    border-top: 2px solid var(--olean-primary);
    padding: 10px 0;
    z-index: 90;
    box-shadow: 0 -5px 20px rgba(20, 224, 255, 0.1);
}

.olean_wallet_inner {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.olean_wallet_stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--olean-font-heading);
}

.olean_wallet_label {
    color: var(--olean-text-secondary);
    text-transform: uppercase;
    font-size: 0.8rem;
}

.olean_wallet_value {
    color: var(--olean-accent);
    font-weight: bold;
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(255, 212, 71, 0.5);
}

.olean_grid_split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.olean_framed_media {
    padding: 20px;
    border: var(--olean-border);
    background: rgba(255,255,255,0.02);
    position: relative;
}

.olean_framed_media::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--olean-primary);
    border-left: 2px solid var(--olean-primary);
}

.olean_stat_panel {
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    background: #05060A;
    border-radius: 4px;
}

.olean_stat_item {
    text-align: center;
}

.olean_stat_value {
    display: block;
    font-family: var(--olean-font-heading);
    font-size: 3rem;
    color: var(--olean-primary);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.olean_stat_label {
    color: var(--olean-text-secondary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.olean_cards_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.olean_card {
    background: var(--olean-surface);
    padding: 30px;
    border: var(--olean-border);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.olean_card:hover {
    transform: translateY(-5px);
    border-color: var(--olean-secondary);
}

.olean_card_title {
    font-family: var(--olean-font-heading);
    color: var(--olean-primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.olean_feature_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: var(--olean-border);
    background: var(--olean-surface);
    overflow: hidden;
}

.olean_feature_content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

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

.olean_feature_result {
    margin-top: 15px;
    font-family: var(--olean-font-heading);
    color: var(--olean-accent);
    min-height: 24px;
}

@media (max-width: 768px) {
    .olean_grid_split,
    .olean_feature_box {
        grid-template-columns: 1fr;
    }
}

.olean_faq_accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.olean_faq_item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.olean_faq_trigger {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--olean-text-primary);
    font-family: var(--olean-font-heading);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.olean_faq_trigger::after {
    content: '+';
    color: var(--olean-primary);
    font-size: 1.5rem;
}

.olean_faq_trigger[aria-expanded="true"]::after {
    content: '-';
}

.olean_faq_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.olean_faq_content p {
    padding-bottom: 20px;
    color: var(--olean-text-secondary);
}

.olean_form_group {
    margin-bottom: 20px;
}

.olean_form_group label {
    display: block;
    margin-bottom: 8px;
    color: var(--olean-primary);
    font-family: var(--olean-font-heading);
    font-size: 0.9rem;
}

.olean_input,
.olean_textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-family: var(--olean-font-body);
    font-size: 1rem;
    border-radius: 2px;
}

.olean_input:focus,
.olean_textarea:focus {
    outline: none;
    border-color: var(--olean-primary);
}

.olean_contact_info_box {
    background: rgba(255,255,255,0.02);
    padding: 20px;
    border-left: 3px solid var(--olean-secondary);
    margin-bottom: 20px;
}

.olean_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 6, 10, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.olean_modal_overlay.is-hidden {
    display: none;
}

.olean_modal_content {
    background: var(--olean-surface);
    border: 2px solid var(--olean-primary);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 50px rgba(20, 224, 255, 0.2);
    position: relative;
}

.olean_age_gate_badge {
    width: 60px;
    height: 60px;
    background: var(--olean-secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--olean-font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(255, 47, 208, 0.4);
}

.olean_toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--olean-surface);
    color: var(--olean-text-primary);
    padding: 12px 24px;
    border-radius: 4px;
    border-left: 4px solid var(--olean-primary);
    box-shadow: var(--olean-shadow);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
    pointer-events: none;
}

.olean_toast.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.olean_footer {
    background-color: #05060A;
    padding: 60px 0 100px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.olean_footer_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.olean_footer_heading {
    font-family: var(--olean-font-heading);
    color: var(--olean-text-primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.olean_footer_text,
.olean_footer_identity p {
    color: var(--olean-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.olean_footer_links {
    list-style: none;
}

.olean_footer_links li {
    margin-bottom: 10px;
}

.olean_footer_links a {
    color: var(--olean-text-secondary);
    font-size: 0.9rem;
}

.olean_footer_links a:hover {
    color: var(--olean-primary);
}

.olean_footer_partners {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.olean_partner_logo {
    height: 40px;
    width: auto;
    border-radius: 4px;
    padding: 5px;
}

.olean_bg_dark {
    background: #111;
}

.olean_bg_light {
    background: #fff;
}

.olean_footer_bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    position: relative;
}

.olean_footer_disclaimer {
    color: var(--olean-text-secondary);
    font-size: 0.8rem;
    margin-bottom: 10px;
    max-width: 800px;
    margin-inline: auto;
}

.olean_copyright {
    color: var(--olean-text-secondary);
    font-size: 0.8rem;
}

.olean_easter_egg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    cursor: pointer;
    opacity: 0;
}

.olean_legal_body .olean_footer {
    padding-bottom: 40px;
}

.olean_legal_body .olean_wallet_terminal {
    display: none;
}

.olean_policy_main {
    padding: 60px 0;
}

.olean_policy_content {
    background: var(--olean-surface);
    padding: 40px;
    border: var(--olean-border);
    border-radius: 4px;
    color: var(--olean-text-secondary);
}

/* footer-logo-contrast-guard-v2 */
a[href*="begambleaware.org"],
a[href*="gambleaware"] {
  background: #ffffff !important;
  color: #111111 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.45rem 0.7rem !important;
  border-radius: 0.7rem !important;
  box-sizing: border-box !important;
}

a[href*="begambleaware.org"] img,
a[href*="begambleaware.org"] picture,
a[href*="begambleaware.org"] .partner-logo,
img[src*="gambleaware"],
img[alt*="BeGambleAware" i],
img[alt*="GambleAware" i] {
  background: #ffffff !important;
  padding: 0.45rem 0.7rem !important;
  border-radius: 0.7rem !important;
  box-sizing: border-box !important;
}

a[href*="gamcare.org"] {
  background: #111111 !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.45rem 0.7rem !important;
  border-radius: 0.7rem !important;
  box-sizing: border-box !important;
}

a[href*="gamcare.org"] img,
a[href*="gamcare.org"] picture,
a[href*="gamcare.org"] .partner-logo,
img[src*="gamcare"],
img[alt*="GamCare" i] {
  background: #111111 !important;
  padding: 0.45rem 0.7rem !important;
  border-radius: 0.7rem !important;
  box-sizing: border-box !important;
}

/* social-game-layering-guard-v4 */
[data-home-live-game],
[data-game-card],
[data-slot-game],
[data-slot-stage],
[data-wheel-game],
[data-wheel-stage],
[data-mechanic],
[class*="game_wrapper"],
[class*="game-wrapper"],
[class*="game_board"],
[class*="game-board"],
[class*="slot_board"],
[class*="slot-board"],
[class*="roulette_board"],
[class*="roulette-board"] {
  position: relative !important;
  isolation: isolate !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

[class*="slot"][class*="frame"],
[class*="slot"][class*="bg"],
[class*="slot"][class*="background"],
img[class*="slot_frame"],
img[class*="slot-frame"],
img[class*="frame_img"],
img[class*="frame-img"],
[data-game-mechanic="slot"] [class*="game_visual"] > img:first-child,
[data-game-mechanic="slot"] [class*="game-visual"] > img:first-child,
[data-game-mechanic="slot"] img[class*="game_bg"],
[data-game-mechanic="slot"] img[class*="game-bg"] {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

[class*="roulette"][class*="wheel"] img,
img[class*="roulette"][class*="wheel"],
[data-wheel-img] {
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  transform-origin: center !important;
  border-radius: 50% !important;
  clip-path: circle(50% at 50% 50%) !important;
  pointer-events: none !important;
}

[data-wheel-stage],
[data-wheel-game] [class*="wheel_stage"],
[data-wheel-game] [class*="wheel-stage"],
[class*="wheel_board"],
[class*="wheel-board"],
[class*="roulette_board"],
[class*="roulette-board"] {
  aspect-ratio: 1 / 1 !important;
  position: relative !important;
  overflow: hidden !important;
  display: grid !important;
  place-items: center !important;
}

[data-game-mechanic="slot"] [class*="game_visual"],
[data-game-mechanic="slot"] [class*="game-visual"] {
  min-height: clamp(260px, 42vw, 560px) !important;
  aspect-ratio: 4 / 3 !important;
  position: relative !important;
  overflow: hidden !important;
}

[data-slot-stage],
[data-slot-game] [class*="slot_stage"],
[data-slot-game] [class*="slot-stage"],
[data-game-mechanic="slot"] [class*="slot_board"],
[data-game-mechanic="slot"] [class*="slot-board"] {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  aspect-ratio: 16 / 7 !important;
  display: grid !important;
  align-items: center !important;
}

[data-slot-reel-window],
[data-slot-game] [class*="slot_reel_window"],
[data-slot-game] [class*="slot-reel-window"],
[data-slot-game] [class*="reel_window"],
[data-slot-game] [class*="reel-window"] {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: clamp(170px, 22vw, 320px) !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: clamp(0.55rem, 1.5vw, 1.2rem) !important;
  overflow: hidden !important;
  position: relative !important;
}

[class*="slot_reels"],
[class*="slot-reels"],
[class*="reels"],
[data-home-live-game] [data-reel-index] {
  position: absolute !important;
  left: 10% !important;
  right: 10% !important;
  top: 35% !important;
  bottom: 35% !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: clamp(0.45rem, 1.4vw, 1.1rem) !important;
  z-index: 60 !important;
  pointer-events: none !important;
}

[data-slot-symbol],
[class*="slot_symbol"],
[class*="slot-symbol"],
[class*="reel"] img,
[data-home-live-game] [data-reel-index] img {
  position: relative !important;
  z-index: 70 !important;
  display: block !important;
  width: clamp(72px, 62%, 170px) !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 88% !important;
  object-fit: contain !important;
}

[class*="slot_reel"]:not([class*="window"]),
[class*="slot-reel"]:not([class*="window"]),
[data-slot-reel],
[data-home-live-game] [data-reel-index] {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: clamp(72px, 10vw, 150px) !important;
  background: rgba(2, 8, 18, 0.88) !important;
  border: 2px solid rgba(255,255,255,0.78) !important;
  border-radius: 0.85rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16), 0 0.9rem 1.8rem rgba(0,0,0,0.35) !important;
}

[class*="roulette"][class*="pointer"],
[class*="wheel"][class*="pointer"],
[data-wheel-pointer],
[data-home-live-game] [data-roulette-bet],
[data-home-live-game] [class*="game_ui"],
[data-home-live-game] [class*="game-ui"],
[data-home-live-game] [class*="game_controls"],
[data-home-live-game] [class*="game-controls"],
[data-home-live-game] [class*="bet"],
[data-home-live-game] [class*="result"],
[data-home-live-game] [class*="status"],
[data-home-live-game] button,
[data-home-live-game] select,
[data-home-live-game] input {
  position: relative !important;
  z-index: 90 !important;
}
