/*!
Theme Name: Custom Landing Theme
Theme URI: https://example.com/
Author: Theme Dev
Author URI: https://example.com/
Description: A custom WordPress theme.
Version: 1.4.6
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: t6f5cf
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
:root {
	--color-bg: #f5f7fa;
	--color-bg-alt: #fff;
	--color-surface: #fff;
	--color-text: #0a1c3a;
	--color-text-muted: rgba(10, 28, 58, 0.65);
	--color-border: rgba(10, 28, 58, 0.12);
	--color-primary: #63adf2;
	--color-primary-light: #a7cced;
	--color-primary-dark: #304d6d;
	--color-accent-red: #c62828;
	--color-accent-gold: #d4a017;
	--color-accent-green: #27ae60;
	--gradient-hero: linear-gradient(135deg, #0a1c3a 0%, #304d6d 40%, #63adf2 100%);
	--gradient-button: linear-gradient(90deg, #7bb9f4, #4ba1f0);
	--gradient-gold: linear-gradient(135deg, #e9b835, #8f6c10);
	--color-success: #27ae60;
	--color-warning: #f2c94c;
	--color-error: #c62828;
	--color-info: #63adf2;
	--theme-transition: 0.25s ease;
}

[data-theme="dark"] {
	--color-bg: #0a1c3a;
	--color-bg-alt: #122744;
	--color-surface: #1a2e4a;
	--color-text: #fff;
	--color-text-muted: rgba(255, 255, 255, 0.65);
	--color-border: rgba(255, 255, 255, 0.12);
	--color-primary: #63adf2;
	--color-primary-light: #a7cced;
	--color-primary-dark: #304d6d;
	--color-accent-red: #c62828;
	--color-accent-gold: #d4a017;
	--color-accent-green: #27ae60;
	--gradient-hero: linear-gradient(135deg, #0a1c3a 0%, #304d6d 40%, #63adf2 100%);
	--gradient-button: linear-gradient(90deg, #7bb9f4, #4ba1f0);
	--gradient-gold: linear-gradient(135deg, #e9b835, #8f6c10);
	--color-success: #27ae60;
	--color-warning: #f2c94c;
	--color-error: #c62828;
	--color-info: #63adf2;
}

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body {
	color: var(--color-text);
	font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	transition: color var(--theme-transition);
}

button,
input,
select,
optgroup,
textarea {
	font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, sans-serif;
	color: var(--color-text);
	transition: color var(--theme-transition);
}

h2[id] {
	scroll-margin-top: 120px;
}

@media (max-width: 768px) {

	h2[id] {
		scroll-margin-top: 100px;
	}
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: var(--color-surface);
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted var(--color-accent-red);
	cursor: help;
}

mark,
ins {
	background: var(--color-surface);
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
html {
	transition: background-color var(--theme-transition), color var(--theme-transition);
}

body {
	background-color: var(--color-bg);
	color: var(--color-text);
	transition: background-color var(--theme-transition), color var(--theme-transition);
}

/**
 * Global Container
 * Provides consistent width constraints and padding across the site
 */
.container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 768px) {

	.container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

@media (min-width: 1024px) {

	.container {
		max-width: 1250px;
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

/**
 * WordPress Block Group
 * Content area with subtle background contrast and rounded corners
 */
.wp-block-group {
	max-width: 900px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
	background-color: var(--color-surface);
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	transition: background-color var(--theme-transition), box-shadow var(--theme-transition);
}

@media (min-width: 768px) {

	.wp-block-group {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

@media (min-width: 1024px) {

	.wp-block-group {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

hr {
	background-color: var(--color-border);
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
	transition: background-color var(--theme-transition);
}

ul,
ol {
	margin: 0 0 1.5em 0;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

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

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: var(--color-primary);
	transition: color var(--theme-transition);
}

a:hover,
a:focus,
a:active {
	color: var(--color-primary-light);
}

a:focus {
	outline: thin dotted;
	outline-color: var(--color-primary);
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: var(--color-primary-dark);
	border-radius: 3px;
	background: var(--color-primary);
	color: var(--color-bg-alt);
	font-weight: 700;
	line-height: 1;
	padding: 0.6em 1em 0.4em;
	transition: background var(--theme-transition), border-color var(--theme-transition), box-shadow var(--theme-transition), transform 0.1s ease, color var(--theme-transition);
	box-shadow: 0 4px 12px rgba(99, 173, 242, 0.5), 0 0 0 1px rgba(48, 77, 109, 0.4);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: var(--color-primary);
	box-shadow: 0 6px 16px rgba(99, 173, 242, 0.6), 0 0 0 1px rgba(48, 77, 109, 0.5);
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: var(--color-primary-light);
	box-shadow: 0 3px 10px rgba(99, 173, 242, 0.5), 0 0 0 1px rgba(48, 77, 109, 0.6);
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: var(--color-text-muted);
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 3px;
	padding: 3px;
	transition: color var(--theme-transition), background-color var(--theme-transition), border-color var(--theme-transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: var(--color-text);
	border-color: var(--color-primary);
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

select {
	border: 1px solid var(--color-border);
	background-color: var(--color-surface);
	color: var(--color-text);
	transition: border-color var(--theme-transition), background-color var(--theme-transition), color var(--theme-transition);
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.c-d1f3da {
	position: sticky;
	top: 0;
	z-index: 100;
	background-color: var(--color-surface);
	backdrop-filter: none;
	box-shadow: none;
	transition: background-color var(--theme-transition), box-shadow var(--theme-transition);
}

.c-d1f3da.c-a4d40a {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.65);
}

.c-d1f3da .container {
	width: 100%;
}

.c-427c24 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 0;
}

@media (max-width: 1100px) {

	.c-427c24 {
		padding: 1rem 0;
	}
}

.c-8d6140 {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	z-index: 1001;
	position: relative;
}

.c-8d6140 .custom-logo-link {
	display: block;
	line-height: 1;
	transition: opacity var(--theme-transition);
}

.c-8d6140 .c-88a36d {
	display: none;
}

.c-8d6140 .custom-logo {
	max-width: 200px;
	width: auto;
	height: auto;
	transition: opacity var(--theme-transition);
}

@media screen and (max-width: 1100px) {

	.c-8d6140 .custom-logo {
		max-width: 150px;
	}
}

[data-theme="dark"] .c-8d6140 .custom-logo-link {
	display: none;
}

[data-theme="dark"] .c-8d6140 .c-88a36d {
	display: block;
}

.c-dc238b {
	display: flex;
	align-items: center;
	z-index: 1001;
}

.c-dc238b .c-0438a2 {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

@media (max-width: 1100px) {

	.c-dc238b .c-0438a2 {
		position: fixed;
		top: 0;
		right: -100%;
		width: 85%;
		max-width: 400px;
		height: 100vh;
		background-color: var(--color-surface);
		flex-direction: column;
		align-items: flex-start;
		padding: 5rem 2rem 2rem;
		gap: 0;
		transition: right 0.3s ease, background-color var(--theme-transition);
		overflow-y: auto;
		backdrop-filter: blur(10px);
	}
}

.c-dc238b .c-0438a2 li {
	margin: 0;
	padding: 0;
	position: relative;
}

@media (max-width: 1100px) {

	.c-dc238b .c-0438a2 li {
		width: 100%;
		border-bottom: 1px solid var(--color-border);
	}
}

.c-dc238b .c-0438a2 li.menu-item-has-children > a {
	position: relative;
	padding-right: 1.5rem;
}

.c-dc238b .c-0438a2 li.menu-item-has-children > a::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid currentColor;
	transition: transform 0.3s ease;
	margin-left: 0.5rem;
	pointer-events: none;
}

@media (max-width: 1100px) {

	.c-dc238b .c-0438a2 li.menu-item-has-children > a::after {
		right: 0;
	}
}

@media (max-width: 1100px) {

	.c-dc238b .c-0438a2 li.menu-item-has-children > a {
		padding-right: 2.5rem;
	}
}

@media (min-width: 1101px) {

	.c-dc238b .c-0438a2 li.menu-item-has-children:hover > a::after {
		transform: translateY(-50%) rotate(180deg);
	}
}

.c-dc238b .c-0438a2 li.menu-item-has-children.c-e1e693 > a::after {
	transform: translateY(-50%) rotate(180deg);
}

.c-dc238b .c-0438a2 a {
	color: var(--color-text);
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: color var(--theme-transition);
	display: flex;
	align-items: center;
	white-space: nowrap;
}

@media (max-width: 1100px) {

	.c-dc238b .c-0438a2 a {
		padding: 1rem 0;
		width: 100%;
		font-size: 1rem;
	}
}

.c-dc238b .c-0438a2 a:hover {
	color: var(--color-primary);
}

.c-dc238b .c-0438a2 .sub-menu {
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 0;
	min-width: 220px;
	background-color: var(--color-surface);
	backdrop-filter: blur(10px);
	list-style: none;
	margin: 0;
	padding: 0.5rem 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color var(--theme-transition);
	border-radius: 8px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	z-index: 1000;
	border: 1px solid var(--color-border);
}

@media (max-width: 1100px) {

	.c-dc238b .c-0438a2 .sub-menu {
		position: static;
		width: 100%;
		background-color: var(--color-bg);
		opacity: 0;
		visibility: hidden;
		max-height: 0;
		overflow: hidden;
		transform: none;
		transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.4s ease, padding 0.3s ease, background-color var(--theme-transition);
		margin-top: 0;
		padding: 0;
		border-radius: 0;
		box-shadow: none;
		display: block;
	}
}

.c-dc238b .c-0438a2 .sub-menu li {
	margin: 0;
	padding: 0;
}

@media (max-width: 1100px) {

	.c-dc238b .c-0438a2 .sub-menu li {
		border-bottom: 1px solid var(--color-border);
		width: 100%;
	}
}

.c-dc238b .c-0438a2 .sub-menu li a {
	display: block;
	padding: 0.75rem 1.5rem;
	font-size: 0.875rem;
	font-weight: 400;
	text-transform: none;
	letter-spacing: normal;
	white-space: nowrap;
	border-radius: 0;
	transition: background var(--theme-transition), color var(--theme-transition);
}

@media (max-width: 1100px) {

	.c-dc238b .c-0438a2 .sub-menu li a {
		padding: 0.75rem 1rem 0.75rem 2rem;
		font-size: 0.9375rem;
		white-space: normal;
		word-wrap: break-word;
		line-height: 1.4;
	}
}

.c-dc238b .c-0438a2 .sub-menu li a:hover {
	background-color: var(--color-bg);
	color: var(--color-primary);
}

.c-dc238b .c-0438a2 .sub-menu li a:first-child {
	border-radius: 8px 8px 0 0;
}

.c-dc238b .c-0438a2 .sub-menu li a:last-child {
	border-radius: 0 0 8px 8px;
}

.c-dc238b .c-0438a2 .sub-menu li a:only-child {
	border-radius: 8px;
}

@media (min-width: 1101px) {

	.c-dc238b .c-0438a2 .menu-item-has-children:hover > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		transition-delay: 0.1s;
	}
}

@media (min-width: 1101px) {

	.c-dc238b .c-0438a2 .sub-menu:hover {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}

@media (max-width: 1100px) {

	.c-dc238b .c-0438a2 .menu-item-has-children.c-e1e693 > .sub-menu {
		opacity: 1 !important;
		visibility: visible !important;
		max-height: 1000px !important;
		padding: 0.5rem 0 !important;
		overflow: visible !important;
	}
}

@media (max-width: 1100px) {

	.c-dc238b.c-b23787 .c-0438a2 {
		right: 0;
	}
}

.c-b09e71 {
	position: fixed;
	bottom: 7rem;
	right: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 50%;
	cursor: pointer;
	padding: 0.5rem;
	color: var(--color-text);
	width: 52px;
	height: 52px;
	z-index: 9998;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: background-color var(--theme-transition), border-color var(--theme-transition), color var(--theme-transition), transform 0.2s ease, box-shadow 0.2s ease;
}

.c-b09e71:hover {
	background-color: var(--color-primary);
	border-color: var(--color-primary-light);
	color: var(--color-bg-alt);
	transform: scale(1.1);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.c-b09e71:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

.c-217b20 {
	position: absolute;
	width: 20px;
	height: 20px;
	transition: opacity var(--theme-transition), transform var(--theme-transition);
	color: currentColor;
}

.c-c43b89 {
	opacity: 0;
	transform: rotate(-90deg);
}

.c-6d23f8 .c-646c6c {
	opacity: 0;
	transform: rotate(90deg);
}

.c-6d23f8 .c-c43b89 {
	opacity: 1;
	transform: rotate(0deg);
}

@media (max-width: 768px) {

	.c-b09e71 {
		bottom: 5.5rem;
		right: 1.5rem;
		width: 44px;
		height: 44px;
		left: auto;
	}
}

.c-178c45 {
	display: none;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	color: var(--color-text);
	position: relative;
	width: 40px;
	height: 40px;
	z-index: 1002;
	align-items: center;
	justify-content: center;
	transition: color var(--theme-transition);
}

@media (max-width: 1100px) {

	.c-178c45 {
		display: flex;
	}
}

.c-17c404 {
	position: absolute;
	width: 24px;
	height: 24px;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.c-454427 {
	opacity: 0;
	transform: rotate(90deg);
}

.c-178c45[aria-expanded="true"] .c-291e4e {
	opacity: 0;
	transform: rotate(90deg);
}

.c-178c45[aria-expanded="true"] .c-454427 {
	opacity: 1;
	transform: rotate(0deg);
}

body.c-6e5af9 {
	overflow: hidden;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.updated:not(.published) {
	display: none;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/* Casino List
--------------------------------------------- */
.c-429a5b {
	background-color: var(--color-bg);
	padding: 25px 0;
	transition: background-color var(--theme-transition);
}

.c-d2579a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1rem;
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 6px;
	margin-bottom: 1.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--color-text);
	transition: background-color var(--theme-transition), border-color var(--theme-transition), color var(--theme-transition);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {

	.c-d2579a {
		font-size: 0.8125rem;
		padding: 0.5rem 0.875rem;
		margin-bottom: 1.25rem;
	}
}

.c-3cb853 {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	color: var(--color-primary);
	transition: color var(--theme-transition);
}

.c-3cb853 svg {
	width: 100%;
	height: 100%;
}

.c-63edff {
	color: var(--color-text);
	transition: color var(--theme-transition);
}

.c-f161af {
	color: var(--color-primary);
	font-weight: 600;
	transition: color var(--theme-transition);
}

.c-e2245a {
	text-align: center;
	padding: 2rem;
	color: var(--color-text-muted);
	transition: color var(--theme-transition);
}

.c-c8cbc9 {
	margin-top: 2rem;
	padding: 0.75rem 1.5rem;
	border: 1px solid var(--color-border);
	background: var(--color-primary);
	color: var(--color-bg-alt);
	border-radius: 6px;
	cursor: pointer;
	font-size: 0.875rem;
	transition: all var(--theme-transition);
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
}

.c-c8cbc9:hover {
	opacity: 0.9;
	border-color: var(--color-primary-light);
	cursor: pointer;
}

.c-6ba1ee {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
}

.c-aeab80 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	margin-bottom: 1.5rem;
	text-align: center;
	gap: 1rem;
	align-items: center;
	padding: 0.75rem 1.25rem;
	border-bottom: 2px solid var(--color-primary);
	background-color: var(--color-surface);
	border-radius: 8px 8px 0 0;
	transition: background-color var(--theme-transition), border-color var(--theme-transition);
}

@media (max-width: 1023px) {

	.c-aeab80 {
		display: none;
	}
}

.c-c7c5d9 {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.c-a1690b {
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-text);
	letter-spacing: 0.05em;
	transition: color var(--theme-transition);
}

.c-dee40a {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: 0.75rem;
	align-items: center;
	padding: 0.875rem;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	background-color: var(--color-surface);
	transition: all var(--theme-transition), box-shadow 0.2s ease;
	position: relative;
}

.c-dee40a:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.c-0758ab {
	box-shadow: 0 4px 18px rgba(99, 173, 242, 0.35);
	border: 2px solid var(--color-primary);
	animation: first-casino-glow 3s ease-in-out infinite;
}

@media (max-width: 1023px) {

	.c-dee40a {
		grid-template-columns: 1fr;
		gap: 0.75rem;
		padding: 0.75rem;
	}
}

.c-7ef9fa {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--color-accent-gold) 0%, #8f6c10 100%);
	color: #fff;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.25rem 0.75rem;
	border-radius: 12px;
	white-space: nowrap;
	z-index: 5;
	box-shadow: 0 2px 8px rgba(212, 160, 23, 0.4);
}

@media (max-width: 1023px) {

	.c-7ef9fa {
		font-size: 0.625rem;
		padding: 0.1875rem 0.625rem;
		top: -10px;
	}
}

@keyframes first-casino-glow {

	0%,
	100% {
		box-shadow: 0 4px 18px rgba(99, 173, 242, 0.35);
	}

	50% {
		box-shadow: 0 4px 25px rgba(99, 173, 242, 0.5), 0 0 15px rgba(99, 173, 242, 0.3);
	}
}

.c-208421 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.c-305ec3 {
	min-width: 0;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding-top: 20px;
}

.c-590a6c {
	font-size: 0.875rem;
	color: var(--color-text-muted);
	line-height: 1.5;
	align-items: flex-start;
	transition: color var(--theme-transition);
}

@media (max-width: 1023px) {

	.c-590a6c {
		flex-direction: column;
		align-items: center;
	}
}

.c-ca192f {
	font-size: 1.35rem;
	color: var(--color-text);
	line-height: 1.3;
	justify-content: center;
	text-align: center;
	gap: 0.5rem;
	font-weight: 800;
	text-transform: uppercase;
	transition: color var(--theme-transition);
	padding: 0.75rem;
	background: linear-gradient(135deg, rgba(99, 173, 242, 0.1), rgba(99, 173, 242, 0.05));
	border: 2px solid var(--color-primary);
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(99, 173, 242, 0.2);
}

.c-ca192f span {
	color: var(--color-primary);
	font-weight: 900;
}

@media (max-width: 1023px) {

	.c-ca192f {
		font-size: 1.2rem;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		padding: 0.625rem;
	}
}

.c-d4d815 {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

@media (max-width: 1023px) {

	.c-d4d815 {
		width: 100%;
		justify-content: stretch;
	}

	.c-d4d815 .c-478dda {
		flex: 1;
	}
}

.c-8da556 {
	width: 100px;
	height: 95px;
	object-fit: contain;
	background-color: #0a1c3a;
	padding: 0.5rem;
	border-radius: 6px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	transition: background-color var(--theme-transition), padding var(--theme-transition), border-radius var(--theme-transition), box-shadow var(--theme-transition);
}

[data-theme="dark"] .c-8da556 {
	background-color: transparent;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
}

.c-f824f2 {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--color-text);
	line-height: 1.4;
	text-align: center;
	transition: color var(--theme-transition);
}

.c-c90f31 {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.25rem;
}

.c-d48514 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-primary);
	line-height: 1;
	transition: color var(--theme-transition);
}

.c-c2c847 {
	font-size: 1rem;
	font-weight: 500;
	color: var(--color-text-muted);
	line-height: 1;
	transition: color var(--theme-transition);
}

.c-7793c8 {
	word-break: break-word;
	font-size: inherit;
}

.c-7793c8 span.small {
	font-size: 0.75em;
	color: inherit;
}

@media (max-width: 1023px) {

	.c-7793c8 span.small {
		font-size: 0.8em;
	}
}

@media (max-width: 768px) {

	.c-7793c8 span.small {
		font-size: 0.85em;
	}
}

.c-01e98a {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.25rem;
}

.c-da22b6 {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--color-text);
	line-height: 1.5;
	text-transform: uppercase;
	transition: color var(--theme-transition);
}

.c-d455fc {
	flex-shrink: 0;
	width: 16px;
	height: 17px;
}

.c-621f60 {
	word-break: break-word;
}

.c-478dda {
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
	border: none;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
}

.c-2c315d {
	background: var(--color-accent-green);
	color: var(--color-bg-alt);
	text-transform: uppercase;
	min-width: 180px;
	font-weight: 800;
	font-size: 1.05rem;
	box-shadow: 0 4px 15px rgba(39, 174, 96, 0.5), 0 2px 6px rgba(39, 174, 96, 0.3) inset, 0 0 12px rgba(39, 174, 96, 0.4);
	letter-spacing: 0.05em;
	transition: all var(--theme-transition), transform 0.2s ease, box-shadow 0.2s ease;
	animation: cta-pulse-glow 4s ease-in-out infinite;
}

.c-2c315d:hover {
	background: linear-gradient(90deg, #2cc36b, #295);
	color: var(--color-bg-alt);
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 8px 25px rgba(39, 174, 96, 0.6), 0 4px 10px rgba(39, 174, 96, 0.4) inset, 0 0 20px rgba(39, 174, 96, 0.5);
	cursor: pointer;
	animation: none;
}

@keyframes cta-pulse-glow {

	0%,
	100% {
		box-shadow: 0 4px 15px rgba(39, 174, 96, 0.5), 0 2px 6px rgba(39, 174, 96, 0.3) inset, 0 0 12px rgba(39, 174, 96, 0.4);
		transform: scale(1);
	}

	50% {
		box-shadow: 0 6px 25px rgba(39, 174, 96, 0.7), 0 3px 8px rgba(39, 174, 96, 0.4) inset, 0 0 25px rgba(39, 174, 96, 0.6);
		transform: scale(1.02);
	}
}

.c-bd5f48 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	padding: 0.375rem 0.75rem;
	background: linear-gradient(135deg, rgba(198, 40, 40, 0.15) 0%, rgba(198, 40, 40, 0.05) 100%);
	border: 1px solid var(--color-accent-red);
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--color-accent-red);
	margin-top: 0.5rem;
	animation: urgency-flash 2s ease-in-out infinite;
}

@media (max-width: 1023px) {

	.c-bd5f48 {
		margin-top: 0.375rem;
		font-size: 0.6875rem;
	}
}

.c-2b7c0a {
	flex-shrink: 0;
	width: 12px;
	height: 12px;
}

.c-c80193 {
	font-variant-numeric: tabular-nums;
	font-weight: 700;
}

@keyframes urgency-flash {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.7;
	}
}

@media (max-width: 768px) {

	.c-dee40a {
		padding: 0.875rem;
	}

	.c-f824f2 {
		font-size: 0.875rem;
	}

	.c-8da556 {
		width: 80px;
		height: 76px;
		padding: 0.375rem;
	}

	.c-ca192f,
	.c-590a6c {
		font-size: 0.8125rem;
	}

	.c-478dda {
		padding: 0.4375rem 0.875rem;
		font-size: 0.8125rem;
	}
}

.c-37cd31 {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	border-radius: 8px 0;
	background: var(--color-primary);
	color: var(--color-bg-alt);
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 1;
	z-index: 10;
	padding: 0.25rem 0.5rem;
	transition: background var(--theme-transition), color var(--theme-transition);
}

.c-739e65 {
	color: var(--color-primary);
	background-color: var(--color-surface);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	transition: color var(--theme-transition), background-color var(--theme-transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

.c-71075e {
	width: 100%;
	padding: 2rem 0;
}

.c-71075e .c-6ba1ee {
	width: 100%;
}

.c-71075e .c-c7c5d9 {
	display: flex;
	flex-direction: column;
	gap: 0;
}

@media (max-width: 768px) {

	.c-71075e {
		padding: 1.5rem 0;
	}
}

/* Hero Block
--------------------------------------------- */
.c-af00d2 {
	position: relative;
	width: 100%;
	background-color: transparent;
	display: flex;
	align-items: center;
	padding: clamp(2rem, 4vw, 3rem) 0;
}

.c-9a1824 {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 12px;
	overflow: hidden;
}

.c-9a1824::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.4) 100%);
	z-index: 1;
}

.c-9a1824 .c-b828e4 {
	color: #fff;
}

.c-9a1824 .c-f90b1c {
	color: #fff;
}

.c-9a1824 .c-8a4824 {
	color: #fff;
}

.c-9a1824 .c-8c6f34 {
	color: rgba(255, 255, 255, 0.8);
}

.c-9a1824 .c-55ecee,
.c-9a1824 .c-55ecee p,
.c-9a1824 .c-55ecee li {
	color: rgba(255, 255, 255, 0.9);
}

.c-9a1824 .c-312033 {
	color: rgba(255, 255, 255, 0.8);
}

.c-9a1824 .c-312033:hover {
	color: #fff;
}

.c-af00d2 .container {
	position: relative;
	z-index: 2;
	width: 100%;
}

.c-b828e4 {
	color: var(--color-text);
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 1rem;
	transition: color var(--theme-transition);
}

.c-f90b1c {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: clamp(1.2, 1.3, 1.4);
	color: var(--color-text);
	max-width: 90ch;
	animation: fadeInUp 0.8s ease-out;
	transition: color var(--theme-transition);
	text-align: left;
}

@media (max-width: 768px) {

	.c-f90b1c {
		margin-bottom: 0.75rem;
	}
}

.c-7bdc9d {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	width: 100%;
	justify-content: flex-start;
	text-decoration: none;
	color: inherit;
	transition: opacity var(--theme-transition);
}

.c-7bdc9d:hover,
.c-7bdc9d:focus {
	opacity: 0.8;
	text-decoration: none;
}

.c-7bdc9d:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
	border-radius: 4px;
}

@media (max-width: 768px) {

	.c-7bdc9d {
		gap: 0.5rem;
		margin-bottom: 0.5rem;
	}
}

.c-3fc731 {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

@media (max-width: 768px) {

	.c-3fc731 {
		width: 32px;
		height: 32px;
	}
}

.c-b63399 {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
	text-align: left;
}

.c-8a4824 {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-text);
	line-height: 1.3;
	transition: color var(--theme-transition);
}

@media (max-width: 768px) {

	.c-8a4824 {
		font-size: 0.8125rem;
	}
}

.c-8c6f34 {
	font-size: 0.75rem;
	color: var(--color-text-muted);
	line-height: 1.3;
	transition: color var(--theme-transition);
}

@media (max-width: 768px) {

	.c-8c6f34 {
		font-size: 0.6875rem;
	}
}

.c-55ecee {
	width: 100%;
	text-align: left;
	max-width: 90ch;
	margin-top: 1.5rem;
	color: var(--color-text);
	font-size: clamp(1rem, 2vw, 1.125rem);
	line-height: 1.7;
	transition: color var(--theme-transition), max-height 0.3s ease;
}

@media (max-width: 430px) {

	.c-55ecee {
		margin-top: 1rem;
		font-size: 0.9375rem;
		max-height: 7rem;
		overflow: hidden;
		position: relative;
		transition: max-height 0.3s ease, color var(--theme-transition);
	}

	.c-55ecee.c-45078d {
		max-height: none;
	}

	.c-55ecee.c-fc01f0 {
		-webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, rgba(0, 0, 0, 0.4) 85%, transparent 100%);
		mask-image: linear-gradient(to bottom, #000 0%, #000 55%, rgba(0, 0, 0, 0.4) 85%, transparent 100%);
	}
}

.c-55ecee p {
	margin: 0 0 1rem;
}

.c-55ecee p:last-child {
	margin-bottom: 0;
}

.c-55ecee ul,
.c-55ecee ol {
	text-align: left;
	margin: 1rem 0;
	padding-left: 1.5rem;
}

@media (max-width: 768px) {

	.c-55ecee ul,
	.c-55ecee ol {
		text-align: center;
	}
}

.c-55ecee a {
	color: var(--color-primary);
	text-decoration: underline;
	transition: color var(--theme-transition);
}

.c-55ecee a:hover {
	color: var(--color-primary-light);
}

.c-312033 {
	display: none;
	margin-top: 0.75rem;
	padding: 0.5rem 1rem;
	background: transparent;
	border: 1px solid var(--color-primary);
	border-radius: 6px;
	color: var(--color-primary);
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: all var(--theme-transition);
	text-align: left;
}

@media (max-width: 430px) {

	.c-312033 {
		display: inline-block;
	}
}

.c-312033:hover,
.c-312033:focus {
	background-color: var(--color-primary);
	color: var(--color-bg-alt);
	outline: none;
}

.c-312033:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

.c-312033:active {
	transform: scale(0.98);
}

.c-fa9889 {
	width: 100%;
	animation: fadeInUp 1s ease-out 0.2s both;
	flex: 1 1 50%;
}

@media (min-width: 1024px) {

	.c-fa9889 {
		max-width: 500px;
		width: 100%;
		flex: 1 1 55%;
	}
}

.c-54fea9 {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: clamp(0.75rem, 2vw, 1.5rem);
	align-items: stretch;
	padding: clamp(1.25rem, 3vw, 2rem);
	background-color: var(--color-surface);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 2px solid var(--color-primary);
	border-radius: clamp(12px, 2vw, 16px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--color-primary) inset, 0 4px 16px rgba(99, 173, 242, 0.2);
	position: relative;
	transition: all var(--theme-transition), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	max-width: 100%;
	box-sizing: border-box;
}

.c-54fea9::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(99, 173, 242, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.c-54fea9:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--color-primary-light) inset, 0 8px 24px rgba(99, 173, 242, 0.3);
	border-color: var(--color-primary-light);
}

.c-54fea9:hover::before {
	opacity: 1;
}

@media (max-width: 1023px) {

	.c-54fea9 {
		gap: clamp(1rem, 3vw, 1.5rem);
		padding: clamp(1rem, 3vw, 1.5rem);
	}
}

@media (max-width: 768px) {

	.c-54fea9 {
		margin-top: 0;
		padding: clamp(1rem, 4vw, 1.25rem);
	}
}

.c-7ed0d1 {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	border-radius: 12px 0;
	z-index: 10;
	padding: 0.25rem 0.5rem;
}

.c-cb8d6e {
	background: var(--color-accent-gold);
	color: var(--color-bg-alt);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1;
	padding: 0.25rem 0.5rem;
	border-radius: 6px;
	transition: background var(--theme-transition), color var(--theme-transition);
}

@media (max-width: 1023px) {

	.c-cb8d6e {
		position: static;
		display: inline-block;
		margin-bottom: 0.5rem;
	}
}

.c-06221e {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.c-387432 {
	min-width: 0;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	padding-top: 30px;
}

@media (max-width: 1023px) {

	.c-387432 {
		padding-top: 0;
	}
}

.c-576de7 {
	font-size: 1.05rem;
	color: var(--color-text);
	line-height: 1.5;
	justify-content: center;
	text-align: center;
	gap: 0.5rem;
	font-weight: 700;
	text-transform: uppercase;
	transition: color var(--theme-transition);
}

@media (max-width: 1023px) {

	.c-576de7 {
		flex-direction: row;
		align-items: center;
		justify-content: center;
	}
}

.c-096c54 {
	font-size: 0.875rem;
	color: var(--color-text-muted);
	line-height: 1.5;
	align-items: flex-start;
	transition: color var(--theme-transition);
}

@media (max-width: 1023px) {

	.c-096c54 {
		flex-direction: column;
		align-items: center;
	}
}

.c-98e945 {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

@media (max-width: 1023px) {

	.c-98e945 {
		width: 100%;
		justify-content: stretch;
	}
}

.c-7d8d17 {
	width: 138px;
	height: 131px;
	object-fit: contain;
}

@media (max-width: 1023px) {

	.c-7d8d17 {
		width: 120px;
		height: 120px;
	}
}

@media (max-width: 768px) {

	.c-7d8d17 {
		width: 100px;
		height: 100px;
	}
}

.c-ee6dee {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--color-text);
	line-height: 1.4;
	text-align: center;
	transition: color var(--theme-transition);
}

@media (max-width: 768px) {

	.c-ee6dee {
		font-size: 0.9375rem;
	}
}

.c-84fc8a {
	word-break: break-word;
	font-size: 1.2rem;
}

@media (max-width: 1023px) {

	.c-84fc8a {
		font-size: 1rem;
	}
}

.c-75d183 {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.375rem;
}

@media (max-width: 1023px) {

	.c-75d183 {
		width: 100%;
	}
}

.c-d7011e {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--color-text);
	line-height: 1.5;
	text-transform: uppercase;
	transition: color var(--theme-transition);
}

.c-52502c {
	flex-shrink: 0;
	width: 16px;
	height: 17px;
}

.c-d3ce82 {
	word-break: break-word;
}

.c-c2c83d {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.25rem;
}

.c-80ac31 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-primary);
	line-height: 1;
	transition: color var(--theme-transition);
}

.c-68dc97 {
	font-size: 1rem;
	font-weight: 500;
	color: var(--color-text-muted);
	line-height: 1;
	transition: color var(--theme-transition);
}

.c-5f7f0b {
	padding: clamp(0.625rem, 2vw, 0.875rem) clamp(1.25rem, 3vw, 2rem);
	border-radius: clamp(8px, 1.5vw, 12px);
	font-size: clamp(0.875rem, 2vw, 1rem);
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	border: none;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	letter-spacing: 0.05em;
	position: relative;
	overflow: hidden;
}

.c-5f7f0b::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(99, 173, 242, 0.2);
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.c-5f7f0b:active::before {
	width: 300px;
	height: 300px;
}

.c-f76db7 {
	background: var(--color-primary);
	color: var(--color-bg-alt);
	text-transform: uppercase;
	transition: all var(--theme-transition), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	min-width: clamp(140px, 20vw, 180px);
	box-shadow: 0 6px 20px rgba(99, 173, 242, 0.5), 0 2px 8px rgba(99, 173, 242, 0.3) inset, 0 0 15px rgba(99, 173, 242, 0.4);
	font-weight: 700;
	letter-spacing: 0.08em;
}

.c-f76db7:hover,
.c-f76db7:focus {
	background: var(--gradient-button);
	color: var(--color-bg-alt);
	transform: translateY(-4px) scale(1.03);
	box-shadow: 0 12px 30px rgba(99, 173, 242, 0.6), 0 4px 12px rgba(99, 173, 242, 0.4) inset, 0 0 25px rgba(99, 173, 242, 0.5);
	outline: 3px solid var(--color-primary);
	outline-offset: 3px;
}

.c-f76db7:active {
	transform: translateY(-2px) scale(0.99);
	box-shadow: 0 4px 15px rgba(99, 173, 242, 0.5), 0 2px 6px rgba(99, 173, 242, 0.3) inset;
}

@media (max-width: 1023px) {

	.c-5f7f0b {
		width: 100%;
		padding: clamp(0.875rem, 3vw, 1rem) clamp(1.5rem, 5vw, 2rem);
	}
}

@media (max-width: 768px) {

	.c-5f7f0b {
		padding: clamp(0.75rem, 4vw, 0.875rem) clamp(1.25rem, 6vw, 1.75rem);
		font-size: clamp(0.8125rem, 3vw, 0.9375rem);
	}
}

@keyframes fadeInUp {

	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {

	.c-f90b1c,
	.c-fa9889,
	.c-54fea9 {
		animation: none;
	}

	.c-54fea9:hover {
		transform: none;
	}

	.c-f76db7:hover,
	.c-f76db7:focus {
		transform: none;
	}
}

/* Why Choose Casino Block
--------------------------------------------- */
.c-a4f5b4 {
	width: 100%;
}

@media (max-width: 768px) {

	.c-a4f5b4 {
		padding: 3rem 0;
	}
}

.c-487e53 {
	margin: 0 0 3rem;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-text);
	text-align: left;
	transition: color var(--theme-transition);
}

@media (max-width: 768px) {

	.c-487e53 {
		font-size: 2rem;
		margin-bottom: 2rem;
	}
}

.c-26d3ee {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

@media (max-width: 768px) {

	.c-26d3ee {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

.c-26b916 {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1.5rem;
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
	transition: background-color var(--theme-transition), border-color var(--theme-transition);
}

@media (max-width: 768px) {

	.c-26b916 {
		gap: 0.75rem;
	}
}

.c-361dc5 {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

@media (max-width: 768px) {

	.c-361dc5 {
		gap: 1rem;
	}
}

.c-8106bc {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: var(--color-bg);
	border: 1px solid var(--color-primary);
	transition: background-color var(--theme-transition), border-color var(--theme-transition);
}

@media (max-width: 768px) {

	.c-8106bc {
		width: 50px;
		height: 50px;
	}
}

.c-391dfa {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.c-d99ed1 {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.4;
	color: var(--color-text);
	flex: 1;
	transition: color var(--theme-transition);
}

@media (max-width: 768px) {

	.c-d99ed1 {
		font-size: 1.125rem;
	}
}

.c-dac783 {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-text-muted);
	transition: color var(--theme-transition);
}

.c-dac783 p {
	margin: 0 0 0.75rem;
}

.c-dac783 p:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {

	.c-dac783 {
		font-size: 0.875rem;
	}
}

/* Trending Casinos Block
--------------------------------------------- */
.c-e3501b {
	width: 100%;
	padding: 4rem 0;
}

@media (max-width: 768px) {

	.c-e3501b {
		padding: 3rem 0;
	}
}

.c-e3501b .container {
	width: 100%;
}

.c-c1d804 {
	margin: 0 0 1.5rem;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-text);
	text-align: center;
	transition: color var(--theme-transition);
}

@media (max-width: 768px) {

	.c-c1d804 {
		font-size: 2rem;
		margin-bottom: 1rem;
	}
}

.c-cb44e2 {
	margin: 0 0 3rem;
	font-size: 1.125rem;
	line-height: 1.6;
	color: var(--color-text-muted);
	text-align: center;
	transition: color var(--theme-transition);
}

.c-cb44e2 p {
	margin: 0 0 1rem;
}

.c-cb44e2 p:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {

	.c-cb44e2 {
		font-size: 1rem;
		margin-bottom: 2rem;
	}
}

.c-a0aeea {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

@media (max-width: 1100px) {

	.c-a0aeea {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

.c-1e1fbb {
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	padding: 1.5rem;
	transition: all var(--theme-transition), box-shadow 0.2s ease, border-color 0.2s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	position: relative;
	justify-content: space-between;
}

.c-1e1fbb:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-color: var(--color-primary);
}

.c-265a6e {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem;
}

.c-1fbb7b {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--color-text);
	line-height: 1;
	border: 2px solid var(--color-border);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: color var(--theme-transition), border-color var(--theme-transition);
}

.c-515cc5 {
	background: var(--color-accent-gold);
	color: var(--color-bg-alt);
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 600;
	transition: background var(--theme-transition), color var(--theme-transition);
}

.c-719b2c {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 1rem;
}

.c-56e519 {
	width: 180px;
	height: 180px;
	object-fit: contain;
}

.c-60511a {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--color-text);
	text-align: center;
	text-transform: uppercase;
	transition: color var(--theme-transition);
}

.c-cda276 {
	width: 100%;
	text-align: center;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-text);
	line-height: 1.4;
	text-transform: lowercase;
	transition: color var(--theme-transition);
}

.c-cda276 span {
	text-transform: uppercase;
	color: var(--color-primary);
}

.c-cdb179 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.c-e077bf {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.25rem;
}

.c-4f96f5 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-primary);
	line-height: 1;
	transition: color var(--theme-transition);
}

.c-e51625 {
	font-size: 1rem;
	font-weight: 500;
	color: var(--color-text-muted);
	line-height: 1;
	transition: color var(--theme-transition);
}

.c-7a1d7e {
	padding: 0.75rem 1.5rem;
	background: var(--color-accent-green);
	color: var(--color-bg-alt);
	text-decoration: none;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 700;
	text-align: center;
	transition: all var(--theme-transition), transform 0.3s ease, box-shadow 0.3s ease;
	text-transform: uppercase;
	width: 100%;
	letter-spacing: 0.05em;
	box-shadow: 0 4px 15px rgba(39, 174, 96, 0.5), 0 2px 6px rgba(39, 174, 96, 0.3) inset, 0 0 12px rgba(39, 174, 96, 0.4);
	animation: trending-cta-pulse 4s ease-in-out infinite;
}

.c-7a1d7e:hover {
	background: linear-gradient(90deg, #2cc36b, #295);
	color: var(--color-bg-alt);
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 8px 25px rgba(39, 174, 96, 0.6), 0 4px 10px rgba(39, 174, 96, 0.4) inset, 0 0 20px rgba(39, 174, 96, 0.5);
	cursor: pointer;
	animation: none;
}

@keyframes trending-cta-pulse {

	0%,
	100% {
		box-shadow: 0 4px 15px rgba(39, 174, 96, 0.5), 0 2px 6px rgba(39, 174, 96, 0.3) inset, 0 0 12px rgba(39, 174, 96, 0.4);
		transform: scale(1);
	}

	50% {
		box-shadow: 0 6px 25px rgba(39, 174, 96, 0.7), 0 3px 8px rgba(39, 174, 96, 0.4) inset, 0 0 20px rgba(39, 174, 96, 0.5);
		transform: scale(1.02);
	}
}

/* FAQ Section Block
--------------------------------------------- */

/**
 * FAQ Section Block
 */
.c-09239e {
	padding: 2rem 0;
	background-color: var(--color-bg);
	transition: background-color var(--theme-transition);
}

.c-09239e .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

@media (max-width: 768px) {

	.c-09239e .container {
		padding: 0 1rem;
	}
}

.c-2fd885 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 2rem;
	text-align: center;
	color: var(--color-text);
	transition: color var(--theme-transition);
}

@media (max-width: 768px) {

	.c-2fd885 {
		font-size: 1.5rem;
		margin-bottom: 1.5rem;
	}
}

.c-9f1ac3 {
	max-width: 800px;
	margin: 0 auto;
	font-size: 1.125rem;
	font-weight: 400;
	margin-bottom: 2rem;
	color: var(--color-text-muted);
	transition: color var(--theme-transition);
}

@media (max-width: 768px) {

	.c-9f1ac3 {
		font-size: 1rem;
		margin-bottom: 1.5rem;
	}
}

.c-fcdf85 {
	max-width: 800px;
	margin: 0 auto;
}

.c-f08086 {
	border-bottom: 1px solid var(--color-border);
	margin-bottom: 0;
	transition: border-color var(--theme-transition);
}

.c-f08086:first-child {
	border-top: 1px solid var(--color-border);
}

.c-d438bd {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	color: var(--color-text);
	transition: opacity var(--theme-transition);
}

.c-d438bd:hover {
	opacity: 0.6;
}

.c-d438bd[aria-expanded="true"] .c-0ef177 {
	transform: rotate(45deg);
}

@media (max-width: 768px) {

	.c-d438bd {
		padding: 1rem 0;
	}
}

.c-c4a107 {
	font-size: 1.125rem;
	font-weight: 600;
	margin: 0;
	flex: 1;
	color: inherit;
	padding-right: 1rem;
	padding-left: 0.5rem;
}

@media (max-width: 768px) {

	.c-c4a107 {
		font-size: 1rem;
	}
}

.c-0ef177 {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, color var(--theme-transition);
	color: var(--color-primary);
}

.c-0ef177 svg {
	width: 100%;
	height: 100%;
}

.c-dbcd4d {
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	max-height: 0;
	padding: 0 0;
}

.c-dbcd4d[hidden] {
	display: none;
}

.c-dbcd4d:not([hidden]) {
	display: block;
	max-height: 2000px;
	padding: 1rem 0;
}

@media (max-width: 768px) {

	.c-dbcd4d:not([hidden]) {
		padding-bottom: 1rem;
	}
}

.c-dfe561 {
	color: var(--color-text);
	line-height: 1.6;
	transition: color var(--theme-transition);
}

.c-dfe561 p {
	margin: 0 0 1rem;
	padding: 0 0.5rem;
}

.c-dfe561 p:last-child {
	margin-bottom: 0;
}

.c-dfe561 ul,
.c-dfe561 ol {
	margin: 0 0 1rem;
	padding-left: 1.5rem;
}

.c-dfe561 ul:last-child,
.c-dfe561 ol:last-child {
	margin-bottom: 0;
}

.c-dfe561 li {
	margin-bottom: 0.5rem;
}

.c-dfe561 li:last-child {
	margin-bottom: 0;
}

.c-dfe561 a {
	color: var(--color-primary);
	text-decoration: underline;
	transition: color var(--theme-transition);
}

.c-dfe561 a:hover {
	text-decoration: none;
}

.c-dfe561 strong {
	font-weight: 600;
	color: var(--color-text);
	transition: color var(--theme-transition);
}

.c-dfe561 em {
	font-style: italic;
}

/* Key Sections Block
--------------------------------------------- */

/**
 * Key Sections Block Styles
 */
.c-237ae7 {
	max-width: 900px;
	width: 100%;
	margin: 2rem auto;
	position: relative;
}

@media (max-width: 768px) {

	.c-237ae7 {
		margin: 1.5rem auto;
	}
}

.c-381936 {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.25rem;
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	color: var(--color-text);
	font-size: 1rem;
	font-weight: 600;
	font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, sans-serif;
	cursor: pointer;
	transition: all var(--theme-transition);
	text-align: left;
}

.c-381936:hover {
	background-color: var(--color-bg);
	border-color: var(--color-primary);
}

.c-381936:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

.c-381936[aria-expanded="true"] {
	border-color: var(--color-primary);
	background-color: var(--color-bg);
}

.c-381936[aria-expanded="true"] .c-64f985 {
	transform: rotate(180deg);
}

@media (max-width: 768px) {

	.c-381936 {
		padding: 0.875rem 1rem;
		font-size: 0.9375rem;
	}
}

.c-177dc9 {
	flex: 1;
	margin: 0;
}

.c-64f985 {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	margin-left: 0.75rem;
	transition: transform 0.3s ease, color var(--theme-transition);
	color: var(--color-primary);
}

.c-d3e792 {
	position: relative;
	margin: 0.5rem 0 0;
}

.c-2d364d {
	list-style: none;
	margin: 0;
	padding: 0 0 3rem;
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	overflow: hidden;
	max-height: 400px;
	opacity: 1;
	visibility: visible;
	overflow-y: auto;
	transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, background-color var(--theme-transition), border-color var(--theme-transition);
}

.c-237ae7:not(.c-34c4ea) .c-2d364d {
	max-height: 0;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	padding-bottom: 0;
}

@media (max-width: 768px) {

	.c-2d364d {
		max-height: 400px;
		padding-bottom: 3rem;
	}
}

.c-20e029 {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid var(--color-border);
	transition: border-color var(--theme-transition);
}

.c-20e029:last-child {
	border-bottom: none;
}

.c-c1dc1a {
	display: block;
	padding: 0.875rem 1.25rem;
	color: var(--color-text);
	text-decoration: none;
	font-size: 0.9375rem;
	line-height: 1.5;
	transition: all var(--theme-transition), padding 0.2s ease;
	position: relative;
	padding-left: 2.5rem;
}

.c-c1dc1a::before {
	content: "";
	position: absolute;
	left: 1.25rem;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-primary);
	opacity: 0.6;
	transition: opacity 0.2s ease, background var(--theme-transition);
}

.c-c1dc1a:hover,
.c-c1dc1a:focus {
	background-color: var(--color-bg);
	color: var(--color-primary);
	padding-left: 2.75rem;
}

.c-c1dc1a:hover::before,
.c-c1dc1a:focus::before {
	opacity: 1;
	background: var(--color-primary-light);
}

.c-c1dc1a:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: -2px;
}

@media (max-width: 768px) {

	.c-c1dc1a {
		padding: 0.75rem 1rem;
		padding-left: 2.25rem;
		font-size: 0.875rem;
	}

	.c-c1dc1a:hover,
	.c-c1dc1a:focus {
		padding-left: 2.5rem;
	}

	.c-c1dc1a::before {
		left: 1rem;
	}
}

.c-3d2d2d {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem;
	background: linear-gradient(to bottom, transparent 0%, var(--color-surface) 20%, var(--color-surface) 50%, var(--color-surface) 100%);
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease, background var(--theme-transition);
	z-index: 2;
	border-radius: 0 0 8px 8px;
}

.c-237ae7:not(.c-34c4ea) .c-3d2d2d {
	opacity: 0 !important;
	visibility: hidden !important;
}

.c-237ae7.c-34c4ea .c-d3e792[data-scrollable="true"] .c-3d2d2d {
	opacity: 1;
	visibility: visible;
}

.c-237ae7.c-34c4ea .c-d3e792:hover .c-3d2d2d {
	opacity: 0.3;
}

.c-5128d1 {
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: color var(--theme-transition);
}

.c-bc4fc5 {
	width: 14px;
	height: 14px;
	color: var(--color-primary);
	animation: key-sections-scroll-bounce 2s ease-in-out infinite;
	transition: color var(--theme-transition);
}

@keyframes key-sections-scroll-bounce {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(4px);
	}
}

.c-a34e8f {
	margin: 0;
	padding: 1rem;
	text-align: center;
	color: var(--color-text-muted);
	font-size: 0.9375rem;
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	transition: color var(--theme-transition), background-color var(--theme-transition), border-color var(--theme-transition);
}

/* Contact Form Block
--------------------------------------------- */
.c-ba6c86 {
	width: 100%;
	padding: 4rem 0;
	background-color: var(--color-bg);
	transition: background-color var(--theme-transition);
}

@media (max-width: 768px) {

	.c-ba6c86 {
		padding: 3rem 0;
	}
}

.c-ba6c86 .container {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

.c-cb4911 {
	margin-bottom: 2rem;
	color: var(--color-text);
	font-size: 1.125rem;
	line-height: 1.7;
	transition: color var(--theme-transition);
}

@media (max-width: 768px) {

	.c-cb4911 {
		font-size: 1rem;
		margin-bottom: 1.5rem;
	}
}

.c-cb4911 p {
	margin: 0 0 1rem;
}

.c-cb4911 p:last-child {
	margin-bottom: 0;
}

.c-c8ef02 {
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: background-color var(--theme-transition), border-color var(--theme-transition);
}

@media (max-width: 768px) {

	.c-c8ef02 {
		padding: 1.5rem;
	}
}

.c-43ca51 {
	text-align: center;
	padding: 2rem;
	color: var(--color-text-muted);
	background-color: var(--color-surface);
	border: 1px dashed var(--color-border);
	border-radius: 8px;
	transition: color var(--theme-transition), background-color var(--theme-transition), border-color var(--theme-transition);
}

.c-ba6c86 .wpcf7 form .wpcf7-form-control-wrap {
	margin-bottom: 1.5rem;
}

.c-ba6c86 .wpcf7 form label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--color-text);
	font-size: 0.9375rem;
	transition: color var(--theme-transition);
}

.c-ba6c86 .wpcf7 form input[type="text"],
.c-ba6c86 .wpcf7 form input[type="email"],
.c-ba6c86 .wpcf7 form input[type="tel"],
.c-ba6c86 .wpcf7 form input[type="url"],
.c-ba6c86 .wpcf7 form input[type="number"],
.c-ba6c86 .wpcf7 form textarea,
.c-ba6c86 .wpcf7 form select {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	background-color: var(--color-bg);
	color: var(--color-text);
	font-size: 1rem;
	font-family: inherit;
	line-height: 1.5;
	transition: border-color var(--theme-transition), background-color var(--theme-transition), color var(--theme-transition);
}

.c-ba6c86 .wpcf7 form input[type="text"]:focus,
.c-ba6c86 .wpcf7 form input[type="email"]:focus,
.c-ba6c86 .wpcf7 form input[type="tel"]:focus,
.c-ba6c86 .wpcf7 form input[type="url"]:focus,
.c-ba6c86 .wpcf7 form input[type="number"]:focus,
.c-ba6c86 .wpcf7 form textarea:focus,
.c-ba6c86 .wpcf7 form select:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(99, 173, 242, 0.1);
}

.c-ba6c86 .wpcf7 form input[type="text"]::placeholder,
.c-ba6c86 .wpcf7 form input[type="email"]::placeholder,
.c-ba6c86 .wpcf7 form input[type="tel"]::placeholder,
.c-ba6c86 .wpcf7 form input[type="url"]::placeholder,
.c-ba6c86 .wpcf7 form input[type="number"]::placeholder,
.c-ba6c86 .wpcf7 form textarea::placeholder,
.c-ba6c86 .wpcf7 form select::placeholder {
	color: var(--color-text-muted);
	opacity: 0.7;
}

.c-ba6c86 .wpcf7 form textarea {
	min-height: 120px;
	resize: vertical;
}

.c-ba6c86 .wpcf7 form .wpcf7-submit {
	background: var(--gradient-button);
	color: var(--color-bg-alt);
	border: none;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 700;
	border-radius: 8px;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 4px 12px rgba(99, 173, 242, 0.3);
}

.c-ba6c86 .wpcf7 form .wpcf7-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(99, 173, 242, 0.4);
}

.c-ba6c86 .wpcf7 form .wpcf7-submit:active {
	transform: translateY(0);
}

.c-ba6c86 .wpcf7 form .wpcf7-submit:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

.c-ba6c86 .wpcf7 form .wpcf7-validation-errors,
.c-ba6c86 .wpcf7 form .wpcf7-mail-sent-ok,
.c-ba6c86 .wpcf7 form .wpcf7-mail-sent-ng,
.c-ba6c86 .wpcf7 form .wpcf7-spam {
	padding: 1rem;
	border-radius: 8px;
	margin-bottom: 1.5rem;
	font-size: 0.9375rem;
	transition: background-color var(--theme-transition), color var(--theme-transition), border-color var(--theme-transition);
}

.c-ba6c86 .wpcf7 form .wpcf7-validation-errors {
	background-color: rgba(220, 53, 69, 0.1);
	border: 1px solid rgba(220, 53, 69, 0.3);
	color: var(--color-accent-red);
}

.c-ba6c86 .wpcf7 form .wpcf7-mail-sent-ok {
	background-color: rgba(40, 167, 69, 0.1);
	border: 1px solid rgba(40, 167, 69, 0.3);
	color: #28a745;
}

.c-ba6c86 .wpcf7 form .wpcf7-mail-sent-ng,
.c-ba6c86 .wpcf7 form .wpcf7-spam {
	background-color: rgba(255, 193, 7, 0.1);
	border: 1px solid rgba(255, 193, 7, 0.3);
	color: #ffc107;
}

.c-ba6c86 .wpcf7 form span.wpcf7-not-valid-tip {
	display: block;
	margin-top: 0.5rem;
	font-size: 0.875rem;
	color: var(--color-accent-red);
}

.c-ba6c86 .wpcf7 form .wpcf7-not-valid {
	border-color: var(--color-accent-red) !important;
}

/* Scroll to Top Button
--------------------------------------------- */

/**
 * Scroll to Top Button Styles
 */
.c-26ffb9 {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 50%;
	color: var(--color-text);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all var(--theme-transition), transform 0.3s ease, box-shadow 0.3s ease;
	z-index: 9999;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	padding: 12px;
}

.c-26ffb9:hover,
.c-26ffb9:focus {
	background-color: var(--color-primary);
	border-color: var(--color-primary-light);
	color: var(--color-bg-alt);
	transform: translateY(-4px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.c-26ffb9:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

.c-26ffb9.c-79cb20 {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

@media (max-width: 768px) {

	.c-26ffb9 {
		bottom: 1.5rem;
		right: 1.5rem;
		left: auto;
		transform: translateY(20px);
		height: 44px;
		width: 44px;
	}

	.c-26ffb9.c-79cb20 {
		transform: translateY(0);
	}

	.c-26ffb9:hover,
	.c-26ffb9:focus {
		transform: translateY(-4px);
	}
}

.c-58332a {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

@media (max-width: 768px) {

	.c-58332a {
		width: 24px;
		height: 24px;
		stroke-width: 2.5;
	}
}

/* Table of Contents
--------------------------------------------- */

/* Error Pages
--------------------------------------------- */
.c-f4a289 {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background-color: var(--color-bg);
	color: var(--color-text);
	text-align: center;
	padding: 4rem 1.5rem;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	transition: background-color var(--theme-transition), color var(--theme-transition);
}

@media (min-width: 768px) {

	.c-f4a289 {
		padding: 6rem 2rem;
	}
}

.c-bd7519 {
	position: relative;
	z-index: 1;
	max-width: 680px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: center;
}

.c-aaa4e8 {
	font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, sans-serif;
	font-size: clamp(4rem, 14vw, 8rem);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-primary);
	margin: 0;
	text-shadow: 0 0 20px rgba(99, 173, 242, 0.35);
	transition: color var(--theme-transition);
}

.c-b724f0 {
	font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, sans-serif;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	margin: 0;
	color: var(--color-text);
	line-height: 1.2;
	transition: color var(--theme-transition);
}

.c-7871e3 {
	margin: 0;
	font-size: 1.125rem;
	line-height: 1.6;
	color: var(--color-text-muted);
	max-width: 600px;
	transition: color var(--theme-transition);
}

@media (max-width: 768px) {

	.c-7871e3 {
		font-size: 1rem;
	}
}

.c-7afcfb {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
}

@media (min-width: 480px) {

	.c-7afcfb {
		flex-direction: row;
		justify-content: center;
		align-items: center;
		width: auto;
	}
}

.c-bbfb9b {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2.5rem;
	font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, sans-serif;
	font-weight: 700;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 6px;
	transition: all var(--theme-transition), transform 0.3s ease, box-shadow 0.3s ease;
	text-decoration: none;
	cursor: pointer;
	border: none;
}

.c-9789d2 {
	background: var(--color-primary);
	color: var(--color-bg-alt);
	box-shadow: 0 4px 12px rgba(99, 173, 242, 0.35);
}

.c-9789d2:hover,
.c-9789d2:focus {
	background: var(--color-primary-light);
	color: var(--color-bg-alt);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(99, 173, 242, 0.45);
}

.c-03f6f0 {
	background-color: var(--color-surface);
	color: var(--color-text);
	border: 1px solid var(--color-border);
	backdrop-filter: blur(10px);
	transition: all var(--theme-transition), transform 0.3s ease;
}

.c-03f6f0:hover,
.c-03f6f0:focus {
	background-color: var(--color-bg);
	color: var(--color-primary);
	border-color: var(--color-primary);
	transform: translateY(-2px);
}

.c-5a42ce {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2rem 0;
}

.c-5a42ce svg {
	width: clamp(120px, 30vw, 200px);
	height: auto;
	filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.25));
}

.c-580529 {
	position: absolute;
	width: clamp(240px, 50vw, 420px);
	height: clamp(240px, 50vw, 420px);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(99, 173, 242, 0.35) 0%, transparent 70%);
	filter: blur(60px);
	opacity: 0.6;
	z-index: 0;
	pointer-events: none;
	transition: background var(--theme-transition);
}

.c-35dadd {
	top: 8%;
	left: 15%;
}

.c-d5dc60 {
	bottom: 10%;
	right: 20%;
	background: radial-gradient(circle, rgba(99, 173, 242, 0.3) 0%, transparent 70%);
	transition: background var(--theme-transition);
}

/* Author Page
--------------------------------------------- */

/* Author Page
--------------------------------------------- */
.c-32b5e6 {
	width: 100%;
	padding: 3rem 0;
	background-color: var(--color-bg);
	transition: background-color var(--theme-transition);
	margin-bottom: 2rem;
}

@media (max-width: 768px) {

	.c-32b5e6 {
		padding: 2rem 0;
		margin-bottom: 1.5rem;
	}
}

.c-375e72 {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
	width: 100%;
}

@media (max-width: 768px) {

	.c-375e72 {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 1.5rem;
	}
}

.c-b477c2 {
	flex-shrink: 0;
	width: 120px;
	height: 120px;
}

@media (max-width: 768px) {

	.c-b477c2 {
		width: 100px;
		height: 100px;
	}
}

.c-3279ba {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--color-primary);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: border-color var(--theme-transition), box-shadow var(--theme-transition);
}

.c-1af4ad {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
}

@media (max-width: 768px) {

	.c-1af4ad {
		align-items: center;
	}
}

.c-f9fef4 {
	margin: 0;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-text);
	transition: color var(--theme-transition);
}

@media (max-width: 768px) {

	.c-f9fef4 {
		font-size: 2rem;
	}
}

.c-9dfdf1 {
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--color-text-muted);
	transition: color var(--theme-transition);
	max-width: 80ch;
}

@media (max-width: 768px) {

	.c-9dfdf1 {
		font-size: 1rem;
		text-align: center;
	}
}

.c-9dfdf1 p {
	margin: 0 0 1rem;
}

.c-9dfdf1 p:last-child {
	margin-bottom: 0;
}

.c-6a23c6 {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

@media (max-width: 768px) {

	.c-6a23c6 {
		justify-content: center;
	}
}

.c-ebf270 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-primary);
	transition: color var(--theme-transition);
}

.c-f8bc3e {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	color: var(--color-primary);
	text-decoration: none;
	transition: all var(--theme-transition);
	margin-left: 0.75rem;
}

.c-f8bc3e:hover,
.c-f8bc3e:focus {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-bg-alt);
	transform: scale(1.1);
}

.c-f8bc3e:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

@media (max-width: 768px) {

	.c-f8bc3e {
		width: 36px;
		height: 36px;
		margin-left: 0.5rem;
	}
}

.c-28b90d {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
}

@media (max-width: 768px) {

	.c-28b90d {
		width: 18px;
		height: 18px;
	}
}

.c-fbb527 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	color: var(--color-primary);
	text-decoration: none;
	transition: all var(--theme-transition);
	margin-left: 0.75rem;
}

.c-fbb527:hover,
.c-fbb527:focus {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-bg-alt);
	transform: scale(1.1);
}

.c-fbb527:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

@media (max-width: 768px) {

	.c-fbb527 {
		width: 36px;
		height: 36px;
		margin-left: 0.5rem;
	}
}

.c-ac60c2 {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
}

@media (max-width: 768px) {

	.c-ac60c2 {
		width: 18px;
		height: 18px;
	}
}

.c-145ebb {
	width: 100%;
	padding: 2rem 0;
}

@media (max-width: 768px) {

	.c-145ebb {
		padding: 1.5rem 0;
	}
}

.c-5f3255 {
	margin: 0 0 2rem;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-text);
	transition: color var(--theme-transition);
}

@media (max-width: 768px) {

	.c-5f3255 {
		font-size: 1.75rem;
		margin-bottom: 1.5rem;
	}
}

.c-851ea7 {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

@media (max-width: 768px) {

	.c-851ea7 {
		gap: 1.5rem;
	}
}

.c-851ea7 .entry-summary {
	margin-top: 1rem;
	color: var(--color-text-muted);
	line-height: 1.7;
	transition: color var(--theme-transition);
}

.c-851ea7 .entry-summary p {
	margin: 0 0 1rem;
}

.c-851ea7 .c-52a39e {
	display: inline-block;
	margin-top: 0.75rem;
	color: var(--color-primary);
	font-weight: 600;
	text-decoration: none;
	transition: color var(--theme-transition);
}

.c-851ea7 .c-52a39e:hover,
.c-851ea7 .c-52a39e:focus {
	color: var(--color-primary-light);
	text-decoration: underline;
}

.c-851ea7 .entry-title {
	margin-bottom: 0.5rem;
}

.c-851ea7 .entry-title a {
	color: var(--color-text);
	text-decoration: none;
	transition: color var(--theme-transition);
}

.c-851ea7 .entry-title a:hover,
.c-851ea7 .entry-title a:focus {
	color: var(--color-primary);
}

/* Responsible Gaming Block
--------------------------------------------- */

/* Responsible Gaming Block
--------------------------------------------- */
.c-4713a0 {
	width: 100%;
	padding: 4rem 0;
	background-color: var(--color-bg);
	margin-top: 3rem;
	border-top: 1px solid var(--color-border);
	transition: background-color var(--theme-transition), border-color var(--theme-transition);
}

@media (max-width: 768px) {

	.c-4713a0 {
		padding: 3rem 0;
		margin-top: 2rem;
	}
}

.c-99d863 {
	margin: 0 0 1.5rem;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-text);
	text-align: center;
	transition: color var(--theme-transition);
}

@media (max-width: 768px) {

	.c-99d863 {
		font-size: 2rem;
		margin-bottom: 1rem;
	}
}

.c-ff7030 {
	margin: 0 auto 3rem;
	max-width: 800px;
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--color-text-muted);
	text-align: center;
	transition: color var(--theme-transition);
}

@media (max-width: 768px) {

	.c-ff7030 {
		font-size: 1rem;
		margin-bottom: 2rem;
	}
}

.c-ff7030 p {
	margin: 0 0 1rem;
}

.c-ff7030 p:last-child {
	margin-bottom: 0;
}

.c-9c081e {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

@media (max-width: 768px) {

	.c-9c081e {
		gap: 1.5rem;
	}
}

.c-861a1d {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border-radius: 8px;
	padding: 1rem;
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	transition: all var(--theme-transition), transform 0.3s ease, box-shadow 0.3s ease, opacity var(--theme-transition);
}

.c-861a1d:hover,
.c-861a1d:focus {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	border-color: var(--color-primary);
	text-decoration: none;
}

.c-861a1d:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

@media (max-width: 768px) {

	.c-861a1d {
		padding: 0.75rem;
	}
}

.c-0a2fe4 {
	max-width: 180px;
	max-height: 80px;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
	transition: opacity var(--theme-transition);
}

@media (max-width: 768px) {

	.c-0a2fe4 {
		max-width: 140px;
		max-height: 60px;
	}
}

.c-861a1d:hover .c-0a2fe4,
.c-861a1d:focus .c-0a2fe4 {
	opacity: 0.9;
}

.c-139031 {
	background-color: var(--color-surface);
	color: var(--color-text);
	border-top: 1px solid var(--color-border);
	padding: 3rem 0 2rem;
	transition: background-color var(--theme-transition), color var(--theme-transition), border-color var(--theme-transition);
}

.c-139031 .container {
	width: 100%;
}

.c-a09996 {
	display: flex;
	flex-direction: column;
	gap: clamp(2rem, 4vw, 3rem);
}

.c-0982cd {
	display: flex;
	gap: clamp(2rem, 4vw, 3rem);
	align-items: center;
}

@media (max-width: 1024px) {

	.c-0982cd {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

.c-2aed89 {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
}

@media (max-width: 1024px) {

	.c-2aed89 {
		justify-content: center;
	}
}

.c-2aed89 .custom-logo-link {
	display: block;
	line-height: 1;
	transition: opacity var(--theme-transition);
}

.c-2aed89 .c-88a36d {
	display: none;
}

.c-2aed89 .custom-logo {
	max-width: 200px;
	width: auto;
	height: auto;
	transition: opacity var(--theme-transition);
}

@media (max-width: 1100px) {

	.c-2aed89 .custom-logo {
		max-width: 150px;
	}
}

.c-ed775e {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 2rem;
	border-top: 1px solid var(--color-border);
}

.c-ed775e p {
	margin: 0;
	font-size: 0.875rem;
	color: var(--color-text-muted);
	transition: color var(--theme-transition);
}

.c-dd299f {
	width: 100%;
	min-width: 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

@media (max-width: 1024px) {

	.c-dd299f {
		justify-content: center;
	}
}

[data-theme="dark"] .c-2aed89 .custom-logo-link {
	display: none;
}

[data-theme="dark"] .c-2aed89 .c-88a36d {
	display: block;
}

.c-62780f {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: clamp(2rem, 4vw, 3rem);
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

@media (max-width: 768px) {

	.c-62780f {
		display: flex;
		flex-direction: column;
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}

@media (max-width: 400px) {

	.c-62780f {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

.c-9bc54b {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.c-f7505a {
	color: var(--color-text);
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 0.5rem;
	text-decoration: none;
	transition: color var(--theme-transition);
	display: block;
}

.c-f7505a.c-5c351c:hover,
.c-f7505a.c-5c351c:focus {
	color: var(--color-primary);
	outline: none;
}

.c-2b0b01 {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.c-59c578 {
	margin: 0;
	padding: 0;
	list-style: none;
}

.c-31181d {
	color: var(--color-text-muted);
	text-decoration: none;
	font-size: clamp(0.875rem, 1.25vw, 0.9375rem);
	font-weight: 400;
	line-height: 1.6;
	transition: color var(--theme-transition);
	display: block;
}

.c-31181d:hover,
.c-31181d:focus {
	color: var(--color-primary);
	outline: none;
}

.c-ea1889 {
	margin: 0;
	padding: 0;
	list-style: none;
}

.c-5c351c {
	color: var(--color-text-muted);
	text-decoration: none;
	font-size: clamp(0.875rem, 1.5vw, 1rem);
	font-weight: 400;
	line-height: 1.6;
	white-space: pre-wrap;
	transition: color var(--theme-transition);
}

.c-5c351c:hover,
.c-5c351c:focus {
	color: var(--color-primary);
	outline: none;
}

@media (max-width: 768px) {

	.c-5c351c {
		font-size: 0.875rem;
	}
}

/* Gutenberg Block Group Styles
--------------------------------------------- */

/**
 * Gutenberg Block Group Styles
 * Styles for typography and tables within .wp-block-group
 */
.wp-block-group {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.wp-block-group p {
	margin-bottom: 1.5em;
	color: var(--color-text);
	line-height: 1.5;
	font-size: 1rem;
	transition: color var(--theme-transition);
}

.wp-block-group p:last-child {
	margin-bottom: 0;
}

.wp-block-group h1,
.wp-block-group h2,
.wp-block-group h3,
.wp-block-group h4,
.wp-block-group h5,
.wp-block-group h6 {
	clear: both;
	font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, sans-serif;
	color: var(--color-text);
	margin-top: 1.5em;
	margin-bottom: 1em;
	line-height: 1.3;
	font-weight: 700;
	transition: color var(--theme-transition);
}

.wp-block-group h1:first-child,
.wp-block-group h2:first-child,
.wp-block-group h3:first-child,
.wp-block-group h4:first-child,
.wp-block-group h5:first-child,
.wp-block-group h6:first-child {
	margin-top: 0;
}

.wp-block-group h1 {
	font-size: 2.5rem;
	margin-bottom: 1.25em;
}

@media (max-width: 768px) {

	.wp-block-group h1 {
		font-size: 2rem;
	}
}

@media (max-width: 480px) {

	.wp-block-group h1 {
		font-size: 1.75rem;
	}
}

.wp-block-group h2 {
	font-size: 2rem;
	margin-bottom: 1em;
}

@media (max-width: 768px) {

	.wp-block-group h2 {
		font-size: 1.75rem;
	}
}

@media (max-width: 480px) {

	.wp-block-group h2 {
		font-size: 1.5rem;
	}
}

.wp-block-group h3 {
	font-size: 1.75rem;
	margin-bottom: 0.875em;
}

@media (max-width: 768px) {

	.wp-block-group h3 {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {

	.wp-block-group h3 {
		font-size: 1.25rem;
	}
}

.wp-block-group h4 {
	font-size: 1.5rem;
	margin-bottom: 0.75em;
}

@media (max-width: 768px) {

	.wp-block-group h4 {
		font-size: 1.25rem;
	}
}

@media (max-width: 480px) {

	.wp-block-group h4 {
		font-size: 1.125rem;
	}
}

.wp-block-group h5 {
	font-size: 1.25rem;
	margin-bottom: 0.625em;
}

@media (max-width: 768px) {

	.wp-block-group h5 {
		font-size: 1.125rem;
	}
}

@media (max-width: 480px) {

	.wp-block-group h5 {
		font-size: 1rem;
	}
}

.wp-block-group h6 {
	font-size: 1rem;
	margin-bottom: 0.5em;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.wp-block-group ul,
.wp-block-group ol {
	padding: 0;
	margin: 0 0 1.5em 1.5em;
	color: var(--color-text);
	line-height: 1.5;
	transition: color var(--theme-transition);
}

.wp-block-group ul:last-child,
.wp-block-group ol:last-child {
	margin-bottom: 0;
}

.wp-block-group ul {
	list-style: disc;
}

.wp-block-group ul ul {
	list-style: circle;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

.wp-block-group ol {
	list-style: decimal;
}

.wp-block-group ol ol {
	list-style: lower-alpha;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

.wp-block-group li {
	margin-bottom: 0.5em;
	color: var(--color-text);
	transition: color var(--theme-transition);
}

.wp-block-group li:last-child {
	margin-bottom: 0;
}

.wp-block-group li > ul,
.wp-block-group li > ol {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

.wp-block-group table {
	width: 100%;
	margin: 1.5em 0;
	border-collapse: collapse;
	border-spacing: 0;
	background-color: var(--color-surface);
	border-radius: 8px;
	overflow: hidden;
	min-width: 100%;
	transition: background-color var(--theme-transition);
}

.wp-block-group table:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {

	.wp-block-group table {
		display: table;
		width: 100%;
		min-width: 600px;
	}
}

.wp-block-group .wp-block-table,
.wp-block-group .wp-block-table__content-wrapper {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
	margin: 1.5em 0;
	border-radius: 8px;
}

@media (max-width: 768px) {

	.wp-block-group .wp-block-table,
	.wp-block-group .wp-block-table__content-wrapper {
		box-shadow: inset -10px 0 10px -10px rgba(0, 0, 0, 0.5);
	}
}

.wp-block-group .wp-block-table table,
.wp-block-group .wp-block-table__content-wrapper table {
	margin: 0;
}

.wp-block-group .c-ae1e5c {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
	margin: 1.5em 0;
	border-radius: 8px;
}

@media (max-width: 768px) {

	.wp-block-group .c-ae1e5c {
		box-shadow: inset -10px 0 10px -10px rgba(0, 0, 0, 0.5);
	}
}

.wp-block-group .c-ae1e5c table {
	margin: 0;
	min-width: 600px;
}

.wp-block-group thead {
	background-color: var(--color-surface);
	border-bottom: 2px solid var(--color-primary);
	transition: background-color var(--theme-transition), border-color var(--theme-transition);
}

.wp-block-group tbody tr {
	border-bottom: 1px solid var(--color-border);
	transition: background-color var(--theme-transition), border-color var(--theme-transition);
}

.wp-block-group tbody tr:hover {
	background-color: var(--color-bg);
}

.wp-block-group tbody tr:last-child {
	border-bottom: none;
}

.wp-block-group tfoot {
	background-color: var(--color-surface);
	border-top: 2px solid var(--color-primary);
	transition: background-color var(--theme-transition), border-color var(--theme-transition);
}

.wp-block-group th,
.wp-block-group td {
	padding: 0.75rem 1rem;
	text-align: left;
	color: var(--color-text);
	vertical-align: top;
	transition: color var(--theme-transition);
}

@media (max-width: 768px) {

	.wp-block-group th,
	.wp-block-group td {
		padding: 0.625rem 0.75rem;
		font-size: 0.875rem;
		white-space: nowrap;
	}
}

.wp-block-group th {
	font-weight: 700;
	color: var(--color-text);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.875rem;
	border-bottom: 2px solid var(--color-border);
	white-space: nowrap;
	transition: color var(--theme-transition), border-color var(--theme-transition);
}

.wp-block-group td {
	border-bottom: 1px solid var(--color-border);
	transition: border-color var(--theme-transition);
}

@media (max-width: 768px) {

	.wp-block-group.c-a69ba4 table {
		display: block;
		width: 100%;
		min-width: 100%;
	}
}

@media (max-width: 768px) {

	.wp-block-group.c-a69ba4 thead,
	.wp-block-group.c-a69ba4 tbody,
	.wp-block-group.c-a69ba4 tfoot {
		display: block;
		width: 100%;
	}
}

@media (max-width: 768px) {

	.wp-block-group.c-a69ba4 tr {
		display: block;
		width: 100%;
		margin-bottom: 1rem;
		border: 1px solid var(--color-border);
		border-radius: 6px;
		padding: 0.5rem 0;
		transition: border-color var(--theme-transition);
	}

	.wp-block-group.c-a69ba4 tr:last-child {
		margin-bottom: 0;
	}
}

@media (max-width: 768px) {

	.wp-block-group.c-a69ba4 th {
		display: none;
	}
}

@media (max-width: 768px) {

	.wp-block-group.c-a69ba4 td {
		display: block;
		width: 100%;
		padding: 0.5rem 1rem;
		border: none;
		border-bottom: 1px solid var(--color-border);
		white-space: normal;
		transition: border-color var(--theme-transition);
	}

	.wp-block-group.c-a69ba4 td:last-child {
		border-bottom: none;
	}

	.wp-block-group.c-a69ba4 td[data-label]::before {
		content: attr(data-label);
		display: inline-block;
		font-weight: 700;
		color: var(--color-primary);
		margin-right: 0.5rem;
		min-width: 100px;
		transition: color var(--theme-transition);
	}
}

.wp-block-heading {
	color: var(--color-text) !important;
	transition: color var(--theme-transition);
}

.wp-block-heading h1,
.wp-block-heading h2,
.wp-block-heading h3,
.wp-block-heading h4,
.wp-block-heading h5,
.wp-block-heading h6 {
	color: var(--color-text) !important;
	transition: color var(--theme-transition);
}

/* Sticky CTA Bar
--------------------------------------------- */

/**
 * Sticky CTA Bar Styles
 *
 * A persistent bottom bar promoting a casino offer.
 */
.c-4b812d {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9998;
	background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg-alt) 100%);
	border-top: 2px solid var(--color-primary);
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
	padding: 0.75rem 1rem;
	transform: translateY(100%);
	opacity: 0;
	visibility: hidden;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, visibility 0.4s ease, background-color var(--theme-transition), border-color var(--theme-transition);
}

.c-4b812d.c-79cb20 {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.c-7fff41 {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.c-f76bdb {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	color: var(--color-text-muted);
	cursor: pointer;
	width: 28px;
	height: 28px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.c-f76bdb svg {
	width: 16px;
	height: 16px;
}

.c-f76bdb:hover {
	color: #fff;
	background-color: var(--color-accent-red);
}

@media (max-width: 768px) {

	.c-f76bdb {
		top: 0;
		right: 0;
		transform: none;
	}
}

.c-8bb7ab {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-right: 2rem;
}

@media (max-width: 768px) {

	.c-8bb7ab {
		flex-direction: column;
		gap: 0.5rem;
		padding-right: 2rem;
	}
}

.c-d954b3 {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex: 1;
	min-width: 0;
}

@media (max-width: 768px) {

	.c-d954b3 {
		width: 100%;
		gap: 0.75rem;
	}
}

.c-d30929 {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	background-color: #0a1c3a;
	border-radius: 8px;
	padding: 0.375rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	transition: background-color var(--theme-transition);
}

@media (max-width: 768px) {

	.c-d30929 {
		width: 44px;
		height: 44px;
		border-radius: 6px;
		padding: 0.25rem;
	}
}

[data-theme="dark"] .c-d30929 {
	background-color: transparent;
	padding: 0;
	box-shadow: none;
}

.c-2249ec {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.c-5f6ab2 {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	min-width: 0;
}

@media (max-width: 768px) {

	.c-5f6ab2 {
		gap: 0.125rem;
	}
}

.c-db6817 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-text);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color var(--theme-transition);
}

@media (max-width: 768px) {

	.c-db6817 {
		font-size: 0.8125rem;
	}
}

.c-52f487 {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--color-text);
	line-height: 1.3;
	transition: color var(--theme-transition);
}

.c-52f487 span {
	color: var(--color-primary);
}

@media (max-width: 768px) {

	.c-52f487 {
		font-size: 0.75rem;
	}
}

.c-f1b719 {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
}

@media (max-width: 768px) {

	.c-f1b719 {
		width: 100%;
		gap: 0.5rem;
	}
}

.c-36c606 {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-accent-red);
	animation: sticky-cta-pulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {

	.c-36c606 {
		display: none;
	}
}

.c-cb498e {
	flex-shrink: 0;
}

.c-715944 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 2rem;
	background: var(--color-accent-green);
	color: #fff;
	font-size: 1rem;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 8px;
	transition: all 0.2s ease;
	box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
	animation: sticky-cta-glow 3s ease-in-out infinite;
}

.c-715944:hover {
	transform: translateY(-2px) scale(1.03);
	box-shadow: 0 6px 25px rgba(39, 174, 96, 0.55);
	color: #fff;
	filter: brightness(1.1);
}

@media (max-width: 768px) {

	.c-715944 {
		width: 100%;
		padding: 0.625rem 1rem;
		font-size: 0.875rem;
		border-radius: 6px;
	}
}

.c-72ab0a {
	transition: transform 0.2s ease;
}

.c-715944:hover .c-72ab0a {
	transform: translateX(4px);
}

@keyframes sticky-cta-pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.7;
	}
}

@keyframes sticky-cta-glow {

	0%,
	100% {
		box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
	}

	50% {
		box-shadow: 0 4px 25px rgba(39, 174, 96, 0.6), 0 0 15px rgba(39, 174, 96, 0.3);
	}
}

.c-4b812d.c-79cb20 ~ .c-26ffb9,
body:has(.c-4b812d.c-79cb20) .c-26ffb9 {
	bottom: 7rem;
}

@media (max-width: 768px) {

	.c-4b812d.c-79cb20 ~ .c-26ffb9,
	body:has(.c-4b812d.c-79cb20) .c-26ffb9 {
		bottom: 9rem;
	}
}

body:has(.c-4b812d.c-79cb20) .c-b09e71 {
	bottom: 7rem;
}

@media (max-width: 768px) {

	body:has(.c-4b812d.c-79cb20) .c-b09e71 {
		bottom: 9rem;
	}
}

/* Exit Intent Popup
--------------------------------------------- */

/**
 * Exit Intent Popup Styles
 *
 * Modal popup shown when user tries to leave the page.
 */
.c-137ef0 {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.c-137ef0.c-79cb20 {
	opacity: 1;
	visibility: visible;
}

.c-137ef0.c-79cb20 .c-f4f6a4 {
	transform: scale(1) translateY(0);
	opacity: 1;
}

.c-4c8b40 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
}

.c-f4f6a4 {
	position: relative;
	max-width: 480px;
	width: 100%;
	background: var(--color-surface);
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	padding: 2rem;
	transform: scale(0.9) translateY(-20px);
	opacity: 0;
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease, background-color var(--theme-transition);
}

@media (max-width: 500px) {

	.c-f4f6a4 {
		padding: 1.5rem;
		max-width: calc(100% - 2rem);
	}
}

.c-85acbb {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: transparent;
	border: none;
	color: var(--color-text-muted);
	cursor: pointer;
	padding: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.c-85acbb:hover {
	color: var(--color-text);
	background-color: var(--color-border);
}

.c-2dd28b {
	text-align: center;
	margin-bottom: 1.5rem;
}

.c-bddebc {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.375rem 0.75rem;
	background: linear-gradient(135deg, var(--color-accent-gold) 0%, #8f6c10 100%);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 20px;
	margin-bottom: 1rem;
	animation: exit-badge-glow 2s ease-in-out infinite;
}

.c-bddebc svg {
	width: 14px;
	height: 14px;
}

.c-98151d {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--color-text);
	line-height: 1.3;
	margin: 0 0 0.5rem 0;
	transition: color var(--theme-transition);
}

@media (max-width: 500px) {

	.c-98151d {
		font-size: 1.25rem;
	}
}

.c-d851fe {
	font-size: 1rem;
	color: var(--color-text-muted);
	margin: 0;
	transition: color var(--theme-transition);
}

.c-5fd5c1 {
	margin-bottom: 1.5rem;
}

.c-a8dea3 {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: var(--color-bg);
	border-radius: 12px;
	margin-bottom: 1rem;
	transition: background-color var(--theme-transition);
}

@media (max-width: 400px) {

	.c-a8dea3 {
		flex-direction: column;
		text-align: center;
	}
}

.c-68850c {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	background-color: #0a1c3a;
	border-radius: 12px;
	padding: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: background-color var(--theme-transition);
}

@media (max-width: 400px) {

	.c-68850c {
		width: 70px;
		height: 70px;
	}
}

[data-theme="dark"] .c-68850c {
	background-color: transparent;
	padding: 0;
	box-shadow: none;
}

.c-a9b341 {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.c-fcf32f {
	flex: 1;
	min-width: 0;
}

.c-dc0c9a {
	display: block;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--color-text);
	text-transform: uppercase;
	margin: 0 0 0.5rem 0;
	transition: color var(--theme-transition);
}

.c-9e3f0a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

@media (max-width: 400px) {

	.c-9e3f0a {
		justify-content: center;
	}
}

.c-026f52 {
	display: flex;
	gap: 0.125rem;
}

.c-059e7f {
	color: var(--color-border);
	transition: color var(--theme-transition);
}

.c-56af6f {
	color: var(--color-accent-gold);
}

.c-a48686 {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-text-muted);
	transition: color var(--theme-transition);
}

.c-8c6bdf {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-text);
	line-height: 1.3;
	transition: color var(--theme-transition);
}

.c-8c6bdf span {
	color: var(--color-primary);
}

.c-6ebab3 {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.5rem;
}

@media (max-width: 400px) {

	.c-6ebab3 {
		grid-template-columns: 1fr;
	}
}

.c-8e8f93 {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	color: var(--color-text);
	transition: color var(--theme-transition);
}

.c-d8a9c1 {
	flex-shrink: 0;
	color: var(--color-accent-green);
}

.c-bcfefb {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.c-131c6b {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	background: var(--color-accent-green);
	color: #fff;
	font-size: 1.125rem;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 10px;
	transition: all 0.2s ease;
	box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
	animation: exit-cta-pulse 2s ease-in-out infinite;
}

.c-131c6b:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(39, 174, 96, 0.55);
	color: #fff;
	filter: brightness(1.1);
}

.c-131c6b:visited {
	color: #fff;
}

.c-826f2d {
	background: transparent;
	border: 1px solid var(--color-border);
	border-radius: 10px;
	color: var(--color-text-muted);
	font-size: 0.875rem;
	cursor: pointer;
	padding: 0.75rem;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.c-826f2d:hover {
	color: var(--color-text);
	border-color: var(--color-text-muted);
}

.c-d176f5 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	font-size: 0.8125rem;
	color: var(--color-accent-red);
	font-weight: 500;
}

.c-38b5aa {
	flex-shrink: 0;
}

.c-2f92df {
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

@keyframes exit-badge-glow {

	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.4);
	}

	50% {
		box-shadow: 0 0 15px 3px rgba(212, 160, 23, 0.3);
	}
}

@keyframes exit-cta-pulse {

	0%,
	100% {
		box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4), 0 3px 8px rgba(39, 174, 96, 0.3) inset;
	}

	50% {
		box-shadow: 0 6px 30px rgba(39, 174, 96, 0.6), 0 3px 10px rgba(39, 174, 96, 0.4) inset, 0 0 20px rgba(39, 174, 96, 0.3);
	}
}

body.c-b1e27b {
	overflow: hidden;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .c-139031 {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .c-139031 {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: var(--color-bg-alt);
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: var(--color-text);
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}
