/*!
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: t14a9c
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-547ad2 {
	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-547ad2.c-6c1453 {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.65);
}

.c-547ad2 .container {
	width: 100%;
}

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

@media (max-width: 1100px) {

	.c-9045c8 {
		padding: 1rem 0;
	}
}

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

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

.c-565aa2 .c-afcd94 {
	display: none;
}

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

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

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

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

[data-theme="dark"] .c-565aa2 .c-afcd94 {
	display: block;
}

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

.c-c476de .c-68fa17 {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

@media (max-width: 1100px) {

	.c-c476de .c-68fa17 {
		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-c476de .c-68fa17 li {
	margin: 0;
	padding: 0;
	position: relative;
}

@media (max-width: 1100px) {

	.c-c476de .c-68fa17 li {
		width: 100%;
		border-bottom: 1px solid var(--color-border);
	}
}

.c-c476de .c-68fa17 li.menu-item-has-children > a {
	position: relative;
	padding-right: 1.5rem;
}

.c-c476de .c-68fa17 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-c476de .c-68fa17 li.menu-item-has-children > a::after {
		right: 0;
	}
}

@media (max-width: 1100px) {

	.c-c476de .c-68fa17 li.menu-item-has-children > a {
		padding-right: 2.5rem;
	}
}

@media (min-width: 1101px) {

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

.c-c476de .c-68fa17 li.menu-item-has-children.c-1cd02e > a::after {
	transform: translateY(-50%) rotate(180deg);
}

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

.c-c476de .c-68fa17 a:hover {
	color: var(--color-primary);
}

.c-c476de .c-68fa17 .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-c476de .c-68fa17 .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-c476de .c-68fa17 .sub-menu li {
	margin: 0;
	padding: 0;
}

@media (max-width: 1100px) {

	.c-c476de .c-68fa17 .sub-menu li {
		border-bottom: 1px solid var(--color-border);
		width: 100%;
	}
}

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

.c-c476de .c-68fa17 .sub-menu li a:first-child {
	border-radius: 8px 8px 0 0;
}

.c-c476de .c-68fa17 .sub-menu li a:last-child {
	border-radius: 0 0 8px 8px;
}

.c-c476de .c-68fa17 .sub-menu li a:only-child {
	border-radius: 8px;
}

@media (min-width: 1101px) {

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

@media (min-width: 1101px) {

	.c-c476de .c-68fa17 .sub-menu:hover {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}

@media (max-width: 1100px) {

	.c-c476de .c-68fa17 .menu-item-has-children.c-1cd02e > .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-c476de.c-475aad .c-68fa17 {
		right: 0;
	}
}

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

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

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

.c-a17a60 .c-4d1b45 {
	opacity: 0;
	transform: rotate(90deg);
}

.c-a17a60 .c-d5f31e {
	opacity: 1;
	transform: rotate(0deg);
}

@media (max-width: 768px) {

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

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

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

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

.c-9420a6[aria-expanded="true"] .c-dc86b3 {
	opacity: 0;
	transform: rotate(90deg);
}

.c-9420a6[aria-expanded="true"] .c-448849 {
	opacity: 1;
	transform: rotate(0deg);
}

body.c-122cc9 {
	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-d0d09c {
	background-color: var(--color-bg);
	padding: 25px 0;
	transition: background-color var(--theme-transition);
}

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

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

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

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

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

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

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

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

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

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

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

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

.c-10ced0 {
	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-10ced0 {
		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-369b33 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

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

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

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

@media (max-width: 1023px) {

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

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

@media (max-width: 1023px) {

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

	.c-47eba5 .c-4bbe55 {
		flex: 1;
	}
}

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

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

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

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

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

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

@media (max-width: 1023px) {

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

@media (max-width: 768px) {

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

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

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

.c-28ccd9 {
	word-break: break-word;
}

.c-4bbe55 {
	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-282f1c {
	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-282f1c: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-a5a92a {
	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-a5a92a {
		margin-top: 0.375rem;
		font-size: 0.6875rem;
	}
}

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

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

@keyframes urgency-flash {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.7;
	}
}

@media (max-width: 768px) {

	.c-fa120b {
		padding: 0.875rem;
	}

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

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

	.c-763d92,
	.c-cae628 {
		font-size: 0.8125rem;
	}

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

.c-f49160 {
	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-f12f7d {
	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-858bbc {
	width: 100%;
	padding: 2rem 0;
}

.c-858bbc .c-c06953 {
	width: 100%;
}

.c-858bbc .c-d0f114 {
	display: flex;
	flex-direction: column;
	gap: 0;
}

@media (max-width: 768px) {

	.c-858bbc {
		padding: 1.5rem 0;
	}
}

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

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

.c-18e07a::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-18e07a .c-281fa7 {
	color: #fff;
}

.c-18e07a .c-8237f5 {
	color: #fff;
}

.c-18e07a .c-f9da92 {
	color: #fff;
}

.c-18e07a .c-40fc95 {
	color: rgba(255, 255, 255, 0.8);
}

.c-18e07a .c-42162e,
.c-18e07a .c-42162e p,
.c-18e07a .c-42162e li {
	color: rgba(255, 255, 255, 0.9);
}

.c-18e07a .c-00b6f3 {
	color: rgba(255, 255, 255, 0.8);
}

.c-18e07a .c-00b6f3:hover {
	color: #fff;
}

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

.c-281fa7 {
	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-8237f5 {
	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-8237f5 {
		margin-bottom: 0.75rem;
	}
}

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

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

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

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

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

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

@media (max-width: 768px) {

	.c-40fc95 {
		font-size: 0.6875rem;
	}
}

.c-42162e {
	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-42162e {
		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-42162e.c-1b7039 {
		max-height: none;
	}

	.c-42162e.c-5d1779::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-42162e.c-1b7039::after {
		opacity: 0;
	}
}

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

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

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

@media (max-width: 768px) {

	.c-42162e ul,
	.c-42162e ol {
		text-align: center;
	}
}

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

.c-42162e a:hover {
	color: var(--color-primary-light);
}

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

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

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

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

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

@media (min-width: 1024px) {

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

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

@media (max-width: 1023px) {

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

@media (max-width: 768px) {

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

.c-186326 {
	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-23f20d {
	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-23f20d {
		position: static;
		display: inline-block;
		margin-bottom: 0.5rem;
	}
}

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

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

@media (max-width: 1023px) {

	.c-6b734e {
		padding-top: 0;
	}
}

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

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

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

@media (max-width: 1023px) {

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

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

@media (max-width: 1023px) {

	.c-abbf9b {
		width: 120px;
		height: 120px;
	}
}

@media (max-width: 768px) {

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

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

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

@media (max-width: 1023px) {

	.c-20e377 {
		font-size: 1rem;
	}
}

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

@media (max-width: 1023px) {

	.c-103d98 {
		width: 100%;
	}
}

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

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

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

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

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

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

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

@media (max-width: 768px) {

	.c-f8d753 {
		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-8237f5,
	.c-99db7e,
	.c-1ed1dd {
		animation: none;
	}

	.c-1ed1dd:hover {
		transform: none;
	}

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

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

@media (max-width: 768px) {

	.c-022b5d {
		padding: 3rem 0;
	}
}

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

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

@media (max-width: 768px) {

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

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

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

@media (max-width: 768px) {

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

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

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

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

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

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

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

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

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

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

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

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

@media (max-width: 768px) {

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

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

@media (max-width: 1100px) {

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

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

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

.c-e6f6be {
	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-6c5c99 {
	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-ce3573 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 1rem;
}

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

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

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

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

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

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

.c-653b96 {
	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-653b96: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-5a9f86 {
	padding: 2rem 0;
	background-color: var(--color-bg);
	transition: background-color var(--theme-transition);
}

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

@media (max-width: 768px) {

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

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

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

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

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

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

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

.c-5e3f87[aria-expanded="true"] .c-a1b160 {
	transform: rotate(45deg);
}

@media (max-width: 768px) {

	.c-5e3f87 {
		padding: 1rem 0;
	}
}

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

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

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

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

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

@media (max-width: 768px) {

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

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

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

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

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

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

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

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

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

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

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

.c-04dae0 em {
	font-style: italic;
}

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

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

@media (max-width: 768px) {

	.c-fee1a2 {
		margin: 1.5rem auto;
	}
}

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

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

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

.c-6cf61c[aria-expanded="true"] .c-04d581 {
	transform: rotate(180deg);
}

@media (max-width: 768px) {

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

.c-156d7c {
	flex: 1;
	margin: 0;
}

.c-04d581 {
	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-1b0f2c {
	position: relative;
	margin: 0.5rem 0 0;
}

.c-1454b8 {
	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-fee1a2:not(.c-69ff01) .c-1454b8 {
	max-height: 0;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	padding-bottom: 0;
}

@media (max-width: 768px) {

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

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

.c-7c400d:last-child {
	border-bottom: none;
}

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

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

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

@media (max-width: 768px) {

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

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

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

.c-630bf8 {
	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-fee1a2:not(.c-69ff01) .c-630bf8 {
	opacity: 0 !important;
	visibility: hidden !important;
}

.c-fee1a2.c-69ff01 .c-1b0f2c[data-scrollable="true"] .c-630bf8 {
	opacity: 1;
	visibility: visible;
}

.c-fee1a2.c-69ff01 .c-1b0f2c:hover .c-630bf8 {
	opacity: 0.3;
}

.c-928d19 {
	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-e83c42 {
	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-a5b291 {
	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-915098 {
	width: 100%;
	padding: 4rem 0;
	background-color: var(--color-bg);
	transition: background-color var(--theme-transition);
}

@media (max-width: 768px) {

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

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

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

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

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

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

.c-0f247a {
	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-915098 .wpcf7 form .wpcf7-form-control-wrap {
	margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

.c-de7558.c-434b2d {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

@media (max-width: 768px) {

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

	.c-de7558.c-434b2d {
		transform: translateY(0);
	}

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

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

@media (max-width: 768px) {

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

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

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

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

.c-64d8fa {
	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-dd7290 {
	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-ae97a1 {
	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-ae97a1 {
		font-size: 1rem;
	}
}

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

@media (min-width: 480px) {

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

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

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

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

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

.c-8e9317 {
	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-282776 {
	top: 8%;
	left: 15%;
}

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

	.c-536ffd {
		align-items: center;
	}
}

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

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

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

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

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

@media (max-width: 768px) {

	.c-34fb59 {
		justify-content: center;
	}
}

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

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

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

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

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

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

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

.c-9fe700 {
	width: 100%;
	padding: 2rem 0;
}

@media (max-width: 768px) {

	.c-9fe700 {
		padding: 1.5rem 0;
	}
}

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

.c-5d4f62 {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

@media (max-width: 768px) {

	.c-5d4f62 {
		gap: 1.5rem;
	}
}

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

.c-5d4f62 .entry-summary p {
	margin: 0 0 1rem;
}

.c-5d4f62 .c-47b97b {
	display: inline-block;
	margin-top: 0.75rem;
	color: var(--color-primary);
	font-weight: 600;
	text-decoration: none;
	transition: color var(--theme-transition);
}

.c-5d4f62 .c-47b97b:hover,
.c-5d4f62 .c-47b97b:focus {
	color: var(--color-primary-light);
	text-decoration: underline;
}

.c-5d4f62 .entry-title {
	margin-bottom: 0.5rem;
}

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {

	.c-71c70a {
		gap: 1.5rem;
	}
}

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

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

@media (max-width: 768px) {

	.c-b5f8af {
		padding: 0.75rem;
	}
}

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

.c-b5f8af:hover .c-a40b03,
.c-b5f8af:focus .c-a40b03 {
	opacity: 0.9;
}

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

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

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

@media (max-width: 1024px) {

	.c-2ccb33 {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

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

@media (max-width: 1024px) {

	.c-5b174c {
		justify-content: center;
	}
}

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

.c-5b174c .c-afcd94 {
	display: none;
}

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

@media (max-width: 1100px) {

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

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

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

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

@media (max-width: 1024px) {

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

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

[data-theme="dark"] .c-5b174c .c-afcd94 {
	display: block;
}

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

@media (max-width: 400px) {

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

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

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

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

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

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

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

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

@media (max-width: 768px) {

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

.wp-block-group .c-e46ef5 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-5ef096 table {
		display: block;
		width: 100%;
		min-width: 100%;
	}
}

@media (max-width: 768px) {

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

@media (max-width: 768px) {

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

@media (max-width: 768px) {

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

@media (max-width: 768px) {

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

	.wp-block-group.c-5ef096 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-e87901 {
	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-e87901.c-434b2d {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

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

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

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

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

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

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

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

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

@media (max-width: 768px) {

	.c-073bc8 {
		gap: 0.125rem;
	}
}

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

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

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

@media (max-width: 768px) {

	.c-f29b38 {
		font-size: 0.75rem;
	}
}

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

@media (max-width: 768px) {

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

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

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

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

.c-803e20 {
	transition: transform 0.2s ease;
}

.c-24be7e:hover .c-803e20 {
	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-e87901.c-434b2d ~ .c-de7558,
body:has(.c-e87901.c-434b2d) .c-de7558 {
	bottom: 7rem;
}

@media (max-width: 768px) {

	.c-e87901.c-434b2d ~ .c-de7558,
	body:has(.c-e87901.c-434b2d) .c-de7558 {
		bottom: 9rem;
	}
}

body:has(.c-e87901.c-434b2d) .c-a0dc8c {
	bottom: 7rem;
}

@media (max-width: 768px) {

	body:has(.c-e87901.c-434b2d) .c-a0dc8c {
		bottom: 9rem;
	}
}

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

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

.c-dd2baf.c-434b2d .c-f17d9b {
	transform: scale(1) translateY(0);
	opacity: 1;
}

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

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

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

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

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

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

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

.c-96d48b {
	margin-bottom: 1.5rem;
}

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

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

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

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

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

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

@media (max-width: 400px) {

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

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

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

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

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

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

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

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

@media (max-width: 400px) {

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

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

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

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

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

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

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

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

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

.c-90d921 {
	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-ba697e {
	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-252ea0 {
	display: none;
}

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