/*!
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.3.2
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: t1ca54
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-356408 {
	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-356408.c-34aa76 {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.65);
}

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

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

@media (max-width: 1100px) {

	.c-06488a {
		padding: 1rem 0;
	}
}

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

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

.c-124df4 .c-07614b {
	display: none;
}

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

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

	.c-124df4 .custom-logo {
		max-width: 150px;
	}
}

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

[data-theme="dark"] .c-124df4 .c-07614b {
	display: block;
}

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

.c-b1d449 .c-4fddca {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

@media (max-width: 1100px) {

	.c-b1d449 .c-4fddca {
		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-b1d449 .c-4fddca li {
	margin: 0;
	padding: 0;
	position: relative;
}

@media (max-width: 1100px) {

	.c-b1d449 .c-4fddca li {
		width: 100%;
		border-bottom: 1px solid var(--color-border);
	}
}

.c-b1d449 .c-4fddca li.menu-item-has-children > a {
	position: relative;
	padding-right: 1.5rem;
}

.c-b1d449 .c-4fddca 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-b1d449 .c-4fddca li.menu-item-has-children > a::after {
		right: 0;
	}
}

@media (max-width: 1100px) {

	.c-b1d449 .c-4fddca li.menu-item-has-children > a {
		padding-right: 2.5rem;
	}
}

@media (min-width: 1101px) {

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

.c-b1d449 .c-4fddca li.menu-item-has-children.c-bf2694 > a::after {
	transform: translateY(-50%) rotate(180deg);
}

.c-b1d449 .c-4fddca 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-b1d449 .c-4fddca a {
		padding: 1rem 0;
		width: 100%;
		font-size: 1rem;
	}
}

.c-b1d449 .c-4fddca a:hover {
	color: var(--color-primary);
}

.c-b1d449 .c-4fddca .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-b1d449 .c-4fddca .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-b1d449 .c-4fddca .sub-menu li {
	margin: 0;
	padding: 0;
}

@media (max-width: 1100px) {

	.c-b1d449 .c-4fddca .sub-menu li {
		border-bottom: 1px solid var(--color-border);
		width: 100%;
	}
}

.c-b1d449 .c-4fddca .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-b1d449 .c-4fddca .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-b1d449 .c-4fddca .sub-menu li a:hover {
	background-color: var(--color-bg);
	color: var(--color-primary);
}

.c-b1d449 .c-4fddca .sub-menu li a:first-child {
	border-radius: 8px 8px 0 0;
}

.c-b1d449 .c-4fddca .sub-menu li a:last-child {
	border-radius: 0 0 8px 8px;
}

.c-b1d449 .c-4fddca .sub-menu li a:only-child {
	border-radius: 8px;
}

@media (min-width: 1101px) {

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

@media (min-width: 1101px) {

	.c-b1d449 .c-4fddca .sub-menu:hover {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}

@media (max-width: 1100px) {

	.c-b1d449 .c-4fddca .menu-item-has-children.c-bf2694 > .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-b1d449.c-9acfa2 .c-4fddca {
		right: 0;
	}
}

.c-382ab2 {
	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-382ab2: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-382ab2:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

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

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

.c-b9357b .c-10a879 {
	opacity: 0;
	transform: rotate(90deg);
}

.c-b9357b .c-43d913 {
	opacity: 1;
	transform: rotate(0deg);
}

@media (max-width: 768px) {

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

.c-10f6df {
	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-10f6df {
		display: flex;
	}
}

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

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

.c-10f6df[aria-expanded="true"] .c-da9c24 {
	opacity: 0;
	transform: rotate(90deg);
}

.c-10f6df[aria-expanded="true"] .c-029657 {
	opacity: 1;
	transform: rotate(0deg);
}

body.c-06bdd3 {
	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-150cf7 {
	background-color: var(--color-bg);
	padding: 25px 0;
	transition: background-color var(--theme-transition);
}

.c-2fe934 {
	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-2fe934 {
		font-size: 0.8125rem;
		padding: 0.5rem 0.875rem;
		margin-bottom: 1.25rem;
	}
}

.c-fbde7d {
	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-fbde7d svg {
	width: 100%;
	height: 100%;
}

.c-3f3968 {
	color: var(--color-text);
	transition: color var(--theme-transition);
}

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

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

.c-784dbe {
	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-784dbe:hover {
	opacity: 0.9;
	border-color: var(--color-primary-light);
	cursor: pointer;
}

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

.c-54b826 {
	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-54b826 {
		display: none;
	}
}

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

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

.c-aa7c18 {
	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-aa7c18:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.c-e5051f {
	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-aa7c18 {
		grid-template-columns: 1fr;
		gap: 0.75rem;
		padding: 0.75rem;
	}
}

.c-6beb45 {
	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-6beb45 {
		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-12b3a9 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

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

.c-48853d {
	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-48853d {
		flex-direction: column;
		align-items: center;
	}
}

.c-984162 {
	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-984162 span {
	color: var(--color-primary);
	font-weight: 900;
}

@media (max-width: 1023px) {

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

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

@media (max-width: 1023px) {

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

	.c-c89c6f .c-d72093 {
		flex: 1;
	}
}

.c-f0b723 {
	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-f0b723 {
	background-color: transparent;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
}

.c-fdfc84 {
	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-a19b11 {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.25rem;
}

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

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

.c-0f6960 {
	word-break: break-word;
	font-size: inherit;
}

.c-0f6960 span.small {
	font-size: 0.75em;
	color: inherit;
}

@media (max-width: 1023px) {

	.c-0f6960 span.small {
		font-size: 0.8em;
	}
}

@media (max-width: 768px) {

	.c-0f6960 span.small {
		font-size: 0.85em;
	}
}

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

.c-be2697 {
	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-f255b8 {
	flex-shrink: 0;
	width: 16px;
	height: 17px;
}

.c-7bf7e5 {
	word-break: break-word;
}

.c-d72093 {
	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-efb9a2 {
	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-efb9a2: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-147409 {
	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-147409 {
		margin-top: 0.375rem;
		font-size: 0.6875rem;
	}
}

.c-1b55ec {
	flex-shrink: 0;
	width: 12px;
	height: 12px;
}

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

@keyframes urgency-flash {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.7;
	}
}

@media (max-width: 768px) {

	.c-aa7c18 {
		padding: 0.875rem;
	}

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

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

	.c-984162,
	.c-48853d {
		font-size: 0.8125rem;
	}

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

.c-dd595f {
	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-9d468f {
	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-317748 {
	width: 100%;
	padding: 2rem 0;
}

.c-317748 .c-9316db {
	width: 100%;
}

.c-317748 .c-250fcb {
	display: flex;
	flex-direction: column;
	gap: 0;
}

@media (max-width: 768px) {

	.c-317748 {
		padding: 1.5rem 0;
	}
}

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

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

.c-bd18e6::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-bd18e6 .c-bb5f27 {
	color: #fff;
}

.c-bd18e6 .c-585b15 {
	color: #fff;
}

.c-bd18e6 .c-3c48f8 {
	color: #fff;
}

.c-bd18e6 .c-535a78 {
	color: rgba(255, 255, 255, 0.8);
}

.c-bd18e6 .c-59fa61,
.c-bd18e6 .c-59fa61 p,
.c-bd18e6 .c-59fa61 li {
	color: rgba(255, 255, 255, 0.9);
}

.c-bd18e6 .c-bae8a8 {
	color: rgba(255, 255, 255, 0.8);
}

.c-bd18e6 .c-bae8a8:hover {
	color: #fff;
}

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

.c-bb5f27 {
	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-585b15 {
	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-585b15 {
		margin-bottom: 0.75rem;
	}
}

.c-f820d3 {
	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-f820d3:hover,
.c-f820d3:focus {
	opacity: 0.8;
	text-decoration: none;
}

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

	.c-ac3272 {
		width: 32px;
		height: 32px;
	}
}

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

.c-3c48f8 {
	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-3c48f8 {
		font-size: 0.8125rem;
	}
}

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

@media (max-width: 768px) {

	.c-535a78 {
		font-size: 0.6875rem;
	}
}

.c-59fa61 {
	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-59fa61 {
		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-59fa61.c-682a4d {
		max-height: none;
	}

	.c-59fa61.c-4e2109::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		height: 3rem;
		background: linear-gradient(to bottom, transparent, var(--color-bg));
		pointer-events: none;
		transition: opacity 0.3s ease;
	}

	.c-59fa61.c-682a4d::after {
		opacity: 0;
	}
}

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

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

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

@media (max-width: 768px) {

	.c-59fa61 ul,
	.c-59fa61 ol {
		text-align: center;
	}
}

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

.c-59fa61 a:hover {
	color: var(--color-primary-light);
}

.c-bae8a8 {
	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-bae8a8 {
		display: inline-block;
	}
}

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

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

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

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

@media (min-width: 1024px) {

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

.c-b87251 {
	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-b87251::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-b87251: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-b87251:hover::before {
	opacity: 1;
}

@media (max-width: 1023px) {

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

@media (max-width: 768px) {

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

.c-630980 {
	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-4b8e99 {
	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-4b8e99 {
		position: static;
		display: inline-block;
		margin-bottom: 0.5rem;
	}
}

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

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

@media (max-width: 1023px) {

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

.c-adb016 {
	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-adb016 {
		flex-direction: row;
		align-items: center;
		justify-content: center;
	}
}

.c-b7ed0e {
	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-b7ed0e {
		flex-direction: column;
		align-items: center;
	}
}

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

@media (max-width: 1023px) {

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

.c-2e48ec {
	width: 138px;
	height: 131px;
	object-fit: contain;
}

@media (max-width: 1023px) {

	.c-2e48ec {
		width: 120px;
		height: 120px;
	}
}

@media (max-width: 768px) {

	.c-2e48ec {
		width: 100px;
		height: 100px;
	}
}

.c-d9074a {
	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-d9074a {
		font-size: 0.9375rem;
	}
}

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

@media (max-width: 1023px) {

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

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

@media (max-width: 1023px) {

	.c-d1a3ae {
		width: 100%;
	}
}

.c-57c3ba {
	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-de82f4 {
	flex-shrink: 0;
	width: 16px;
	height: 17px;
}

.c-6e5da5 {
	word-break: break-word;
}

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

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

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

.c-4194cb {
	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-4194cb::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-4194cb:active::before {
	width: 300px;
	height: 300px;
}

.c-6da9e9 {
	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-6da9e9:hover,
.c-6da9e9: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-6da9e9: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-4194cb {
		width: 100%;
		padding: clamp(0.875rem, 3vw, 1rem) clamp(1.5rem, 5vw, 2rem);
	}
}

@media (max-width: 768px) {

	.c-4194cb {
		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-585b15,
	.c-25ae80,
	.c-b87251 {
		animation: none;
	}

	.c-b87251:hover {
		transform: none;
	}

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

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

@media (max-width: 768px) {

	.c-764c24 {
		padding: 3rem 0;
	}
}

.c-d4ce6d {
	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-d4ce6d {
		font-size: 2rem;
		margin-bottom: 2rem;
	}
}

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

@media (max-width: 768px) {

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

.c-133be2 {
	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-133be2 {
		gap: 0.75rem;
	}
}

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

@media (max-width: 768px) {

	.c-a73b0b {
		gap: 1rem;
	}
}

.c-0d4ea8 {
	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-0d4ea8 {
		width: 50px;
		height: 50px;
	}
}

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

.c-7243b6 {
	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-7243b6 {
		font-size: 1.125rem;
	}
}

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

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

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

@media (max-width: 768px) {

	.c-6d381d {
		font-size: 0.875rem;
	}
}

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

@media (max-width: 768px) {

	.c-4cf038 {
		padding: 3rem 0;
	}
}

.c-4cf038 .container {
	width: 100%;
}

.c-1e3f86 {
	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-1e3f86 {
		font-size: 2rem;
		margin-bottom: 1rem;
	}
}

.c-1d8f7d {
	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-1d8f7d p {
	margin: 0 0 1rem;
}

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

@media (max-width: 768px) {

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

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

@media (max-width: 1100px) {

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

.c-6bab81 {
	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-6bab81:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-color: var(--color-primary);
}

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

.c-591e08 {
	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-ec7163 {
	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-fac11b {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 1rem;
}

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

.c-a00bd4 {
	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-441cf9 {
	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-441cf9 span {
	text-transform: uppercase;
	color: var(--color-primary);
}

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

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

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

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

.c-825516 {
	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-825516: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-1dde76 {
	padding: 2rem 0;
	background-color: var(--color-bg);
	transition: background-color var(--theme-transition);
}

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

@media (max-width: 768px) {

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

.c-0517fa {
	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-0517fa {
		font-size: 1.5rem;
		margin-bottom: 1.5rem;
	}
}

.c-282fce {
	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-282fce {
		font-size: 1rem;
		margin-bottom: 1.5rem;
	}
}

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

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

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

.c-d8374c {
	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-d8374c:hover {
	opacity: 0.6;
}

.c-d8374c[aria-expanded="true"] .c-1bae3e {
	transform: rotate(45deg);
}

@media (max-width: 768px) {

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

.c-9cb748 {
	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-9cb748 {
		font-size: 1rem;
	}
}

.c-1bae3e {
	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-1bae3e svg {
	width: 100%;
	height: 100%;
}

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

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

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

@media (max-width: 768px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {

	.c-1c3700 {
		margin: 1.5rem auto;
	}
}

.c-46034c {
	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-46034c:hover {
	background-color: var(--color-bg);
	border-color: var(--color-primary);
}

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

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

.c-46034c[aria-expanded="true"] .c-5200bd {
	transform: rotate(180deg);
}

@media (max-width: 768px) {

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

.c-ae9ae0 {
	flex: 1;
	margin: 0;
}

.c-5200bd {
	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-b594c0 {
	position: relative;
	margin: 0.5rem 0 0;
}

.c-3d0fc3 {
	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-1c3700:not(.c-82bb55) .c-3d0fc3 {
	max-height: 0;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	padding-bottom: 0;
}

@media (max-width: 768px) {

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

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

.c-06d668:last-child {
	border-bottom: none;
}

.c-50c157 {
	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-50c157::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-50c157:hover,
.c-50c157:focus {
	background-color: var(--color-bg);
	color: var(--color-primary);
	padding-left: 2.75rem;
}

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

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

@media (max-width: 768px) {

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

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

	.c-50c157::before {
		left: 1rem;
	}
}

.c-6e58f9 {
	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-1c3700:not(.c-82bb55) .c-6e58f9 {
	opacity: 0 !important;
	visibility: hidden !important;
}

.c-1c3700.c-82bb55 .c-b594c0[data-scrollable="true"] .c-6e58f9 {
	opacity: 1;
	visibility: visible;
}

.c-1c3700.c-82bb55 .c-b594c0:hover .c-6e58f9 {
	opacity: 0.3;
}

.c-6d0347 {
	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-1e5732 {
	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-db22f6 {
	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-7cd742 {
	width: 100%;
	padding: 4rem 0;
	background-color: var(--color-bg);
	transition: background-color var(--theme-transition);
}

@media (max-width: 768px) {

	.c-7cd742 {
		padding: 3rem 0;
	}
}

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

.c-f7d43c {
	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-f7d43c {
		font-size: 1rem;
		margin-bottom: 1.5rem;
	}
}

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

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

.c-5d4740 {
	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-5d4740 {
		padding: 1.5rem;
	}
}

.c-6b48dd {
	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-7cd742 .wpcf7 form .wpcf7-form-control-wrap {
	margin-bottom: 1.5rem;
}

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

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

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

.c-7cd742 .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-7cd742 .wpcf7 form .wpcf7-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(99, 173, 242, 0.4);
}

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

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

.c-7cd742 .wpcf7 form .wpcf7-validation-errors,
.c-7cd742 .wpcf7 form .wpcf7-mail-sent-ok,
.c-7cd742 .wpcf7 form .wpcf7-mail-sent-ng,
.c-7cd742 .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-7cd742 .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-7cd742 .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-7cd742 .wpcf7 form .wpcf7-mail-sent-ng,
.c-7cd742 .wpcf7 form .wpcf7-spam {
	background-color: rgba(255, 193, 7, 0.1);
	border: 1px solid rgba(255, 193, 7, 0.3);
	color: #ffc107;
}

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

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

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

/**
 * Scroll to Top Button Styles
 */
.c-4b0534 {
	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-4b0534:hover,
.c-4b0534: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-4b0534:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

.c-4b0534.c-dad207 {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

@media (max-width: 768px) {

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

	.c-4b0534.c-dad207 {
		transform: translateY(0);
	}

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

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

@media (max-width: 768px) {

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

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

/* Error Pages
--------------------------------------------- */
.c-a7416b {
	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-a7416b {
		padding: 6rem 2rem;
	}
}

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

.c-128415 {
	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-25e229 {
	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-1105f5 {
	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-1105f5 {
		font-size: 1rem;
	}
}

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

@media (min-width: 480px) {

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

.c-407646 {
	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-0da149 {
	background: var(--color-primary);
	color: var(--color-bg-alt);
	box-shadow: 0 4px 12px rgba(99, 173, 242, 0.35);
}

.c-0da149:hover,
.c-0da149: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-3b50d9 {
	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-3b50d9:hover,
.c-3b50d9:focus {
	background-color: var(--color-bg);
	color: var(--color-primary);
	border-color: var(--color-primary);
	transform: translateY(-2px);
}

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

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

.c-76dcb7 {
	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-58fc6c {
	top: 8%;
	left: 15%;
}

.c-ba0e2d {
	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-2b202b {
	width: 100%;
	padding: 3rem 0;
	background-color: var(--color-bg);
	transition: background-color var(--theme-transition);
	margin-bottom: 2rem;
}

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

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

.c-ea4b21 {
	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-e991ee {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
}

@media (max-width: 768px) {

	.c-e991ee {
		align-items: center;
	}
}

.c-9ef623 {
	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-9ef623 {
		font-size: 2rem;
	}
}

.c-5c3321 {
	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-5c3321 {
		font-size: 1rem;
		text-align: center;
	}
}

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

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

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

@media (max-width: 768px) {

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

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

.c-c56248 {
	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-c56248:hover,
.c-c56248:focus {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-bg-alt);
	transform: scale(1.1);
}

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

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

.c-70d513 {
	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-70d513:hover,
.c-70d513:focus {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-bg-alt);
	transform: scale(1.1);
}

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

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

.c-0569a5 {
	width: 100%;
	padding: 2rem 0;
}

@media (max-width: 768px) {

	.c-0569a5 {
		padding: 1.5rem 0;
	}
}

.c-05d254 {
	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-05d254 {
		font-size: 1.75rem;
		margin-bottom: 1.5rem;
	}
}

.c-42b784 {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

@media (max-width: 768px) {

	.c-42b784 {
		gap: 1.5rem;
	}
}

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

.c-42b784 .entry-summary p {
	margin: 0 0 1rem;
}

.c-42b784 .c-6cd256 {
	display: inline-block;
	margin-top: 0.75rem;
	color: var(--color-primary);
	font-weight: 600;
	text-decoration: none;
	transition: color var(--theme-transition);
}

.c-42b784 .c-6cd256:hover,
.c-42b784 .c-6cd256:focus {
	color: var(--color-primary-light);
	text-decoration: underline;
}

.c-42b784 .entry-title {
	margin-bottom: 0.5rem;
}

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

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

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

/* Responsible Gaming Block
--------------------------------------------- */
.c-6b16eb {
	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-6b16eb {
		padding: 3rem 0;
		margin-top: 2rem;
	}
}

.c-8a336c {
	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-8a336c {
		font-size: 2rem;
		margin-bottom: 1rem;
	}
}

.c-d398cb {
	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-d398cb {
		font-size: 1rem;
		margin-bottom: 2rem;
	}
}

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

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

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

@media (max-width: 768px) {

	.c-cd6f1f {
		gap: 1.5rem;
	}
}

.c-5cfb6d {
	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-5cfb6d:hover,
.c-5cfb6d:focus {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	border-color: var(--color-primary);
	text-decoration: none;
}

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

@media (max-width: 768px) {

	.c-5cfb6d {
		padding: 0.75rem;
	}
}

.c-5e7abd {
	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-5e7abd {
		max-width: 140px;
		max-height: 60px;
	}
}

.c-5cfb6d:hover .c-5e7abd,
.c-5cfb6d:focus .c-5e7abd {
	opacity: 0.9;
}

.c-23d4a9 {
	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-23d4a9 .container {
	width: 100%;
}

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

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

@media (max-width: 1024px) {

	.c-926e6c {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

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

@media (max-width: 1024px) {

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

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

.c-fe3145 .c-07614b {
	display: none;
}

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

@media (max-width: 1100px) {

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

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

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

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

@media (max-width: 1024px) {

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

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

[data-theme="dark"] .c-fe3145 .c-07614b {
	display: block;
}

.c-26614f {
	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-26614f {
		display: flex;
		flex-direction: column;
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}

@media (max-width: 400px) {

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

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

.c-7f706e {
	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-7f706e.c-e7c90b:hover,
.c-7f706e.c-e7c90b:focus {
	color: var(--color-primary);
	outline: none;
}

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

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

.c-5d145c {
	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-5d145c:hover,
.c-5d145c:focus {
	color: var(--color-primary);
	outline: none;
}

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

.c-e7c90b {
	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-e7c90b:hover,
.c-e7c90b:focus {
	color: var(--color-primary);
	outline: none;
}

@media (max-width: 768px) {

	.c-e7c90b {
		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-3da170 {
	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-3da170 {
		box-shadow: inset -10px 0 10px -10px rgba(0, 0, 0, 0.5);
	}
}

.wp-block-group .c-3da170 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-a520f7 table {
		display: block;
		width: 100%;
		min-width: 100%;
	}
}

@media (max-width: 768px) {

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

@media (max-width: 768px) {

	.wp-block-group.c-a520f7 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-a520f7 tr:last-child {
		margin-bottom: 0;
	}
}

@media (max-width: 768px) {

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

@media (max-width: 768px) {

	.wp-block-group.c-a520f7 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-a520f7 td:last-child {
		border-bottom: none;
	}

	.wp-block-group.c-a520f7 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-d6bf41 {
	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-d6bf41.c-dad207 {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

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

.c-e22a64 {
	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-e22a64 svg {
	width: 16px;
	height: 16px;
}

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

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

.c-6a2185 {
	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-6a2185 {
		width: 44px;
		height: 44px;
		border-radius: 6px;
		padding: 0.25rem;
	}
}

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

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

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

@media (max-width: 768px) {

	.c-f72b99 {
		gap: 0.125rem;
	}
}

.c-272a0c {
	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-272a0c {
		font-size: 0.8125rem;
	}
}

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

.c-5a775f span {
	color: var(--color-primary);
}

@media (max-width: 768px) {

	.c-5a775f {
		font-size: 0.75rem;
	}
}

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

@media (max-width: 768px) {

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

.c-458a12 {
	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-458a12 {
		display: none;
	}
}

.c-30dd32 {
	flex-shrink: 0;
}

.c-da5424 {
	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-da5424: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-da5424 {
		width: 100%;
		padding: 0.625rem 1rem;
		font-size: 0.875rem;
		border-radius: 6px;
	}
}

.c-8538d8 {
	transition: transform 0.2s ease;
}

.c-da5424:hover .c-8538d8 {
	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-d6bf41.c-dad207 ~ .c-4b0534,
body:has(.c-d6bf41.c-dad207) .c-4b0534 {
	bottom: 7rem;
}

@media (max-width: 768px) {

	.c-d6bf41.c-dad207 ~ .c-4b0534,
	body:has(.c-d6bf41.c-dad207) .c-4b0534 {
		bottom: 9rem;
	}
}

body:has(.c-d6bf41.c-dad207) .c-382ab2 {
	bottom: 7rem;
}

@media (max-width: 768px) {

	body:has(.c-d6bf41.c-dad207) .c-382ab2 {
		bottom: 9rem;
	}
}

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

/**
 * Exit Intent Popup Styles
 *
 * Modal popup shown when user tries to leave the page.
 */
.c-dcac85 {
	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-dcac85.c-dad207 {
	opacity: 1;
	visibility: visible;
}

.c-dcac85.c-dad207 .c-c9bd30 {
	transform: scale(1) translateY(0);
	opacity: 1;
}

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

.c-c9bd30 {
	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-c9bd30 {
		padding: 1.5rem;
		max-width: calc(100% - 2rem);
	}
}

.c-f8e8af {
	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-f8e8af:hover {
	color: var(--color-text);
	background-color: var(--color-border);
}

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

.c-20f6ee {
	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-20f6ee svg {
	width: 14px;
	height: 14px;
}

.c-26e84c {
	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-26e84c {
		font-size: 1.25rem;
	}
}

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

.c-c8747e {
	margin-bottom: 1.5rem;
}

.c-230c84 {
	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-230c84 {
		flex-direction: column;
		text-align: center;
	}
}

.c-4a1fca {
	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-4a1fca {
		width: 70px;
		height: 70px;
	}
}

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

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

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

.c-10f70a {
	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-569340 {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

@media (max-width: 400px) {

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

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

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

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

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

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

.c-70cc9f span {
	color: var(--color-primary);
}

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

@media (max-width: 400px) {

	.c-39aa5e {
		grid-template-columns: 1fr;
	}
}

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

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

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

.c-c88d1f {
	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-c88d1f:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(39, 174, 96, 0.55);
	color: #fff;
	filter: brightness(1.1);
}

.c-c88d1f:visited {
	color: #fff;
}

.c-b66553 {
	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-b66553:hover {
	color: var(--color-text);
	border-color: var(--color-text-muted);
}

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

.c-22d96b {
	flex-shrink: 0;
}

.c-bf8118 {
	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-74ac31 {
	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-23d4a9 {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .c-23d4a9 {
	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;
}
