:root {
    --novenkop-primary: #C5832B;
    --novenkop-secondary: #1B3B5A;
    --novenkop-accent: #3A8EBA;
    --novenkop-bg: #0A1118;
    --novenkop-surface: #121E2A;
    --novenkop-text-primary: #EBE4D5;
    --novenkop-text-secondary: #A4B5C4;
    --novenkop-font-heading: 'Playfair Display', sans-serif;
    --novenkop-font-body: 'Inter', sans-serif;
    --novenkop-radius: 8px;
    --novenkop-radius-lg: 16px;
    --novenkop-transition: 0.3s ease;
}

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

body.novenkop_body {
    font-family: var(--novenkop-font-body);
    background-color: var(--novenkop-bg);
    color: var(--novenkop-text-primary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

.novenkop_h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.1; }
.novenkop_h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
.novenkop_h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

a {
    color: var(--novenkop-primary);
    text-decoration: none;
    transition: color var(--novenkop-transition);
}

a:hover {
    color: var(--novenkop-accent);
}

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

.novenkop_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

.novenkop_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--novenkop-radius);
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--novenkop-transition);
    text-align: center;
    min-height: 44px;
    font-family: var(--novenkop-font-body);
}

.novenkop_btn_primary {
    background-color: var(--novenkop-primary);
    color: var(--novenkop-bg);
}

.novenkop_btn_primary:hover {
    background-color: transparent;
    border-color: var(--novenkop-primary);
    color: var(--novenkop-primary);
}

.novenkop_btn_secondary {
    background-color: transparent;
    border-color: var(--novenkop-primary);
    color: var(--novenkop-primary);
}

.novenkop_btn_secondary:hover {
    background-color: var(--novenkop-primary);
    color: var(--novenkop-bg);
}

.novenkop_btn_play {
    background-color: var(--novenkop-accent);
    color: #fff;
    width: 100%;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.novenkop_btn_play:hover {
    background-color: #2a6d91;
}

/* Header */
.novenkop_header {
    background-color: var(--novenkop-secondary);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(197, 131, 43, 0.2);
}

.novenkop_header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px clamp(16px, 4vw, 32px);
    max-width: 1400px;
    margin: 0 auto;
}

.novenkop_logo a {
    font-family: var(--novenkop-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--novenkop-primary);
}

.novenkop_nav_list {
    display: flex;
    list-style: none;
    gap: 24px;
}

.novenkop_nav_list a {
    color: var(--novenkop-text-primary);
    font-weight: 500;
}

.novenkop_nav_list a[aria-current="page"] {
    color: var(--novenkop-primary);
}

.novenkop_header_actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.novenkop_age_badge {
    background-color: var(--novenkop-surface);
    border: 1px solid var(--novenkop-primary);
    color: var(--novenkop-primary);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
}

.novenkop_mobile_nav_toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.novenkop_hamburger_line {
    width: 24px;
    height: 2px;
    background-color: var(--novenkop-text-primary);
    transition: var(--novenkop-transition);
}

/* Hero */
.novenkop_hero_side_rail {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.novenkop_hero_bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.novenkop_hero_bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--novenkop-bg) 0%, rgba(10, 17, 24, 0.8) 50%, rgba(10, 17, 24, 0.4) 100%);
}

.novenkop_hero_content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px clamp(16px, 4vw, 32px);
    width: 100%;
    align-items: center;
}

.novenkop_trust_signal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(18, 30, 42, 0.8);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    border: 1px solid var(--novenkop-primary);
}

.novenkop_hero_subtitle {
    font-size: 1.1rem;
    color: var(--novenkop-text-secondary);
    margin-bottom: 32px;
    max-width: 480px;
}

.novenkop_hero_proof_cards {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.novenkop_proof_card {
    background: rgba(18, 30, 42, 0.8);
    padding: 12px 20px;
    border-radius: var(--novenkop-radius);
    border-left: 3px solid var(--novenkop-primary);
}

.novenkop_proof_value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--novenkop-text-primary);
}

.novenkop_proof_label {
    font-size: 0.85rem;
    color: var(--novenkop-text-secondary);
}

.novenkop_hero_preview_card {
    position: relative;
    border-radius: var(--novenkop-radius-lg);
    overflow: hidden;
    border: 2px solid var(--novenkop-primary);
    background: var(--novenkop-surface);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    aspect-ratio: 4/3;
}

.novenkop_preview_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.novenkop_preview_overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top, rgba(10, 17, 24, 0.9), transparent);
    padding: 24px;
    text-align: center;
}

.novenkop_preview_overlay p {
    font-family: var(--novenkop-font-heading);
    font-size: 1.5rem;
    color: var(--novenkop-primary);
    margin-bottom: 8px;
}

.novenkop_easter_egg_trigger {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.novenkop_easter_egg_trigger:hover {
    opacity: 1;
    filter: drop-shadow(0 0 8px var(--novenkop-accent));
}

/* Games Zone */
.novenkop_social_games_section {
    padding: 80px 0;
    background-color: var(--novenkop-surface);
}

.novenkop_section_header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.novenkop_social_games_zone {
    display: grid;
    grid-template-columns: 1fr;
    max-width: clamp(820px, 72vw, 900px);
    width: 100%;
    margin-inline: auto;
    gap: clamp(24px, 4vw, 40px);
    padding-inline: clamp(16px, 4vw, 24px);
}

/* Game Card Shell */
[data-game-card] {
    background: var(--novenkop-bg);
    border-radius: var(--novenkop-radius-lg);
    border: 1px solid rgba(197, 131, 43, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
}

.novenkop_game_card_header {
    padding: 16px 24px;
    background: var(--novenkop-secondary);
    border-bottom: 1px solid rgba(197, 131, 43, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.novenkop_game_card_header h2,
.novenkop_game_card_header h3 {
    margin: 0;
    color: var(--novenkop-text-primary);
    font-size: 1.25rem;
}

.novenkop_game_type {
    font-size: 0.85rem;
    color: var(--novenkop-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Slot Layout */
.novenkop_slot_stage_wrapper {
    position: relative;
    padding: 24px;
    background: #000;
}

.novenkop_slot_bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.4;
}

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

[data-slot-stage] {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    min-height: clamp(240px, 18vw, 320px);
    background: rgba(0,0,0,0.6);
    border: 2px solid var(--novenkop-primary);
    border-radius: var(--novenkop-radius);
}

[data-slot-reel-window] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 100%;
    overflow: hidden;
    position: absolute;
    inset: 0;
}

[data-slot-reel] {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(197, 131, 43, 0.3);
    min-width: 0;
}

[data-slot-reel]:last-child {
    border-right: none;
}

[data-slot-symbol] {
    display: block;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.1s;
}

.novenkop_slot_payline {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(58, 142, 186, 0.6);
    transform: translateY(-50%);
    z-index: 3;
    pointer-events: none;
}

/* Wheel Layout */
.novenkop_wheel_stage_wrapper {
    padding: 32px;
    background: #000;
    display: flex;
    justify-content: center;
}

[data-wheel-stage] {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 1/1;
    display: grid;
    grid-template-areas: "stage";
    place-items: center;
}

[data-wheel-img] {
    grid-area: stage;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    border-radius: 50%; /* Anti-square */
}

[data-wheel-pointer] {
    grid-area: stage;
    place-self: start center;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid var(--novenkop-primary);
    transform: translateY(-10px);
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* Game Controls */
.novenkop_game_controls {
    padding: 24px;
    background: var(--novenkop-bg);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.novenkop_bet_selector {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.novenkop_bet_select {
    background: var(--novenkop-surface);
    color: var(--novenkop-text-primary);
    border: 1px solid var(--novenkop-secondary);
    padding: 8px 12px;
    border-radius: 4px;
    font-family: var(--novenkop-font-body);
}

.novenkop_roulette_choices {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.novenkop_bet_btn {
    background: var(--novenkop-surface);
    border: 1px solid var(--novenkop-secondary);
    color: var(--novenkop-text-secondary);
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--novenkop-transition);
}

.novenkop_bet_btn.active,
.novenkop_bet_btn:hover {
    background: var(--novenkop-secondary);
    color: var(--novenkop-text-primary);
    border-color: var(--novenkop-primary);
}

.novenkop_bet_amount {
    margin-bottom: 16px;
}

.novenkop_game_status_panel {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

.novenkop_game_result {
    color: var(--novenkop-primary);
    font-weight: 700;
}

.novenkop_game_history {
    padding: 8px 24px 16px;
    font-size: 0.8rem;
    color: var(--novenkop-text-secondary);
    background: rgba(0,0,0,0.2);
}

.novenkop_more_games_cta {
    text-align: center;
    margin-top: 40px;
}

/* Info Blocks */
.novenkop_info_block {
    padding: 60px 0;
}

.novenkop_alt_bg {
    background-color: var(--novenkop-surface);
}

.novenkop_info_inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .novenkop_info_inner {
        grid-template-columns: 1fr 1fr;
    }
}

.novenkop_info_text p {
    margin-bottom: 16px;
    color: var(--novenkop-text-secondary);
}

.novenkop_feature_list {
    list-style: none;
    margin-top: 24px;
}

.novenkop_feature_list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
}

.novenkop_feature_list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--novenkop-primary);
}

.novenkop_decorative_shield {
    width: 100%;
    aspect-ratio: 1;
    background: radial-gradient(circle, var(--novenkop-secondary) 0%, transparent 70%);
    border: 2px solid var(--novenkop-primary);
    border-radius: 50%;
    opacity: 0.5;
}

.novenkop_decorative_chart {
    width: 100%;
    aspect-ratio: 4/3;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(197, 131, 43, 0.1) 10px, rgba(197, 131, 43, 0.1) 20px);
    border: 1px solid var(--novenkop-secondary);
    border-radius: var(--novenkop-radius);
}

.novenkop_rank_cards {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.novenkop_rank_card {
    background: var(--novenkop-surface);
    padding: 16px;
    border-radius: var(--novenkop-radius);
    border-left: 4px solid var(--novenkop-accent);
}

/* Bottom Wallet Bar */
.novenkop_bottom_wallet_bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--novenkop-bg);
    border-top: 2px solid var(--novenkop-primary);
    padding: 12px 24px;
    z-index: 90;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}

.novenkop_wallet_inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.novenkop_wallet_label {
    color: var(--novenkop-text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.novenkop_wallet_balance {
    font-family: var(--novenkop-font-heading);
    font-size: 1.25rem;
    color: var(--novenkop-primary);
    font-weight: 700;
}

/* Footer */
.novenkop_footer {
    background-color: var(--novenkop-secondary);
    padding: 60px 0 100px; /* Space for bottom bar */
    border-top: 1px solid rgba(197, 131, 43, 0.2);
}

.novenkop_footer_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

.novenkop_footer_brand {
    margin-bottom: 40px;
    max-width: 800px;
}

.novenkop_footer_logo {
    display: block;
    font-family: var(--novenkop-font-heading);
    font-size: 2rem;
    color: var(--novenkop-primary);
    margin-bottom: 16px;
}

.novenkop_no_real_money_text {
    font-size: 0.85rem;
    color: var(--novenkop-text-secondary);
    margin-bottom: 12px;
}

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

.novenkop_footer_heading {
    color: var(--novenkop-text-primary);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.novenkop_footer_col ul {
    list-style: none;
}

.novenkop_footer_col ul li {
    margin-bottom: 8px;
}

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

.novenkop_footer_col a:hover {
    color: var(--novenkop-primary);
}

.novenkop_footer_col p {
    font-size: 0.9rem;
    color: var(--novenkop-text-secondary);
    margin-bottom: 8px;
}

.novenkop_footer_partners {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.novenkop_partner_link {
    display: inline-block;
    padding: 8px;
    border-radius: 4px;
    width: 120px;
}

.novenkop_partner_dark_bg {
    background-color: #1a1a1a;
}

.novenkop_partner_light_bg {
    background-color: #ffffff;
}

.novenkop_footer_bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--novenkop-text-secondary);
}

/* Modal */
.novenkop_modal_overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 17, 24, 0.9);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.novenkop_modal_overlay.is-open {
    display: flex;
}

.novenkop_modal_content {
    background: var(--novenkop-surface);
    padding: 32px;
    border-radius: var(--novenkop-radius-lg);
    max-width: 500px;
    width: 100%;
    position: relative;
    border: 1px solid var(--novenkop-primary);
}

.novenkop_modal_close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--novenkop-text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}

.novenkop_modal_content p {
    margin-bottom: 16px;
    color: var(--novenkop-text-secondary);
}

/* Notifications */
.novenkop_notification_container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 150;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.novenkop_toast {
    background: var(--novenkop-secondary);
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--novenkop-radius);
    border-left: 4px solid var(--novenkop-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    animation: slideIn 0.3s forwards;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Page specific */
.novenkop_page_header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to bottom, var(--novenkop-secondary), var(--novenkop-bg));
}

.novenkop_lobby_section {
    padding: 40px 0 80px;
}

.novenkop_lobby_grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .lobby-masonry-two-column {
        grid-template-columns: repeat(2, 1fr);
    }
}

.novenkop_locations_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.novenkop_location_card {
    background: var(--novenkop-bg);
    border-radius: var(--novenkop-radius);
    overflow: hidden;
    border: 1px solid rgba(197, 131, 43, 0.2);
}

.novenkop_location_img, .novenkop_location_img_placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.novenkop_location_img_placeholder {
    background: var(--novenkop-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--novenkop-text-secondary);
}

.novenkop_location_info {
    padding: 20px;
}

.novenkop_contact_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
}

@media (min-width: 768px) {
    .novenkop_contact_grid {
        grid-template-columns: 1fr 1fr;
    }
}

.novenkop_form_group {
    margin-bottom: 20px;
}

.novenkop_form_group label {
    display: block;
    margin-bottom: 8px;
    color: var(--novenkop-text-secondary);
}

.novenkop_form_group input,
.novenkop_form_group textarea {
    width: 100%;
    padding: 12px;
    background: var(--novenkop-surface);
    border: 1px solid var(--novenkop-secondary);
    border-radius: 4px;
    color: var(--novenkop-text-primary);
    font-family: var(--novenkop-font-body);
}

.novenkop_faq_item {
    margin-bottom: 16px;
    border: 1px solid var(--novenkop-secondary);
    border-radius: 4px;
}

.novenkop_faq_trigger {
    width: 100%;
    text-align: left;
    padding: 16px;
    background: var(--novenkop-surface);
    border: none;
    color: var(--novenkop-text-primary);
    font-weight: 700;
    cursor: pointer;
}

.novenkop_faq_content {
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--novenkop-transition);
}

.novenkop_faq_trigger[aria-expanded="true"] + .novenkop_faq_content {
    padding: 16px;
    max-height: 500px;
}

.novenkop_policy_shell {
    padding: 40px 0 80px;
}

.novenkop_policy_content_placeholder {
    background: var(--novenkop-surface);
    padding: 32px;
    border-radius: var(--novenkop-radius);
    border: 1px solid rgba(197, 131, 43, 0.2);
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .novenkop_nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--novenkop-secondary);
        padding: 20px;
        border-bottom: 1px solid var(--novenkop-primary);
    }

    .novenkop_nav.is-open {
        display: block;
    }

    .novenkop_nav_list {
        flex-direction: column;
    }

    .novenkop_mobile_nav_toggle {
        display: flex;
    }

    .novenkop_hero_content {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }
    
    .novenkop_hero_preview_card {
        display: none; /* Hide on small mobile to save space */
    }

    .novenkop_social_games_zone {
        grid-template-columns: 1fr;
    }
}

/* 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] {
  background: #fff !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;
  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;
}
