:root {
    --houseofhobbits-primary: #0B4226;
    --houseofhobbits-primary-hover: #0E5A34;
    --houseofhobbits-secondary: #D4AF37;
    --houseofhobbits-secondary-hover: #F2C94C;
    --houseofhobbits-accent: #8C2114;
    --houseofhobbits-bg: #1A120B;
    --houseofhobbits-surface: #2C2016;
    --houseofhobbits-surface-light: #3A2A1D;
    --houseofhobbits-text-primary: #F4EBD0;
    --houseofhobbits-text-secondary: #A4997E;
    
    --houseofhobbits-font-heading: 'Playfair Display', serif;
    --houseofhobbits-font-body: 'Lora', serif;
    
    --houseofhobbits-border-radius: 8px;
    --houseofhobbits-border-radius-large: 16px;
    --houseofhobbits-transition: all 0.3s ease;
}

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

html, body {
    font-family: var(--houseofhobbits-font-body);
    background-color: var(--houseofhobbits-bg);
    color: var(--houseofhobbits-text-primary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

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

p {
    margin-bottom: 1rem;
    color: var(--houseofhobbits-text-secondary);
}

a {
    color: var(--houseofhobbits-secondary);
    text-decoration: none;
    transition: var(--houseofhobbits-transition);
}

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

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

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

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

.houseofhobbits_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--houseofhobbits-border-radius);
    font-family: var(--houseofhobbits-font-heading);
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--houseofhobbits-transition);
    text-decoration: none;
    min-height: 44px;
}

.houseofhobbits_btn_primary {
    background-color: var(--houseofhobbits-secondary);
    color: var(--houseofhobbits-bg);
}

.houseofhobbits_btn_primary:hover {
    background-color: var(--houseofhobbits-secondary-hover);
    transform: translateY(-2px);
    color: var(--houseofhobbits-bg);
}

.houseofhobbits_btn_secondary {
    background-color: transparent;
    border: 2px solid var(--houseofhobbits-secondary);
    color: var(--houseofhobbits-secondary);
}

.houseofhobbits_btn_secondary:hover {
    background-color: var(--houseofhobbits-secondary);
    color: var(--houseofhobbits-bg);
}

.houseofhobbits_btn_large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.houseofhobbits_btn_full {
    width: 100%;
}

.houseofhobbits_header {
    background-color: var(--houseofhobbits-surface);
    border-bottom: 2px solid var(--houseofhobbits-primary);
    position: sticky;
    top: 0;
    z-index: 100;
}

.houseofhobbits_header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.houseofhobbits_logo a {
    font-family: var(--houseofhobbits-font-heading);
    font-size: 1.5rem;
    color: var(--houseofhobbits-secondary);
    font-weight: 700;
}

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

.houseofhobbits_nav_link {
    color: var(--houseofhobbits-text-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.houseofhobbits_nav_link:hover, .houseofhobbits_nav_link.is-active {
    color: var(--houseofhobbits-secondary);
}

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

.houseofhobbits_wallet_compact {
    background-color: var(--houseofhobbits-primary);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid var(--houseofhobbits-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

.houseofhobbits_wallet_currency {
    color: var(--houseofhobbits-secondary);
    font-size: 0.8rem;
}

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

.houseofhobbits_burger_line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--houseofhobbits-secondary);
    position: absolute;
    transition: var(--houseofhobbits-transition);
}

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

.houseofhobbits_burger[aria-expanded="true"] .houseofhobbits_burger_line:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
}
.houseofhobbits_burger[aria-expanded="true"] .houseofhobbits_burger_line:nth-child(2) {
    opacity: 0;
}
.houseofhobbits_burger[aria-expanded="true"] .houseofhobbits_burger_line:nth-child(3) {
    transform: rotate(-45deg);
    top: 11px;
}

@media (max-width: 768px) {
    .houseofhobbits_nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--houseofhobbits-surface);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        border-bottom: 2px solid var(--houseofhobbits-primary);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 99;
    }
    
    .houseofhobbits_nav.is-open {
        transform: translateY(0);
    }

    .houseofhobbits_nav_list {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .houseofhobbits_nav_list li {
        width: 100%;
        text-align: center;
    }

    .houseofhobbits_nav_link {
        display: block;
        padding: 15px;
    }

    .houseofhobbits_burger {
        display: block;
    }
    
    #houseofhobbits_auth_trigger {
        display: none;
    }
}

.houseofhobbits_hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.houseofhobbits_hero_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.houseofhobbits_hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26,18,11,0.9) 0%, rgba(26,18,11,0.7) 50%, rgba(26,18,11,0.4) 100%);
    z-index: 2;
}

.houseofhobbits_hero_inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.houseofhobbits_hero_title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.houseofhobbits_hero_subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--houseofhobbits-text-primary);
}

.houseofhobbits_hero_actions {
    display: flex;
    gap: 16px;
}

.houseofhobbits_hero_visual_panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.houseofhobbits_trust_strip {
    background: rgba(11, 66, 38, 0.8);
    border: 1px solid var(--houseofhobbits-secondary);
    border-radius: var(--houseofhobbits-border-radius);
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(4px);
    align-self: flex-start;
}

.houseofhobbits_age_badge {
    background: var(--houseofhobbits-accent);
    color: #fff;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.houseofhobbits_trust_text {
    font-weight: 700;
    color: var(--houseofhobbits-secondary);
}

.houseofhobbits_hero_card {
    background: rgba(44, 32, 22, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--houseofhobbits-border-radius-large);
    padding: 24px;
    backdrop-filter: blur(8px);
}

@media (max-width: 992px) {
    .houseofhobbits_hero_inner {
        grid-template-columns: 1fr;
    }
    .houseofhobbits_hero_title {
        font-size: 2.5rem;
    }
}

.houseofhobbits_section {
    padding: 80px 0;
}

.houseofhobbits_section_title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.houseofhobbits_section_title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--houseofhobbits-accent);
    margin: 15px auto 0;
}

.houseofhobbits_section_desc {
    text-align: center;
    max-width: 600px;
    margin: -1.5rem auto 3rem;
}

.houseofhobbits_grid_2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.houseofhobbits_grid_3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.houseofhobbits_card {
    background-color: var(--houseofhobbits-surface);
    border-radius: var(--houseofhobbits-border-radius-large);
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--houseofhobbits-transition);
}

.houseofhobbits_card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

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

.houseofhobbits_img_responsive {
    border-radius: var(--houseofhobbits-border-radius-large);
    border: 2px solid var(--houseofhobbits-primary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

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

.houseofhobbits_accordion_item {
    background-color: var(--houseofhobbits-surface);
    border-radius: var(--houseofhobbits-border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

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

.houseofhobbits_accordion_trigger::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.houseofhobbits_accordion_trigger[aria-expanded="true"]::after {
    transform: rotate(45deg);
}

.houseofhobbits_accordion_content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.houseofhobbits_accordion_trigger[aria-expanded="true"] + .houseofhobbits_accordion_content {
    padding: 0 20px 20px;
    max-height: 500px;
}

.houseofhobbits_live_game_wrapper {
    background-color: var(--houseofhobbits-surface);
    border: 2px solid var(--houseofhobbits-primary);
    border-radius: var(--houseofhobbits-border-radius-large);
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.houseofhobbits_slot_board {
    display: flex;
    gap: 10px;
    background-color: #111;
    padding: 15px;
    border-radius: var(--houseofhobbits-border-radius);
    border: 4px solid #3e2723;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    justify-content: center;
}

.houseofhobbits_slot_board::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

.houseofhobbits_slot_reel {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 5px 10px rgba(0,0,0,0.5);
}

.houseofhobbits_slot_reel img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.is-spinning img {
    animation: blurReel 0.1s infinite linear;
}

@keyframes blurReel {
    0% { transform: translateY(-50%) scaleY(1.5); opacity: 0.5; }
    100% { transform: translateY(50%) scaleY(1.5); opacity: 0.5; }
}

.is-winning .houseofhobbits_slot_reel {
    animation: winPulse 1s ease;
    box-shadow: 0 0 15px var(--houseofhobbits-secondary);
}

@keyframes winPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.houseofhobbits_live_game_controls {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    margin-bottom: 20px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.houseofhobbits_bet_selector {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.houseofhobbits_bet_selector label {
    font-size: 0.9rem;
    color: var(--houseofhobbits-text-secondary);
}

.houseofhobbits_bet_selector select {
    background-color: var(--houseofhobbits-surface-light);
    color: var(--houseofhobbits-text-primary);
    border: 1px solid var(--houseofhobbits-primary);
    padding: 10px;
    border-radius: var(--houseofhobbits-border-radius);
    font-family: var(--houseofhobbits-font-body);
    font-size: 1rem;
    min-width: 120px;
}

.houseofhobbits_btn_spin {
    background-color: var(--houseofhobbits-accent);
    color: #fff;
    font-size: 1.2rem;
    padding: 10px 40px;
}

.houseofhobbits_btn_spin:hover:not(:disabled) {
    background-color: #a32617;
}

.houseofhobbits_btn_spin:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.houseofhobbits_live_game_status {
    text-align: center;
    width: 100%;
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: var(--houseofhobbits-border-radius);
    margin-bottom: 20px;
}

.houseofhobbits_result_msg {
    font-family: var(--houseofhobbits-font-heading);
    font-size: 1.2rem;
    color: var(--houseofhobbits-secondary);
    margin-bottom: 5px;
    min-height: 28px;
}

.houseofhobbits_balance_mirror {
    font-size: 0.9rem;
    color: var(--houseofhobbits-text-secondary);
    margin-bottom: 0;
}

.houseofhobbits_live_game_history {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    min-height: 24px;
}

.houseofhobbits_history_pill {
    background: var(--houseofhobbits-surface-light);
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 12px;
    color: var(--houseofhobbits-text-secondary);
}

.houseofhobbits_history_pill.win {
    color: var(--houseofhobbits-secondary);
    border: 1px solid var(--houseofhobbits-secondary);
}

@media (max-width: 480px) {
    .houseofhobbits_slot_reel {
        width: 70px;
        height: 70px;
    }
    .houseofhobbits_live_game_wrapper {
        padding: 15px;
    }
}

.houseofhobbits_disclaimer_bar {
    background-color: var(--houseofhobbits-accent);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 700;
}

.houseofhobbits_disclaimer_bar p {
    color: #fff;
    margin: 0;
}

.houseofhobbits_lobby_highlight_rail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.houseofhobbits_lobby_highlight {
    background-color: var(--houseofhobbits-surface);
    border-radius: var(--houseofhobbits-border-radius-large);
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.houseofhobbits_lobby_rail {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.houseofhobbits_game_card {
    background-color: var(--houseofhobbits-surface-light);
    padding: 20px;
    border-radius: var(--houseofhobbits-border-radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--houseofhobbits-transition);
}

.houseofhobbits_game_card:hover {
    background-color: var(--houseofhobbits-surface);
    border-color: rgba(212, 175, 55, 0.5);
}

.houseofhobbits_game_card.is-selected {
    border-color: var(--houseofhobbits-secondary);
    background-color: var(--houseofhobbits-surface);
}

.houseofhobbits_game_card h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.houseofhobbits_game_card p {
    margin: 0;
    font-size: 0.9rem;
}

.houseofhobbits_game_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.houseofhobbits_game_header h2 {
    margin: 0;
}

.houseofhobbits_combo_meter {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #111;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid var(--houseofhobbits-primary);
}

.houseofhobbits_combo_label {
    font-size: 0.8rem;
    color: var(--houseofhobbits-secondary);
    font-weight: 700;
    text-transform: uppercase;
}

.houseofhobbits_combo_bar {
    width: 100px;
    height: 8px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
}

.houseofhobbits_combo_fill {
    height: 100%;
    background: var(--houseofhobbits-secondary);
    transition: width 0.3s ease;
}

.houseofhobbits_game_viewport {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background: #111;
    border-radius: var(--houseofhobbits-border-radius);
    padding: 20px;
}

.houseofhobbits_game_ui {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.houseofhobbits_wheel_container {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
}

.houseofhobbits_wheel_pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 2rem;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.houseofhobbits_wheel_board {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #3e2723;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    transform-origin: center;
}

@media (max-width: 992px) {
    .houseofhobbits_lobby_highlight_rail {
        grid-template-columns: 1fr;
    }
}

.houseofhobbits_page_header {
    background-color: var(--houseofhobbits-surface);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--houseofhobbits-primary);
}

.houseofhobbits_page_title {
    font-size: 3rem;
    margin-bottom: 10px;
}

.houseofhobbits_longform_content, .houseofhobbits_legal_content {
    max-width: 800px;
    margin: 0 auto;
}

.houseofhobbits_longform_content h2, .houseofhobbits_legal_content h2 {
    margin-top: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.houseofhobbits_longform_content p, .houseofhobbits_legal_content p {
    margin-bottom: 1.5rem;
}

.houseofhobbits_feature_list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.houseofhobbits_feature_list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--houseofhobbits-text-secondary);
}

.houseofhobbits_feature_list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--houseofhobbits-secondary);
    font-weight: bold;
}

.houseofhobbits_contact_layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

.houseofhobbits_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.houseofhobbits_form_group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.houseofhobbits_form_group label {
    font-weight: 700;
    color: var(--houseofhobbits-text-primary);
}

.houseofhobbits_form_group input, 
.houseofhobbits_form_group textarea {
    background-color: var(--houseofhobbits-surface);
    border: 1px solid var(--houseofhobbits-primary);
    color: var(--houseofhobbits-text-primary);
    padding: 12px;
    border-radius: var(--houseofhobbits-border-radius);
    font-family: var(--houseofhobbits-font-body);
}

.houseofhobbits_form_group input:focus, 
.houseofhobbits_form_group textarea:focus {
    outline: none;
    border-color: var(--houseofhobbits-secondary);
}

.houseofhobbits_quick_links {
    list-style: none;
}

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

.houseofhobbits_quick_links a {
    text-decoration: underline;
}

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

.houseofhobbits_footer {
    background-color: #0d0905;
    padding: 60px 0 20px;
    border-top: 3px solid var(--houseofhobbits-primary);
}

.houseofhobbits_footer_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.houseofhobbits_footer h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.houseofhobbits_footer p, .houseofhobbits_footer li {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.houseofhobbits_footer_legal_links ul {
    list-style: none;
}

.houseofhobbits_footer_link {
    color: #888;
}

.houseofhobbits_footer_link:hover {
    color: var(--houseofhobbits-secondary);
}

.houseofhobbits_footer_partners {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.houseofhobbits_partner_link {
    display: inline-block;
    border-radius: 4px;
    padding: 5px;
    transition: transform 0.3s ease;
}

.houseofhobbits_partner_link:hover {
    transform: scale(1.05);
}

.houseofhobbits_partner_link img {
    height: 40px;
    width: auto;
}

.houseofhobbits_partner_begambleaware {
    background-color: #222;
}

.houseofhobbits_partner_gamcare {
    background-color: #fff;
}

.houseofhobbits_footer_bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    position: relative;
}

.houseofhobbits_easter_egg {
    position: absolute;
    bottom: 0;
    right: 20px;
    cursor: pointer;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.houseofhobbits_easter_egg:hover {
    opacity: 1;
}

.houseofhobbits_easter_egg img {
    width: 24px;
    height: 24px;
}

@media (max-width: 992px) {
    .houseofhobbits_footer_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .houseofhobbits_footer_grid {
        grid-template-columns: 1fr;
    }
}

.houseofhobbits_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.houseofhobbits_modal:not([aria-hidden="true"]) {
    opacity: 1;
    visibility: visible;
}

.houseofhobbits_modal_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.houseofhobbits_modal_content {
    background-color: var(--houseofhobbits-surface);
    padding: 40px;
    border-radius: var(--houseofhobbits-border-radius-large);
    border: 1px solid var(--houseofhobbits-primary);
    width: 90%;
    max-width: 500px;
    position: relative;
    z-index: 1001;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.houseofhobbits_modal:not([aria-hidden="true"]) .houseofhobbits_modal_content {
    transform: translateY(0);
}

.houseofhobbits_modal_close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--houseofhobbits-text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.houseofhobbits_modal_close:hover {
    color: var(--houseofhobbits-secondary);
}

.houseofhobbits_modal_title {
    margin-bottom: 20px;
    text-align: center;
}

.houseofhobbits_age_gate_modal .houseofhobbits_modal_content {
    max-width: 600px;
    text-align: center;
}

.houseofhobbits_age_gate_actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.houseofhobbits_modal_disclaimer {
    font-size: 0.85rem;
    margin-top: 20px;
    color: var(--houseofhobbits-text-secondary);
}

.houseofhobbits_notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--houseofhobbits-surface-light);
    color: var(--houseofhobbits-text-primary);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid var(--houseofhobbits-secondary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    z-index: 2000;
    transition: transform 0.3s ease;
    font-weight: 700;
    opacity: 0;
}

.houseofhobbits_notification.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
/* footer-logo-contrast-guard */
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: #111111 !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: #ffffff !important;
  padding: 0.45rem 0.7rem !important;
  border-radius: 0.7rem !important;
  box-sizing: border-box !important;
}

a[href*="begambleaware.org"],
a[href*="gamcare.org"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
