/*
 * Highflybet migrated theme.
 * Source theme: Neon Casino, GNU GPL v2 or later.
 * Generated by tools/build_highfly_theme.py; edit the builder, not this file.
 */

/* Source: https://highflybet-deutschland.com/wp-content/themes/neon-casino-theme/style.css */

/*
Theme Name: Neon Casino
Theme URI: https://example.com/neon-casino
Author: Neon Developer
Author URI: https://example.com
Description: Dark neon casino theme for WordPress with customizable colors via CSS custom properties.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: neon-casino
Tags: dark, casino, neon, custom-menu, responsive-layout
*/

/* ==============================================
   CSS CUSTOM PROPERTIES (color settings)
   All main colors can be changed here
   ============================================== */
:root {
    /* --- Backgrounds --- */
    --bg-dark: #0f172a;
    --bg-panel: #1e293b;
    --bg-border: #334155;

    /* --- Accent colors --- */
    --accent-primary: #10b981;
    --accent-primary-hover: #059669;
    --accent-secondary: #f59e0b;
    --accent-button: #3ba14a;
    --accent-button-hover: #2f853b;
    --accent-danger: #ef4444;

    /* --- Text --- */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-heading: #ffffff;
    --text-link: #10b981;

    /* --- Content blocks --- */
    --block-stats-bg-start: #112015;
    --block-stats-bg-end: #0a120c;
    --block-stats-border: #1f3625;
    --block-seo-bg: #1e293b;
    --block-faq-bg: rgba(0, 0, 0, 0.2);
    --block-alert-bg: rgba(245, 158, 11, 0.1);
    --block-quote-bg: rgba(255, 255, 255, 0.02);
    --block-author-bg: rgba(255, 255, 255, 0.02);
    --block-provider-bg: rgba(30, 41, 59, 0.3);

    /* --- Game cards --- */
    --card-bg: #1e293b;
    --card-overlay-bg: rgba(15, 23, 42, 0.85);

    /* --- Banner --- */
    --banner-text-color: #ffffff;
    --banner-title-color: #eaffd6;

    /* --- Layout sizes --- */
    --sidebar-width: 240px;
    --header-height: 70px;
    --mobile-nav-height: 60px;
}


/* Source: https://highflybet-deutschland.com/wp-content/themes/neon-casino-theme/css/theme.css */

/* ==============================================
   NEON CASINO — Main theme styles
   ============================================== */

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
body { background-color: var(--bg-dark); color: var(--text-main); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* GLOBAL LAYOUT */
.layout { display: flex; min-height: 100vh; }

/* ===== LEFT MENU (DESKTOP) ===== */
.sidebar {
    width: var(--sidebar-width); background-color: var(--bg-panel);
    position: fixed; top: 0; left: 0; height: 100vh; padding: 20px;
    display: flex; flex-direction: column; border-right: 1px solid var(--bg-border); z-index: 100;
}
.logo { font-size: 24px; font-weight: 900; color: var(--accent-primary); margin-bottom: 40px; text-transform: uppercase; letter-spacing: 2px; }
.logo a { color: var(--accent-primary); }
.logo img, .custom-logo { max-width: 100%; width: auto !important; height: auto !important; display: block; }
.sidebar-nav li { margin-bottom: 15px; }
.sidebar-nav a { display: flex; align-items: center; gap: 10px; font-size: 16px; color: var(--text-muted); transition: 0.3s; padding: 10px; border-radius: 8px; }
.sidebar-nav a:hover { background-color: var(--bg-border); color: var(--text-main); }
.sidebar-nav a.active,
.sidebar-nav .current-menu-item > a { background-color: var(--bg-border); color: var(--accent-primary); font-weight: bold; }

/* WP menu in sidebar */
.sidebar-nav .menu { list-style: none; padding: 0; margin: 0; }
.sidebar-nav .menu li { margin-bottom: 15px; }
.sidebar-nav .menu a { display: flex; align-items: center; gap: 10px; font-size: 16px; color: var(--text-muted); transition: 0.3s; padding: 10px; border-radius: 8px; }
.sidebar-nav .menu a:hover { background-color: var(--bg-border); color: var(--text-main); }
.sidebar-nav .menu .current-menu-item > a { background-color: var(--bg-border); color: var(--accent-primary); font-weight: bold; }

/* ===== MAIN CONTENT AREA ===== */
.main-wrapper {
    margin-left: var(--sidebar-width); width: calc(100% - var(--sidebar-width));
    display: flex; flex-direction: column;
}

/* ===== HEADER ===== */
.header {
    height: var(--header-height); background-color: var(--bg-panel);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 30px; position: sticky; top: 0; z-index: 90; border-bottom: 1px solid var(--bg-border);
}
.header-search input { background: var(--bg-dark); border: 1px solid var(--bg-border); padding: 8px 15px; border-radius: 20px; color: white; outline: none; }

/* WP menu in header */
.header-nav { display: flex; align-items: center; }
.header-nav .menu { display: flex; list-style: none; padding: 0; margin: 0; gap: 5px; }
.header-nav .menu li { position: relative; }
.header-nav .menu a { color: var(--text-muted); font-weight: 600; font-size: 15px; padding: 8px 14px; border-radius: 8px; transition: 0.3s; display: block; }
.header-nav .menu a:hover { color: var(--text-main); background-color: var(--bg-border); }
.header-nav .menu .current-menu-item > a { color: var(--accent-primary); }

/* Submenu */
.header-nav .menu .sub-menu {
    display: none; position: absolute; top: 100%; left: 0; min-width: 200px;
    background: var(--bg-panel); border: 1px solid var(--bg-border); border-radius: 8px;
    padding: 8px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.4); z-index: 100;
}
.header-nav .menu li:hover > .sub-menu { display: block; }
.header-nav .menu .sub-menu a { padding: 10px 20px; font-size: 14px; }

.header-auth { display: flex; align-items: center; gap: 15px; }
.btn-login { background: transparent; color: white; border: none; font-weight: bold; cursor: pointer; padding: 10px 15px; font-size: 15px; transition: 0.3s; display: inline-flex; align-items: center; }
.btn-login:hover { color: var(--accent-primary); }
.btn-signup { background: var(--accent-button); color: white; padding: 10px 24px; border-radius: 8px; font-weight: bold; font-size: 15px; border: none; cursor: pointer; transition: 0.3s; display: inline-flex; align-items: center; }
.btn-signup:hover { background: var(--accent-button-hover); transform: translateY(-2px); }

/* ===== CONTENT ===== */
.content { padding: 30px; flex-grow: 1; }

/* ===== FOOTER ===== */
.footer {
    background-color: var(--bg-panel); padding: 40px 30px; text-align: center;
    border-top: 1px solid var(--bg-border); color: var(--text-muted); font-size: 14px;
}
.footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--accent-primary); }

/* WP menu in footer */
.footer-nav .menu { display: flex; justify-content: center; gap: 20px; list-style: none; padding: 0; margin: 0 0 20px 0; flex-wrap: wrap; }
.footer-nav .menu a { color: var(--text-muted); transition: 0.3s; }
.footer-nav .menu a:hover { color: var(--accent-primary); }

/* ===== MOBILE MENU ===== */
.mobile-nav {
    display: none; position: fixed; bottom: 0; left: 0; width: 100%;
    height: var(--mobile-nav-height); background-color: var(--bg-panel);
    border-top: 1px solid var(--bg-border); z-index: 100;
}

.mobile-landing-accordion { display: none; }

/* ===== WP SPECIFICS ===== */
.wp-block-post-content { color: var(--text-muted); line-height: 1.8; }
.wp-block-post-content h2,
.wp-block-post-content h3 { color: var(--text-heading); }

/* WP alignment */
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.aligncenter { display: block; margin: 0 auto; }

/* ===== RESPONSIVE ===== */
/* ===== BURGER BUTTON ===== */
.burger-btn {
    display: none;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; width: 36px; height: 36px;
    background: transparent; border: none; cursor: pointer; padding: 4px;
}
.burger-btn span {
    display: block; width: 22px; height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.burger-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.is-open span:nth-child(2) { opacity: 0; }
.burger-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE DRAWER ===== */
.mobile-drawer {
    position: fixed; top: 0; left: 0; height: 100%; width: 260px;
    background: var(--bg-panel);
    border-right: 1px solid var(--bg-border);
    z-index: 201;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 24px 16px;
    overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }

.mobile-drawer-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.55); z-index: 200;
    backdrop-filter: blur(2px);
}
.mobile-drawer-overlay.is-open { display: block; }

.mobile-drawer-logo { margin-bottom: 28px; font-size: 20px; font-weight: 900; color: var(--accent-primary); }
.mobile-drawer-logo img { max-height: 40px; width: auto; }

.mobile-drawer-nav .menu { list-style: none; padding: 0; margin: 0; }
.mobile-drawer-nav .menu li { margin-bottom: 4px; }
.mobile-drawer-nav .menu a {
    display: flex; align-items: center; gap: 10px;
    font-size: 16px; color: var(--text-muted);
    padding: 11px 12px; border-radius: 8px; transition: 0.2s;
}
.mobile-drawer-nav .menu a:hover,
.mobile-drawer-nav .menu .current-menu-item > a {
    background: var(--bg-border); color: var(--accent-primary); font-weight: bold;
}

@media (max-width: 768px) {
    .sidebar { display: none; }
    .main-wrapper { margin-left: 0; width: 100%; padding-bottom: var(--mobile-nav-height); }
    .header { padding: 0 15px; }
    .header-search { display: none; }
    .header-nav { display: none; }
    .burger-btn { display: flex; }
    .mobile-nav { display: flex; justify-content: space-around; align-items: center; }
    .mobile-nav-item { display: flex; flex-direction: column; align-items: center; font-size: 12px; color: var(--text-muted); gap: 4px; }
    .mobile-nav-item.active { color: var(--accent-primary); }
    .mobile-landing-accordion {
        display: block;
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(var(--mobile-nav-height) + 12px);
        background: rgba(17, 24, 17, 0.96);
        border: 1px solid var(--bg-border);
        border-radius: 16px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
        overflow: hidden;
        z-index: 99;
        backdrop-filter: blur(12px);
    }
    .mobile-landing-accordion summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        color: var(--text-heading);
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        list-style: none;
    }
    .mobile-landing-accordion summary::-webkit-details-marker { display: none; }
    .mobile-landing-accordion summary::after {
        content: '+';
        color: var(--accent-primary);
        font-size: 20px;
        line-height: 1;
    }
    .mobile-landing-accordion[open] summary {
        border-bottom: 1px solid var(--bg-border);
    }
    .mobile-landing-accordion[open] summary::after {
        content: '−';
    }
    .mobile-landing-list {
        max-height: 45vh;
        overflow-y: auto;
        padding: 10px 12px 14px;
    }
    .mobile-landing-list li + li {
        margin-top: 8px;
    }
    .mobile-landing-link {
        display: block;
        padding: 12px 14px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.03);
        color: var(--text-main);
        font-size: 14px;
        font-weight: 600;
    }
    .mobile-landing-link.active {
        background: var(--bg-border);
        color: var(--accent-primary);
    }
}


/* Rendered page inline stylesheet 1. */

img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
/*# sourceURL=wp-img-auto-sizes-contain-inline-css */

/* Rendered page inline stylesheet 2. */

img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
/*# sourceURL=wp-emoji-styles-inline-css */

/* Rendered page inline stylesheet 3. */

:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}

/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */

/* Rendered page inline stylesheet 4. */

h1:where(.wp-block-heading).has-background,h2:where(.wp-block-heading).has-background,h3:where(.wp-block-heading).has-background,h4:where(.wp-block-heading).has-background,h5:where(.wp-block-heading).has-background,h6:where(.wp-block-heading).has-background{padding:1.25em 2.375em}h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){rotate:180deg}
/*# sourceURL=https://highflybet-deutschland.com/wp-includes/blocks/heading/style.min.css */

/* Rendered page inline stylesheet 5. */

ol,ul{box-sizing:border-box}:root :where(.wp-block-list.has-background){padding:1.25em 2.375em}
/*# sourceURL=https://highflybet-deutschland.com/wp-includes/blocks/list/style.min.css */

/* Rendered page inline stylesheet 6. */

.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}
/*# sourceURL=https://highflybet-deutschland.com/wp-includes/blocks/paragraph/style.min.css */

/* Rendered page inline stylesheet 7. */

.wp-block-table{overflow-x:auto}.wp-block-table table{border-collapse:collapse;width:100%}.wp-block-table thead{border-bottom:3px solid}.wp-block-table tfoot{border-top:3px solid}.wp-block-table td,.wp-block-table th{border:1px solid;padding:.5em}.wp-block-table .has-fixed-layout{table-layout:fixed;width:100%}.wp-block-table .has-fixed-layout td,.wp-block-table .has-fixed-layout th{word-break:break-word}.wp-block-table.aligncenter,.wp-block-table.alignleft,.wp-block-table.alignright{display:table;width:auto}.wp-block-table.aligncenter td,.wp-block-table.aligncenter th,.wp-block-table.alignleft td,.wp-block-table.alignleft th,.wp-block-table.alignright td,.wp-block-table.alignright th{word-break:break-word}.wp-block-table .has-subtle-light-gray-background-color{background-color:#f3f4f5}.wp-block-table .has-subtle-pale-green-background-color{background-color:#e9fbe5}.wp-block-table .has-subtle-pale-blue-background-color{background-color:#e7f5fe}.wp-block-table .has-subtle-pale-pink-background-color{background-color:#fcf0ef}.wp-block-table.is-style-stripes{background-color:initial;border-collapse:inherit;border-spacing:0}.wp-block-table.is-style-stripes tbody tr:nth-child(odd){background-color:#f0f0f0}.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd){background-color:#f3f4f5}.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd){background-color:#e9fbe5}.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd){background-color:#e7f5fe}.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd){background-color:#fcf0ef}.wp-block-table.is-style-stripes td,.wp-block-table.is-style-stripes th{border-color:#0000}.wp-block-table.is-style-stripes{border-bottom:1px solid #f0f0f0}.wp-block-table .has-border-color td,.wp-block-table .has-border-color th,.wp-block-table .has-border-color tr,.wp-block-table .has-border-color>*{border-color:inherit}.wp-block-table table[style*=border-top-color] tr:first-child,.wp-block-table table[style*=border-top-color] tr:first-child td,.wp-block-table table[style*=border-top-color] tr:first-child th,.wp-block-table table[style*=border-top-color]>*,.wp-block-table table[style*=border-top-color]>* td,.wp-block-table table[style*=border-top-color]>* th{border-top-color:inherit}.wp-block-table table[style*=border-top-color] tr:not(:first-child){border-top-color:initial}.wp-block-table table[style*=border-right-color] td:last-child,.wp-block-table table[style*=border-right-color] th,.wp-block-table table[style*=border-right-color] tr,.wp-block-table table[style*=border-right-color]>*{border-right-color:inherit}.wp-block-table table[style*=border-bottom-color] tr:last-child,.wp-block-table table[style*=border-bottom-color] tr:last-child td,.wp-block-table table[style*=border-bottom-color] tr:last-child th,.wp-block-table table[style*=border-bottom-color]>*,.wp-block-table table[style*=border-bottom-color]>* td,.wp-block-table table[style*=border-bottom-color]>* th{border-bottom-color:inherit}.wp-block-table table[style*=border-bottom-color] tr:not(:last-child){border-bottom-color:initial}.wp-block-table table[style*=border-left-color] td:first-child,.wp-block-table table[style*=border-left-color] th,.wp-block-table table[style*=border-left-color] tr,.wp-block-table table[style*=border-left-color]>*{border-left-color:inherit}.wp-block-table table[style*=border-style] td,.wp-block-table table[style*=border-style] th,.wp-block-table table[style*=border-style] tr,.wp-block-table table[style*=border-style]>*{border-style:inherit}.wp-block-table table[style*=border-width] td,.wp-block-table table[style*=border-width] th,.wp-block-table table[style*=border-width] tr,.wp-block-table table[style*=border-width]>*{border-style:inherit;border-width:inherit}
/*# sourceURL=https://highflybet-deutschland.com/wp-includes/blocks/table/style.min.css */

/* Rendered page inline stylesheet 8. */

.wp-block-table{margin:0 0 1em}.wp-block-table td,.wp-block-table th{word-break:normal}.wp-block-table :where(figcaption){color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-table :where(figcaption){color:#ffffffa6}
/*# sourceURL=https://highflybet-deutschland.com/wp-includes/blocks/table/theme.min.css */

/* Rendered page inline stylesheet 9. */

/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
/*# sourceURL=/wp-includes/css/classic-themes.min.css */

/* Rendered page inline stylesheet 10. */

:root {
    --bg-dark: #0f172a;
    --bg-panel: #1e293b;
    --bg-border: #334155;
    --accent-primary: #10b981;
    --accent-primary-hover: #059669;
    --accent-secondary: #f59e0b;
    --accent-button: #3ba14a;
    --accent-button-hover: #2f853b;
    --accent-danger: #ef4444;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-heading: #ffffff;
    --text-link: #10b981;
    --block-stats-bg-start: #112015;
    --block-stats-bg-end: #0a120c;
    --block-stats-border: #1f3625;
    --block-seo-bg: #1e293b;
    --block-faq-bg: rgba(0,0,0,0.2);
    --block-alert-bg: rgba(245,158,11,0.1);
    --block-quote-bg: rgba(255,255,255,0.02);
    --block-author-bg: rgba(255,255,255,0.02);
    --block-provider-bg: rgba(30,41,59,0.3);
    --card-bg: #1e293b;
    --card-overlay-bg: rgba(15,23,42,0.85);
    --banner-text-color: #ffffff;
    --banner-title-color: #eaffd6;
}

.hero-section {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: stretch;
    height: 300px;
}

.hero-section .main-banner-img {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s;
    background: linear-gradient(135deg, #0d2415 0%, #0f2d1a 40%, #071810 100%);
}

.hero-section .main-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-section .main-banner-img:hover {
    transform: translateY(-3px);
}

.hero-section .banner-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
    z-index: 2;
}

.hero-section .banner-sub {
    color: var(--banner-text-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.hero-section .banner-title-main {
    color: var(--banner-title-color);
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-section .banner-title-sub {
    color: var(--banner-title-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-section .banner-btn-anim {
    background: var(--accent-button);
    color: white;
    border: none;
    padding: 16px 50px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
    animation: pulse-glow 2s infinite;
    transition: transform 0.2s, background 0.2s;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-section .banner-btn-anim::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine-sweep 3s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(59, 161, 74, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(59, 161, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 161, 74, 0); }
}

@keyframes shine-sweep {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.hero-section .banner-btn-anim:hover {
    transform: scale(1.05);
    background: var(--accent-button-hover);
    animation: none;
}

@media (max-width: 1200px) {
    .hero-section .banner-title-main {
        font-size: 38px;
    }

    .hero-section .banner-title-sub {
        font-size: 22px;
    }

    .hero-section .banner-content-overlay {
        padding-left: 30px;
    }
}

@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        height: auto;
    }

    .hero-section .main-banner-img {
        flex: none;
        min-height: 220px;
        height: 220px;
    }

    .hero-section .main-banner-img img {
        object-position: right center;
    }

    .hero-section .banner-sub {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .hero-section .banner-title-main {
        font-size: 28px;
        line-height: 1.1;
    }

    .hero-section .banner-title-sub {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .hero-section .banner-btn-anim {
        padding: 10px 24px;
        font-size: 15px;
    }

    .hero-section .banner-content-overlay {
        padding-left: 20px;
        padding-right: 20px;
        justify-content: flex-start;
        padding-top: 20px;
    }
}

.hero-section .stats-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: linear-gradient(180deg, var(--block-stats-bg-start) 0%, var(--block-stats-bg-end) 100%);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--block-stats-border);
}

.hero-section .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--block-stats-border);
}

.hero-section .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hero-section .stat-icon {
    font-size: 24px;
    background: rgba(255,255,255,0.05);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.hero-section .stat-info {
    display: flex;
    flex-direction: column;
}

.hero-section .stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.hero-section .stat-val {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-heading);
}

@media (max-width: 900px) {
    .hero-section .stats-sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .hero-section .stat-item {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/*# sourceURL=https://highflybet-deutschland.com/wp-content/themes/neon-casino-theme/src/blocks/hero-section/style.css */

/* Rendered page inline stylesheet 11. */

:root {
    --bg-dark: #0f172a;
    --bg-panel: #1e293b;
    --bg-border: #334155;
    --accent-primary: #10b981;
    --accent-primary-hover: #059669;
    --accent-secondary: #f59e0b;
    --accent-button: #3ba14a;
    --accent-button-hover: #2f853b;
    --accent-danger: #ef4444;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-heading: #ffffff;
    --text-link: #10b981;
    --block-stats-bg-start: #112015;
    --block-stats-bg-end: #0a120c;
    --block-stats-border: #1f3625;
    --block-seo-bg: #1e293b;
    --block-faq-bg: rgba(0,0,0,0.2);
    --block-alert-bg: rgba(245,158,11,0.1);
    --block-quote-bg: rgba(255,255,255,0.02);
    --block-author-bg: rgba(255,255,255,0.02);
    --block-provider-bg: rgba(30,41,59,0.3);
    --card-bg: #1e293b;
    --card-overlay-bg: rgba(15,23,42,0.85);
    --banner-text-color: #ffffff;
    --banner-title-color: #eaffd6;
}

.theme-filters-wrapper {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 30px; flex-wrap: wrap; gap: 15px;
}
.themes-nav {
    display: flex; gap: 10px; overflow-x: auto;
    padding-bottom: 5px; scrollbar-width: none;
}
.themes-nav::-webkit-scrollbar { height: 0; }
.theme-btn {
    background: var(--bg-panel, #1e293b);
    color: var(--text-main, #f8fafc);
    border: 1px solid var(--bg-border, #334155);
    padding: 8px 18px; border-radius: 20px;
    font-size: 14px; font-weight: 600;
    cursor: pointer; white-space: nowrap; transition: 0.3s;
    text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.theme-btn:hover { background: var(--bg-border, #334155); }
.theme-btn.active {
    background: var(--accent-primary, #10b981);
    color: white;
    border-color: var(--accent-primary, #10b981);
}

/*# sourceURL=https://highflybet-deutschland.com/wp-content/themes/neon-casino-theme/src/blocks/theme-filters/style.css */

/* Rendered page inline stylesheet 12. */

:root {
    --bg-dark: #0f172a;
    --bg-panel: #1e293b;
    --bg-border: #334155;
    --accent-primary: #10b981;
    --accent-primary-hover: #059669;
    --accent-secondary: #f59e0b;
    --accent-button: #3ba14a;
    --accent-button-hover: #2f853b;
    --accent-danger: #ef4444;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-heading: #ffffff;
    --text-link: #10b981;
    --block-stats-bg-start: #112015;
    --block-stats-bg-end: #0a120c;
    --block-stats-border: #1f3625;
    --block-seo-bg: #1e293b;
    --block-faq-bg: rgba(0,0,0,0.2);
    --block-alert-bg: rgba(245,158,11,0.1);
    --block-quote-bg: rgba(255,255,255,0.02);
    --block-author-bg: rgba(255,255,255,0.02);
    --block-provider-bg: rgba(30,41,59,0.3);
    --card-bg: #1e293b;
    --card-overlay-bg: rgba(15,23,42,0.85);
    --banner-text-color: #ffffff;
    --banner-title-color: #eaffd6;
}

.category-block { margin-bottom: 40px; }
.category-header {
    display: flex; justify-content: space-between;
    align-items: flex-end; margin-bottom: 15px; padding-right: 10px;
}
.category-title {
    font-size: 24px; font-weight: 800; color: var(--text-heading, #fff);
    display: flex; align-items: center; gap: 10px;
}
.btn-view-all {
    background: transparent; color: var(--text-muted, #94a3b8);
    border: none; font-size: 14px; font-weight: bold; cursor: pointer;
}
.btn-view-all:hover { color: var(--accent-primary, #10b981); }
.games-slider {
    display: flex; gap: 15px; overflow-x: auto; padding-bottom: 20px;
    scroll-snap-type: x mandatory; scrollbar-width: thin;
    scrollbar-color: var(--bg-border, #334155) var(--bg-dark, #0f172a);
}
.games-slider::-webkit-scrollbar { height: 8px; }
.games-slider::-webkit-scrollbar-track { background: var(--bg-dark, #0f172a); border-radius: 10px; }
.games-slider::-webkit-scrollbar-thumb { background: var(--bg-border, #334155); border-radius: 10px; }
.game-card {
    flex: 0 0 200px; scroll-snap-align: start;
    background: var(--card-bg, #1e293b); border-radius: 12px; overflow: hidden;
    position: relative; cursor: pointer; transition: transform 0.3s;
}
.game-card:hover { transform: translateY(-5px); }
.game-cover { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.game-info { padding: 12px; }
.game-title {
    font-size: 14px; font-weight: bold; color: var(--text-heading, #fff);
    display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.game-provider { font-size: 12px; color: var(--text-muted, #94a3b8); margin-top: 4px; display: block; }
.game-jackpot-badge {
    position: absolute; top: 10px; right: 10px;
    background: var(--accent-danger, #ef4444); color: white;
    padding: 4px 10px; border-radius: 8px; font-size: 12px; font-weight: bold;
}
.game-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--card-overlay-bg, rgba(15,23,42,.85));
    display: flex; flex-direction: column;
    justify-content: center; align-items: center; gap: 15px;
    opacity: 0; transition: 0.3s;
}
.game-card:hover .game-overlay { opacity: 1; }
.btn-play { background: var(--accent-primary,#10b981); color: white; border: none; padding: 10px 25px; border-radius: 20px; font-weight: bold; cursor: pointer; }
.btn-demo { background: transparent; color: white; border: 1px solid white; padding: 6px 20px; border-radius: 20px; font-size: 13px; cursor: pointer; }
@media (max-width: 768px) { .category-block { margin-bottom: 30px; } .category-title { font-size: 20px; } }

/*# sourceURL=https://highflybet-deutschland.com/wp-content/themes/neon-casino-theme/src/blocks/game-slider/style.css */

/* Rendered page inline stylesheet 13. */

:root {
    --bg-dark: #0f172a;
    --bg-panel: #1e293b;
    --bg-border: #334155;
    --accent-primary: #10b981;
    --accent-primary-hover: #059669;
    --accent-secondary: #f59e0b;
    --accent-button: #3ba14a;
    --accent-button-hover: #2f853b;
    --accent-danger: #ef4444;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-heading: #ffffff;
    --text-link: #10b981;
    --block-stats-bg-start: #112015;
    --block-stats-bg-end: #0a120c;
    --block-stats-border: #1f3625;
    --block-seo-bg: #1e293b;
    --block-faq-bg: rgba(0,0,0,0.2);
    --block-alert-bg: rgba(245,158,11,0.1);
    --block-quote-bg: rgba(255,255,255,0.02);
    --block-author-bg: rgba(255,255,255,0.02);
    --block-provider-bg: rgba(30,41,59,0.3);
    --card-bg: #1e293b;
    --card-overlay-bg: rgba(15,23,42,0.85);
    --banner-text-color: #ffffff;
    --banner-title-color: #eaffd6;
}

.providers-section {
    margin-top: 50px; margin-bottom: 50px;
    background: var(--block-provider-bg, rgba(30,41,59,0.3));
    border-radius: 16px; padding: 30px;
    border: 1px solid var(--bg-border, #334155);
}
.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px; align-items: center; justify-items: center;
}
.provider-logo {
    display: flex; justify-content: center; align-items: center;
    width: 100%; height: 50px; transition: all 0.3s ease;
    filter: grayscale(100%) opacity(0.5);
}
.provider-logo:hover { filter: grayscale(0%) opacity(1); transform: scale(1.05); }
.provider-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
@media (max-width: 768px) {
    .providers-section { padding: 20px; margin-top: 30px; }
    .providers-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 15px; }
    .provider-logo { height: 40px; }
}

/*# sourceURL=https://highflybet-deutschland.com/wp-content/themes/neon-casino-theme/src/blocks/providers-grid/style.css */

/* Rendered page inline stylesheet 14. */

:root {
    --bg-dark: #0f172a;
    --bg-panel: #1e293b;
    --bg-border: #334155;
    --accent-primary: #10b981;
    --accent-primary-hover: #059669;
    --accent-secondary: #f59e0b;
    --accent-button: #3ba14a;
    --accent-button-hover: #2f853b;
    --accent-danger: #ef4444;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-heading: #ffffff;
    --text-link: #10b981;
    --block-stats-bg-start: #112015;
    --block-stats-bg-end: #0a120c;
    --block-stats-border: #1f3625;
    --block-seo-bg: #1e293b;
    --block-faq-bg: rgba(0,0,0,0.2);
    --block-alert-bg: rgba(245,158,11,0.1);
    --block-quote-bg: rgba(255,255,255,0.02);
    --block-author-bg: rgba(255,255,255,0.02);
    --block-provider-bg: rgba(30,41,59,0.3);
    --card-bg: #1e293b;
    --card-overlay-bg: rgba(15,23,42,0.85);
    --banner-text-color: #ffffff;
    --banner-title-color: #eaffd6;
}

.seo-block-section {
    background-color: var(--bg-dark, #0f172a);
    padding: 20px 0;
    margin-top: 20px;
}

.seo-block-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--block-seo-bg, #1e293b);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.seo-block-content > *:first-child { margin-top: 0; }
.seo-block-content > *:last-child { margin-bottom: 0; }

.seo-faq-wrapper { margin-top: 30px; margin-bottom: 0; }
.seo-faq-title {
    font-size: 22px; font-weight: 700; color: var(--text-heading, #fff);
    margin-bottom: 20px;
}
.seo-faq-content > *:first-child { margin-top: 0; }
.seo-faq-content > *:last-child { margin-bottom: 0; }
.seo-faq-content a {
    color: var(--text-link, #10b981);
    text-decoration: underline;
    text-underline-offset: 4px;
}
.seo-faq-content a:hover { color: var(--accent-primary-hover, #059669); }

@media (max-width: 768px) {
    .seo-block-container {
        padding: 25px 20px;
        border-radius: 0;
    }
}

/*# sourceURL=https://highflybet-deutschland.com/wp-content/themes/neon-casino-theme/src/blocks/faq-section/style.css */

/* Rendered page inline stylesheet 15. */

.seo-block-section {
    background-color: var(--bg-dark, #0f172a);
    padding: 20px 0;
    margin-top: 20px;
}

.seo-block-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--block-seo-bg, #1e293b);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.seo-block-content > *:first-child { margin-top: 0; }
.seo-block-content > *:last-child { margin-bottom: 0; }

.seo-block-content h1,
.seo-block-content h2,
.seo-block-content h3,
.seo-block-content h4,
.seo-block-content h5,
.seo-block-content h6 {
    color: var(--text-heading, #ffffff);
    line-height: 1.25;
    margin: 0 0 20px;
    font-weight: 800;
}

.seo-block-content h1 { font-size: 36px; }
.seo-block-content h2 { font-size: 32px; }
.seo-block-content h3 { font-size: 26px; }
.seo-block-content h4 { font-size: 22px; }
.seo-block-content h5 { font-size: 19px; }
.seo-block-content h6 { font-size: 17px; }

.seo-block-content p {
    color: var(--text-muted, #94a3b8);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 20px;
}

.seo-block-content a {
    color: var(--text-link, #10b981);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.seo-block-content a:hover { color: var(--accent-primary-hover, #059669); }

@media (max-width: 768px) {
    .seo-block-container {
        padding: 25px 20px;
        border-radius: 0;
    }

    .seo-block-content h1 { font-size: 32px; }
    .seo-block-content h2 { font-size: 28px; }
    .seo-block-content h3 { font-size: 24px; }
    .seo-block-content h4 { font-size: 20px; }
    .seo-block-content p { font-size: 15px; }
}
/*# sourceURL=https://highflybet-deutschland.com/wp-content/themes/neon-casino-theme/src/blocks/seo-text-section/style.css */

/* Rendered page inline stylesheet 16. */

.seo-block-section {
    background-color: var(--bg-dark, #0f172a);
    padding: 20px 0;
    margin-top: 20px;
}

.seo-block-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--block-seo-bg, #1e293b);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.seo-block-content > *:first-child { margin-top: 0; }
.seo-block-content > *:last-child { margin-bottom: 0; }

.seo-block-content h1,
.seo-block-content h2,
.seo-block-content h3,
.seo-block-content h4,
.seo-block-content h5,
.seo-block-content h6 {
    color: var(--text-heading, #ffffff);
    line-height: 1.25;
    margin: 0 0 20px;
    font-weight: 800;
}

.seo-block-content h1 { font-size: 36px; }
.seo-block-content h2 { font-size: 32px; }
.seo-block-content h3 { font-size: 26px; }
.seo-block-content h4 { font-size: 22px; }
.seo-block-content h5 { font-size: 19px; }
.seo-block-content h6 { font-size: 17px; }

.seo-block-content p {
    color: var(--text-muted, #94a3b8);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 20px;
}

.seo-block-content a {
    color: var(--text-link, #10b981);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.seo-block-content a:hover { color: var(--accent-primary-hover, #059669); }

.seo-table-section .wp-block-table,
.seo-table-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 20px;
    text-align: left;
}

.seo-table-section th {
    background: rgba(255,255,255,0.03);
    color: var(--text-heading, #ffffff);
    padding: 16px 20px;
    font-weight: 700;
    border-bottom: 2px solid var(--bg-border, #334155);
    white-space: nowrap;
}

.seo-table-section td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--bg-border, #334155);
    color: var(--text-muted, #94a3b8);
    font-size: 15px;
}

.seo-table-section tr:last-child td { border-bottom: 1px solid var(--bg-border, #334155); }

@media (max-width: 768px) {
    .seo-block-container {
        padding: 25px 20px;
        border-radius: 0;
    }

    .seo-block-content h1 { font-size: 32px; }
    .seo-block-content h2 { font-size: 28px; }
    .seo-block-content h3 { font-size: 24px; }
    .seo-block-content h4 { font-size: 20px; }
    .seo-block-content p { font-size: 15px; }
    .seo-table-section th,
    .seo-table-section td { padding: 12px 14px; }
}
/*# sourceURL=https://highflybet-deutschland.com/wp-content/themes/neon-casino-theme/src/blocks/seo-table-section/style.css */

/* Rendered page inline stylesheet 17. */

.seo-block-section {
    background-color: var(--bg-dark, #0f172a);
    padding: 20px 0;
    margin-top: 20px;
}

.seo-block-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--block-seo-bg, #1e293b);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.seo-block-content > *:first-child { margin-top: 0; }
.seo-block-content > *:last-child { margin-bottom: 0; }

.seo-block-content h1,
.seo-block-content h2,
.seo-block-content h3,
.seo-block-content h4,
.seo-block-content h5,
.seo-block-content h6 {
    color: var(--text-heading, #ffffff);
    line-height: 1.25;
    margin: 0 0 20px;
    font-weight: 800;
}

.seo-block-content h1 { font-size: 36px; }
.seo-block-content h2 { font-size: 32px; }
.seo-block-content h3 { font-size: 26px; }
.seo-block-content h4 { font-size: 22px; }
.seo-block-content h5 { font-size: 19px; }
.seo-block-content h6 { font-size: 17px; }

.seo-block-content p {
    color: var(--text-muted, #94a3b8);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 20px;
}

.seo-block-content a {
    color: var(--text-link, #10b981);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.seo-block-content a:hover { color: var(--accent-primary-hover, #059669); }

.seo-list-section .seo-block-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.seo-list-section .seo-block-content ul > li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 12px;
    color: var(--text-muted, #94a3b8);
    line-height: 1.6;
}

.seo-list-section .seo-block-content ul > li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-primary, #10b981);
    font-size: 14px;
    font-weight: bold;
    background: rgba(16, 185, 129, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.seo-list-section .seo-block-content li > p { margin-bottom: 0; }

@media (max-width: 768px) {
    .seo-block-container {
        padding: 25px 20px;
        border-radius: 0;
    }

    .seo-block-content h1 { font-size: 32px; }
    .seo-block-content h2 { font-size: 28px; }
    .seo-block-content h3 { font-size: 24px; }
    .seo-block-content h4 { font-size: 20px; }
    .seo-block-content p { font-size: 15px; }
}
/*# sourceURL=https://highflybet-deutschland.com/wp-content/themes/neon-casino-theme/src/blocks/seo-list-section/style.css */

/* Rendered page inline stylesheet 18. */

.seo-block-section {
    background-color: var(--bg-dark, #0f172a);
    padding: 20px 0;
    margin-top: 20px;
}

.seo-block-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--block-seo-bg, #1e293b);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.seo-block-content > *:first-child { margin-top: 0; }
.seo-block-content > *:last-child { margin-bottom: 0; }

.seo-block-content h1,
.seo-block-content h2,
.seo-block-content h3,
.seo-block-content h4,
.seo-block-content h5,
.seo-block-content h6 {
    color: var(--text-heading, #ffffff);
    line-height: 1.25;
    margin: 0 0 20px;
    font-weight: 800;
}

.seo-block-content h1 { font-size: 36px; }
.seo-block-content h2 { font-size: 32px; }
.seo-block-content h3 { font-size: 26px; }
.seo-block-content h4 { font-size: 22px; }
.seo-block-content h5 { font-size: 19px; }
.seo-block-content h6 { font-size: 17px; }

.seo-block-content p {
    color: var(--text-muted, #94a3b8);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 20px;
}

.seo-block-content a {
    color: var(--text-link, #10b981);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.seo-block-content a:hover { color: var(--accent-primary-hover, #059669); }

.seo-numbered-list-section-title {
    color: var(--text-heading, #ffffff);
    line-height: 1.25;
    margin: 0 0 20px;
    font-weight: 800;
}

.seo-numbered-list-section-intro p {
    color: var(--text-muted, #94a3b8);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.seo-numbered-list-section-intro a,
.seo-numbered-list-section .seo-step-desc a {
    color: var(--text-link, #10b981);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.seo-numbered-list-section-intro a:hover,
.seo-numbered-list-section .seo-step-desc a:hover { color: var(--accent-primary-hover, #059669); }

.seo-numbered-list-steps { margin-top: 30px; }

.seo-step-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.seo-step-item:last-child { margin-bottom: 0; }

.seo-step-number {
    flex-shrink: 0;
    background: var(--accent-primary, #10b981);
    color: #ffffff;
    font-weight: 900;
    font-size: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(16,185,129,0.3);
}

.seo-step-body { flex: 1; }

.seo-step-title {
    color: var(--text-heading, #fff);
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.seo-step-desc {
    color: var(--text-muted, #94a3b8);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.seo-step-desc > *:first-child { margin-top: 0; }
.seo-step-desc > *:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
    .seo-block-container {
        padding: 25px 20px;
        border-radius: 0;
    }

    .seo-block-content h1 { font-size: 32px; }
    .seo-block-content h2 { font-size: 28px; }
    .seo-block-content h3 { font-size: 24px; }
    .seo-block-content h4 { font-size: 20px; }
    .seo-block-content p { font-size: 15px; }
}
/*# sourceURL=https://highflybet-deutschland.com/wp-content/themes/neon-casino-theme/src/blocks/seo-numbered-list-section/style.css */

/* Rendered page inline stylesheet 19. */

:root {
    --bg-dark: #0f172a;
    --bg-panel: #1e293b;
    --bg-border: #334155;
    --accent-primary: #10b981;
    --accent-primary-hover: #059669;
    --accent-secondary: #f59e0b;
    --accent-button: #3ba14a;
    --accent-button-hover: #2f853b;
    --accent-danger: #ef4444;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-heading: #ffffff;
    --text-link: #10b981;
    --block-stats-bg-start: #112015;
    --block-stats-bg-end: #0a120c;
    --block-stats-border: #1f3625;
    --block-seo-bg: #1e293b;
    --block-faq-bg: rgba(0,0,0,0.2);
    --block-alert-bg: rgba(245,158,11,0.1);
    --block-quote-bg: rgba(255,255,255,0.02);
    --block-author-bg: rgba(255,255,255,0.02);
    --block-provider-bg: rgba(30,41,59,0.3);
    --card-bg: #1e293b;
    --card-overlay-bg: rgba(15,23,42,0.85);
    --banner-text-color: #ffffff;
    --banner-title-color: #eaffd6;
}

.seo-block-section {
    background-color: var(--bg-dark, #0f172a);
    padding: 20px 0;
    margin-top: 20px;
}

.seo-block-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--block-seo-bg, #1e293b);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.seo-block-content > *:first-child { margin-top: 0; }
.seo-block-content > *:last-child { margin-bottom: 0; }

.seo-author-block {
    display: flex; align-items: center; gap: 20px;
    background: var(--block-author-bg, rgba(255,255,255,0.02));
    border: 1px solid var(--bg-border, #334155);
    border-radius: 16px; padding: 25px; margin-top: 0;
}
.seo-author-avatar {
    flex-shrink: 0; width: 80px; height: 80px; border-radius: 50%; overflow: hidden;
    border: 2px solid var(--accent-primary, #10b981);
    box-shadow: 0 4px 10px rgba(16,185,129,0.2);
}
.seo-author-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.seo-author-info { display: flex; flex-direction: column; }
.seo-author-logo { width: auto; max-width: 180px; max-height: 32px; margin-bottom: 12px; object-fit: contain; }
.seo-author-name { color: var(--text-heading, #fff); font-size: 18px; font-weight: 800; margin-bottom: 5px; }
.seo-author-role { color: var(--accent-primary, #10b981); font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.seo-author-bio { color: var(--text-muted, #94a3b8); font-size: 14px; line-height: 1.6; margin: 0; }
.seo-author-bio > *:first-child { margin-top: 0; }
.seo-author-bio > *:last-child { margin-bottom: 0; }
.seo-author-bio a {
    color: var(--text-link, #10b981);
    text-decoration: underline;
    text-underline-offset: 4px;
}
.seo-author-bio a:hover { color: var(--accent-primary-hover, #059669); }
@media (max-width: 768px) {
    .seo-block-container { padding: 25px 20px; border-radius: 0; }
    .seo-author-block { flex-direction: column; text-align: center; padding: 20px; }
    .seo-author-avatar { width: 70px; height: 70px; margin-bottom: 10px; }
    .seo-author-logo { margin: 0 auto 12px; }
}

/*# sourceURL=https://highflybet-deutschland.com/wp-content/themes/neon-casino-theme/src/blocks/author-card/style.css */

/* Rendered page inline stylesheet 20. */

:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
/*# sourceURL=global-styles-inline-css */

/* Rendered page inline stylesheet 21. */

:root {
    --bg-dark: #141414;
    --bg-panel: #2b004c;
    --bg-border: #1fc1c6;
    --accent-primary: #e0e0e0;
    --accent-primary-hover: #bdbdbd;
    --accent-secondary: #ffcc00;
    --accent-button: #e0e0e0;
    --accent-button-hover: #bdbdbd;
    --accent-danger: #ff1744;
    --text-main: #f5f5f5;
    --text-muted: #757575;
    --text-heading: #ffffff;
    --text-link: #e0e0e0;
    --card-bg: #121212;
    --block-stats-bg-start: #0f0f0f;
    --block-stats-bg-end: #050505;
    --block-stats-border: #2a2a2a;
    --block-seo-bg: #121212;
    --banner-text-color: #f5f5f5;
    --banner-title-color: #fafafa;
    --card-overlay-bg: rgba(8, 8, 8, 0.85);
    --block-faq-bg: rgba(20, 20, 20, 0.2);
    --block-alert-bg: rgba(255, 204, 0, 0.1);
    --block-provider-bg: rgba(18, 18, 18, 0.3);
}


/* CMS integration: wrappers must not change the transferred block layout. */
.cms-block {
    display: contents;
}

.cms-block[hidden],
.cms-empty-block {
    display: none !important;
}

.content > .cms-block:first-child > :first-child {
    margin-top: 0;
}

/* Keep locally hosted media paths fluid in the same way WordPress does. */
.content img {
    max-width: 100%;
}

/* Keyboard-only accessibility without changing the reference composition. */
.cms-skip-link {
    position: fixed;
    left: 12px;
    top: -100px;
    z-index: 1000;
    padding: 10px 14px;
    border-radius: 6px;
    background: var(--accent-button);
    color: #111;
}

.cms-skip-link:focus {
    top: 12px;
}
