:root {
    --c-primary: #0047AB;
    --c-secondary: #FFD700;
    --c-accent: #F5F5DC;
    --c-bg: #0B1021;
    --c-surface: #14203A;
    --c-text: #FFFFFF;
    --c-text-muted: #B0C4DE;
    --c-nav: #0A1022;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --shadow: 0 8px 30px rgba(0,0,0,0.5);
    --border-rad: 8px;
    --spacing: 2rem;
    --transition: all 0.3s ease;
}

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

body.oro_body {
    font-family: var(--font-body);
    background-color: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    padding-bottom: 60px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--c-secondary);
    margin-bottom: 1rem;
}

a {
    color: var(--c-secondary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    opacity: 0.8;
}

.oro_container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.oro_visually_hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.oro_btn_primary,
.oro_btn_secondary,
.oro_btn_outline,
.oro_btn_sm,
.oro_btn_play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0.75rem 1.5rem;
    text-align: center;
}

.oro_btn_primary {
    background-color: var(--c-secondary);
    color: #000;
}
.oro_btn_primary:hover {
    background-color: #fff;
}

.oro_btn_secondary {
    background-color: var(--c-primary);
    color: var(--c-text);
}
.oro_btn_secondary:hover {
    background-color: #003380;
}

.oro_btn_outline {
    background-color: transparent;
    border: 1px solid var(--c-secondary);
    color: var(--c-secondary);
}
.oro_btn_outline:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

.oro_btn_sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    background: var(--c-surface);
    border: 1px solid var(--c-text-muted);
    color: var(--c-text);
}

.oro_header {
    background-color: var(--c-nav);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}
.oro_header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.oro_logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--c-secondary);
    font-weight: 700;
    letter-spacing: 1px;
}

.oro_nav {
    display: flex;
    gap: 2rem;
}
.oro_nav a {
    color: var(--c-text);
    font-weight: 500;
}
.oro_nav a.active,
.oro_nav a:hover {
    color: var(--c-secondary);
}

.oro_header_right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.oro_age_badge {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
    padding: 2px 6px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 3px;
}

.oro_burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}
.oro_burger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--c-secondary);
    transition: var(--transition);
}

.oro_hero {
    padding: 4rem 0;
    background: var(--c-surface);
    position: relative;
    overflow: hidden;
}
.oro_hero_side_rail {
    display: flex;
    flex-direction: column;
}
.oro_hero_content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    align-items: center;
}

.oro_hero_story h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin: 1rem 0;
}
.oro_hero_story p {
    font-size: 1.2rem;
    color: var(--c-text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}
.oro_badge_strip {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--c-secondary);
    color: var(--c-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.oro_hero_ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.oro_hero_trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--c-text-muted);
}
.oro_trust_icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.oro_hero_rail {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.oro_floating_card {
    background: var(--c-primary);
    padding: 1.5rem;
    border-radius: var(--border-rad);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--c-secondary);
}
.oro_floating_card.oro_bg_dark {
    background: #080C17;
    border-left-color: var(--c-primary);
}
.oro_floating_card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}
.oro_floating_card p {
    font-size: 0.9rem;
    color: var(--c-text-muted);
}
.oro_highlight {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--c-secondary);
    font-weight: bold;
    font-size: 0.85rem;
}

.oro_hero_ticker {
    width: 100%;
    background: var(--c-nav);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 0.75rem 0;
    margin-top: 3rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--c-secondary);
}

.oro_live_games_section {
    padding: 4rem 0;
    background: var(--c-bg);
}
.oro_section_header {
    text-align: center;
    margin-bottom: 3rem;
}
.oro_section_header p {
    color: var(--c-text-muted);
}

.oro_games_stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 960px;
    width: 100%;
    margin-inline: auto;
}

.oro_game_card {
    background: var(--c-surface);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--border-rad);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
    min-width: 0;
}

.oro_game_info h3 {
    margin-bottom: 0.25rem;
}
.oro_game_info p {
    font-size: 0.9rem;
    color: var(--c-text-muted);
}

.oro_slot_stage {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
}
.oro_slot_bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    z-index: 1;
    opacity: 0.4;
}
.oro_slot_reel_window {
    position: relative;
    z-index: 2;
    width: 80%;
    height: 80%;
    max-width: 600px;
    background: rgba(0,0,0,0.6);
    border: 2px solid var(--c-secondary);
    border-radius: 4px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 10px;
}
.oro_payline {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 215, 0, 0.7);
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}
.oro_slot_reel {
    min-width: 0;
    background: rgba(20, 32, 58, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    overflow: hidden;
}
.oro_slot_reel img {
    display: block;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.oro_wheel_stage {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 1/1;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    place-items: center;
}
.oro_wheel_img {
    grid-area: 1/1;
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 50%;
    transform-origin: center;
}
.oro_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: 30px solid var(--c-secondary);
    z-index: 10;
    transform: translateY(-10px);
}

.oro_game_controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    padding: 1rem;
    border-radius: 4px;
}
.oro_bet_select {
    background: #000;
    color: var(--c-secondary);
    border: 1px solid var(--c-primary);
    padding: 0.5rem;
    border-radius: 4px;
    font-family: inherit;
}
.oro_btn_play {
    background: var(--c-secondary);
    color: #000;
    font-size: 1.1rem;
}
.oro_btn_play:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.oro_roulette_choices {
    display: flex;
    gap: 0.5rem;
}
.oro_choice_btn {
    background: var(--c-surface);
    color: var(--c-text);
    border: 1px solid var(--c-text-muted);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}
.oro_choice_btn.selected {
    background: var(--c-primary);
    border-color: var(--c-secondary);
    color: #fff;
}

.oro_game_status {
    text-align: center;
    font-size: 0.95rem;
    color: var(--c-text-muted);
    min-height: 24px;
}
.oro_status_win {
    color: var(--c-secondary);
    font-weight: bold;
}

.oro_games_cta {
    text-align: center;
    margin-top: 3rem;
}

.oro_economy_section {
    padding: 4rem 0;
    background: var(--c-surface);
}
.oro_split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.oro_split_text p {
    color: var(--c-text-muted);
    margin-bottom: 1.5rem;
}
.oro_list {
    list-style: none;
    margin-bottom: 1.5rem;
}
.oro_list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--c-text-muted);
}
.oro_list li::before {
    content: '▪';
    color: var(--c-secondary);
    position: absolute;
    left: 0;
}
.oro_list li strong {
    color: var(--c-text);
}
.oro_text_link {
    text-decoration: underline;
    font-weight: 500;
}

.oro_payment_card {
    background: #000;
    padding: 2rem;
    border-radius: var(--border-rad);
    border: 1px solid var(--c-primary);
    text-align: center;
}
.oro_payment_card h4 {
    margin-bottom: 1.5rem;
}
.oro_gateways {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.oro_gateways span {
    background: var(--c-surface);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.oro_micro_text {
    font-size: 0.8rem;
    color: var(--c-text-muted);
}

.oro_block_smart_bankroll {
    padding: 4rem 0;
    background: var(--c-bg);
}
.oro_card_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.oro_info_card {
    background: var(--c-surface);
    padding: 2rem;
    border-radius: var(--border-rad);
    border-top: 3px solid var(--c-primary);
}
.oro_info_card p {
    color: var(--c-text-muted);
    font-size: 0.95rem;
}

.oro_easter_egg_section {
    padding: 3rem 0;
    text-align: center;
    background: var(--c-nav);
}
.oro_compass_wrapper {
    display: inline-block;
    cursor: pointer;
    padding: 1rem;
}
.oro_hint {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    margin-bottom: 0.5rem;
    font-style: italic;
}
.oro_compass_icon {
    width: 60px;
    height: 60px;
    opacity: 0.5;
    transition: var(--transition);
}
.oro_compass_wrapper:hover .oro_compass_icon {
    opacity: 1;
    transform: scale(1.1);
}
.oro_hidden_msg {
    margin-top: 1rem;
    color: var(--c-secondary);
    font-weight: bold;
    min-height: 24px;
}

.oro_page_content {
    padding: 4rem 0;
}
.oro_page_title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}
.oro_editorial_block {
    max-width: 800px;
    margin: 0 auto 3rem auto;
}
.oro_editorial_block p {
    color: var(--c-text-muted);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.oro_content_img {
    width: 100%;
    border-radius: var(--border-rad);
    margin-top: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.oro_contact_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
.oro_notice_box {
    background: rgba(255, 215, 0, 0.05);
    border-left: 4px solid var(--c-secondary);
    padding: 1rem;
    margin-top: 2rem;
}
.oro_notice_box p {
    font-size: 0.9rem;
    margin-bottom: 0;
}
.oro_form_area {
    background: var(--c-surface);
    padding: 2rem;
    border-radius: var(--border-rad);
}
.oro_form_group {
    margin-bottom: 1.5rem;
}
.oro_form_group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--c-text-muted);
}
.oro_form_group input,
.oro_form_group textarea {
    width: 100%;
    padding: 0.75rem;
    background: #000;
    border: 1px solid var(--c-primary);
    color: #fff;
    border-radius: 4px;
    font-family: inherit;
}

.oro_faq_section {
    max-width: 800px;
    margin: 0 auto;
}
.oro_faq_item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
}
.oro_faq_trigger {
    width: 100%;
    background: var(--c-surface);
    border: none;
    color: var(--c-secondary);
    padding: 1rem;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}
.oro_faq_trigger::after {
    content: '+';
}
.oro_faq_trigger[aria-expanded="true"]::after {
    content: '−';
}
.oro_faq_panel {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--c-bg);
}
.oro_faq_panel p {
    padding: 1rem 0;
    color: var(--c-text-muted);
}

.oro_lobby_bg {
    background: var(--c-bg) url('assets/images/hacienda-cobalt-vault.webp') center/cover no-repeat;
    position: relative;
}
.oro_lobby_bg::before {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(11, 16, 33, 0.85);
}
.oro_lobby_bg .oro_container {
    position: relative;
    z-index: 2;
}
.oro_lobby_split {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    margin-top: 2rem;
}
.oro_game_card.oro_card_large {
    height: 100%;
}
.oro_lobby_side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.oro_rank_panel {
    background: var(--c-surface);
    padding: 1.5rem;
    border-radius: var(--border-rad);
    border: 1px solid var(--c-primary);
}
.oro_rank_status {
    margin-bottom: 1rem;
    color: var(--c-secondary);
    font-weight: bold;
}
.oro_achievements {
    list-style: none;
}
.oro_ach_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: var(--c-text-muted);
}
.oro_ach_item .oro_badge {
    background: var(--c-primary);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
}
.oro_companion_panel {
    margin-top: 2rem;
    background: rgba(45, 107, 255, 0.1);
    border-left: 4px solid var(--c-primary);
    padding: 1.5rem;
}
.oro_companion_content h4 {
    color: var(--c-secondary);
}
.oro_companion_content p {
    font-style: italic;
    color: var(--c-text-muted);
}

.oro_policy_shell {
    background: var(--c-surface);
    padding: 2rem;
    border-radius: var(--border-rad);
    max-width: 800px;
    margin: 0 auto;
}
.oro_policy_shell ul {
    margin-top: 1.5rem;
    padding-left: 1.5rem;
    color: var(--c-text-muted);
}
.oro_policy_shell li {
    margin-bottom: 0.5rem;
}

.oro_footer {
    background: #050811;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}
.oro_footer_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.oro_footer h4 {
    color: var(--c-text);
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
}
.oro_footer p, .oro_footer a {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}
.oro_footer_partners {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
}
.oro_partner_link {
    display: inline-block;
    padding: 0.5rem;
    border-radius: 4px;
}
.oro_partner_link.oro_dark_bg {
    background: #222;
}
.oro_partner_link.oro_light_bg {
    background: #fff;
}
.oro_partner_link img {
    height: 40px;
    width: auto;
    display: block;
}
.oro_footer_disclaimer {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}
.oro_footer_disclaimer p {
    font-size: 0.8rem;
    max-width: 800px;
    margin: 0 auto 0.5rem auto;
}

.oro_wallet_bottom_bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 16, 34, 0.95);
    border-top: 1px solid var(--c-secondary);
    padding: 0.75rem 1.5rem;
    z-index: 90;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(5px);
}
.oro_wallet_inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    width: 100%;
    justify-content: flex-end;
}
.oro_balance_amount {
    color: var(--c-secondary);
    font-weight: bold;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.oro_modal_overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.oro_modal_overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.oro_modal_content {
    background: var(--c-surface);
    padding: 2.5rem;
    border-radius: var(--border-rad);
    max-width: 400px;
    width: 90%;
    position: relative;
    border: 1px solid var(--c-primary);
}
.oro_modal_close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--c-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}
.oro_modal_content h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}
.oro_modal_content p {
    color: var(--c-text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

@keyframes oroSlotSpin {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}
.oro_is_spinning .oro_slot_reel img {
    animation: oroSlotSpin 0.1s infinite alternate linear;
    filter: blur(2px);
}

@keyframes oroWheelSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(1440deg); }
}
.oro_is_spinning .oro_wheel_img {
    animation: oroWheelSpin 2s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@media (max-width: 1024px) {
    .oro_hero_content {
        grid-template-columns: 1fr;
    }
    .oro_lobby_split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .oro_nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--c-nav);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .oro_nav.open {
        display: flex;
    }
    .oro_burger {
        display: flex;
    }
    .oro_header_right .oro_btn_outline,
    .oro_header_right .oro_btn_primary {
        display: none;
    }
    
    .oro_split, .oro_contact_grid {
        grid-template-columns: 1fr;
    }
    
    .oro_hero_story h1 {
        font-size: 2rem;
    }
    
    body.oro_body {
        padding-bottom: 80px;
    }
    .oro_wallet_inner {
        justify-content: space-between;
    }
}

@media (max-width: 360px) {
    .oro_btn_primary, .oro_btn_secondary, .oro_btn_outline {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .oro_game_controls {
        flex-direction: column;
    }
}
/* 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: #fff !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] {
  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;
  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;
  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;
}
