/*!
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: t8b483
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-76c736 {
	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-76c736.c-c5156f {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.65);
}

.c-76c736 .container {
	width: 100%;
}

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

@media (max-width: 1100px) {

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

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

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

.c-67f259 .c-e13c59 {
	display: none;
}

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

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

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

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

[data-theme="dark"] .c-67f259 .c-e13c59 {
	display: block;
}

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

.c-af57ba .c-796d9b {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

@media (max-width: 1100px) {

	.c-af57ba .c-796d9b {
		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-af57ba .c-796d9b li {
	margin: 0;
	padding: 0;
	position: relative;
}

@media (max-width: 1100px) {

	.c-af57ba .c-796d9b li {
		width: 100%;
		border-bottom: 1px solid var(--color-border);
	}
}

.c-af57ba .c-796d9b li.menu-item-has-children > a {
	position: relative;
	padding-right: 1.5rem;
}

.c-af57ba .c-796d9b 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-af57ba .c-796d9b li.menu-item-has-children > a::after {
		right: 0;
	}
}

@media (max-width: 1100px) {

	.c-af57ba .c-796d9b li.menu-item-has-children > a {
		padding-right: 2.5rem;
	}
}

@media (min-width: 1101px) {

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

.c-af57ba .c-796d9b li.menu-item-has-children.c-dfcb61 > a::after {
	transform: translateY(-50%) rotate(180deg);
}

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

.c-af57ba .c-796d9b a:hover {
	color: var(--color-primary);
}

.c-af57ba .c-796d9b .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-af57ba .c-796d9b .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-af57ba .c-796d9b .sub-menu li {
	margin: 0;
	padding: 0;
}

@media (max-width: 1100px) {

	.c-af57ba .c-796d9b .sub-menu li {
		border-bottom: 1px solid var(--color-border);
		width: 100%;
	}
}

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

.c-af57ba .c-796d9b .sub-menu li a:first-child {
	border-radius: 8px 8px 0 0;
}

.c-af57ba .c-796d9b .sub-menu li a:last-child {
	border-radius: 0 0 8px 8px;
}

.c-af57ba .c-796d9b .sub-menu li a:only-child {
	border-radius: 8px;
}

@media (min-width: 1101px) {

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

@media (min-width: 1101px) {

	.c-af57ba .c-796d9b .sub-menu:hover {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}

@media (max-width: 1100px) {

	.c-af57ba .c-796d9b .menu-item-has-children.c-dfcb61 > .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-af57ba.c-e83d98 .c-796d9b {
		right: 0;
	}
}

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

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

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

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

.c-4f6f1c .c-b842ee {
	opacity: 1;
	transform: rotate(0deg);
}

@media (max-width: 768px) {

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

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

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

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

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

.c-0a2458[aria-expanded="true"] .c-50cab7 {
	opacity: 1;
	transform: rotate(0deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1023px) {

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

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

@media (max-width: 1023px) {

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

	.c-00b506 .c-d29325 {
		flex: 1;
	}
}

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

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

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

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

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

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

@media (max-width: 1023px) {

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

@media (max-width: 768px) {

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

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

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

.c-27efad {
	word-break: break-word;
}

.c-d29325 {
	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-fc8594 {
	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-fc8594: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-e59506 {
	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-e59506 {
		margin-top: 0.375rem;
		font-size: 0.6875rem;
	}
}

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

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

@keyframes urgency-flash {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.7;
	}
}

@media (max-width: 768px) {

	.c-b02977 {
		padding: 0.875rem;
	}

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

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

	.c-b2890f,
	.c-f25bbe {
		font-size: 0.8125rem;
	}

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

.c-081528 {
	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-cc8086 {
	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-c7cb6a {
	width: 100%;
	padding: 2rem 0;
}

.c-c7cb6a .c-a3787a {
	width: 100%;
}

.c-c7cb6a .c-5efd01 {
	display: flex;
	flex-direction: column;
	gap: 0;
}

@media (max-width: 768px) {

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

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

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

.c-d279b1::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-d279b1 .c-5241c3 {
	color: #fff;
}

.c-d279b1 .c-155147 {
	color: #fff;
}

.c-d279b1 .c-adad5e {
	color: #fff;
}

.c-d279b1 .c-42fa52 {
	color: rgba(255, 255, 255, 0.8);
}

.c-d279b1 .c-71756b,
.c-d279b1 .c-71756b p,
.c-d279b1 .c-71756b li {
	color: rgba(255, 255, 255, 0.9);
}

.c-d279b1 .c-e14c6c {
	color: rgba(255, 255, 255, 0.8);
}

.c-d279b1 .c-e14c6c:hover {
	color: #fff;
}

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

.c-5241c3 {
	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-155147 {
	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-155147 {
		margin-bottom: 0.75rem;
	}
}

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

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

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

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

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

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

@media (max-width: 768px) {

	.c-42fa52 {
		font-size: 0.6875rem;
	}
}

.c-71756b {
	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-71756b {
		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-71756b.c-636f57 {
		max-height: none;
	}

	.c-71756b.c-4ef99e::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-71756b.c-636f57::after {
		opacity: 0;
	}
}

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

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

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

@media (max-width: 768px) {

	.c-71756b ul,
	.c-71756b ol {
		text-align: center;
	}
}

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

.c-71756b a:hover {
	color: var(--color-primary-light);
}

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

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

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

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

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

@media (min-width: 1024px) {

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

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

@media (max-width: 1023px) {

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

@media (max-width: 768px) {

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

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

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

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

@media (max-width: 1023px) {

	.c-07af9a {
		padding-top: 0;
	}
}

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

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

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

@media (max-width: 1023px) {

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

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

@media (max-width: 1023px) {

	.c-46b1fc {
		width: 120px;
		height: 120px;
	}
}

@media (max-width: 768px) {

	.c-46b1fc {
		width: 100px;
		height: 100px;
	}
}

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

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

@media (max-width: 1023px) {

	.c-9b2891 {
		font-size: 1rem;
	}
}

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

@media (max-width: 1023px) {

	.c-796aa0 {
		width: 100%;
	}
}

.c-9ac24e {
	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-3d8a4d {
	flex-shrink: 0;
	width: 16px;
	height: 17px;
}

.c-724ead {
	word-break: break-word;
}

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

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

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

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

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

@media (max-width: 768px) {

	.c-e3376b {
		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-155147,
	.c-e4b91f,
	.c-13f038 {
		animation: none;
	}

	.c-13f038:hover {
		transform: none;
	}

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

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

@media (max-width: 768px) {

	.c-308f2a {
		padding: 3rem 0;
	}
}

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

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

@media (max-width: 768px) {

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

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

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

@media (max-width: 768px) {

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

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

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

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

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

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

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

@media (max-width: 768px) {

	.c-01004f {
		font-size: 0.875rem;
	}
}

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

@media (max-width: 768px) {

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

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

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

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

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

@media (max-width: 768px) {

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

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

@media (max-width: 1100px) {

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

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

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

.c-d10cc9 {
	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-1114a5 {
	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-253f7d {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 1rem;
}

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

.c-3b9b64 {
	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-9b17de {
	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-9b17de span {
	text-transform: uppercase;
	color: var(--color-primary);
}

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

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

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

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

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

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

@media (max-width: 768px) {

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

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

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

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

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

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

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

.c-69d70d[aria-expanded="true"] .c-139650 {
	transform: rotate(45deg);
}

@media (max-width: 768px) {

	.c-69d70d {
		padding: 1rem 0;
	}
}

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

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

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

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

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

@media (max-width: 768px) {

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

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

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

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

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

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

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

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

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

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

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

.c-1a0d0b em {
	font-style: italic;
}

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

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

@media (max-width: 768px) {

	.c-50c3bf {
		margin: 1.5rem auto;
	}
}

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

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

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

.c-65f635[aria-expanded="true"] .c-25de7d {
	transform: rotate(180deg);
}

@media (max-width: 768px) {

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

.c-8b7775 {
	flex: 1;
	margin: 0;
}

.c-25de7d {
	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-b00456 {
	position: relative;
	margin: 0.5rem 0 0;
}

.c-3988d3 {
	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-50c3bf:not(.c-6c223c) .c-3988d3 {
	max-height: 0;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	padding-bottom: 0;
}

@media (max-width: 768px) {

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

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

.c-14d0eb:last-child {
	border-bottom: none;
}

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

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

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

@media (max-width: 768px) {

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

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

	.c-643a27::before {
		left: 1rem;
	}
}

.c-1d7d61 {
	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-50c3bf:not(.c-6c223c) .c-1d7d61 {
	opacity: 0 !important;
	visibility: hidden !important;
}

.c-50c3bf.c-6c223c .c-b00456[data-scrollable="true"] .c-1d7d61 {
	opacity: 1;
	visibility: visible;
}

.c-50c3bf.c-6c223c .c-b00456:hover .c-1d7d61 {
	opacity: 0.3;
}

.c-3fff71 {
	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-f739d4 {
	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-e55e35 {
	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-95e1c1 {
	width: 100%;
	padding: 4rem 0;
	background-color: var(--color-bg);
	transition: background-color var(--theme-transition);
}

@media (max-width: 768px) {

	.c-95e1c1 {
		padding: 3rem 0;
	}
}

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

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

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

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

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

.c-d4a8b1 {
	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-95e1c1 .wpcf7 form .wpcf7-form-control-wrap {
	margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

.c-3fa6ae.c-d9014e {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

@media (max-width: 768px) {

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

	.c-3fa6ae.c-d9014e {
		transform: translateY(0);
	}

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

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

@media (max-width: 768px) {

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

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

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

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

.c-7372e7 {
	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-f6adf6 {
	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-9a82f6 {
	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-9a82f6 {
		font-size: 1rem;
	}
}

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

@media (min-width: 480px) {

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

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

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

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

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

.c-55c8cc {
	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-9d5296 {
	top: 8%;
	left: 15%;
}

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

	.c-6a0904 {
		align-items: center;
	}
}

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

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

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

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

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

@media (max-width: 768px) {

	.c-8ada71 {
		justify-content: center;
	}
}

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

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

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

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

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

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

	.c-59c2db {
		width: 18px;
		height: 18px;
	}
}

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

@media (max-width: 768px) {

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

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

.c-1352c2 {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

@media (max-width: 768px) {

	.c-1352c2 {
		gap: 1.5rem;
	}
}

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

.c-1352c2 .entry-summary p {
	margin: 0 0 1rem;
}

.c-1352c2 .c-3a6f80 {
	display: inline-block;
	margin-top: 0.75rem;
	color: var(--color-primary);
	font-weight: 600;
	text-decoration: none;
	transition: color var(--theme-transition);
}

.c-1352c2 .c-3a6f80:hover,
.c-1352c2 .c-3a6f80:focus {
	color: var(--color-primary-light);
	text-decoration: underline;
}

.c-1352c2 .entry-title {
	margin-bottom: 0.5rem;
}

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {

	.c-7f0499 {
		gap: 1.5rem;
	}
}

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

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

@media (max-width: 768px) {

	.c-9da494 {
		padding: 0.75rem;
	}
}

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

.c-9da494:hover .c-c6c185,
.c-9da494:focus .c-c6c185 {
	opacity: 0.9;
}

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

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

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

@media (max-width: 1024px) {

	.c-6f9811 {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

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

@media (max-width: 1024px) {

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

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

.c-c0da96 .c-e13c59 {
	display: none;
}

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

@media (max-width: 1100px) {

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

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

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

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

@media (max-width: 1024px) {

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

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

[data-theme="dark"] .c-c0da96 .c-e13c59 {
	display: block;
}

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

@media (max-width: 400px) {

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

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

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

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

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

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

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

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

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

@media (max-width: 768px) {

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

@media (max-width: 768px) {

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

@media (max-width: 768px) {

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

	.wp-block-group.c-c0ab3b 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-9870dc {
	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-9870dc.c-d9014e {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

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

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

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

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

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

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

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

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

@media (max-width: 768px) {

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

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

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

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

@media (max-width: 768px) {

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

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

@media (max-width: 768px) {

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

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

.c-8ee998 {
	flex-shrink: 0;
}

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

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

.c-4a3d1c:hover .c-e56e32 {
	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-9870dc.c-d9014e ~ .c-3fa6ae,
body:has(.c-9870dc.c-d9014e) .c-3fa6ae {
	bottom: 7rem;
}

@media (max-width: 768px) {

	.c-9870dc.c-d9014e ~ .c-3fa6ae,
	body:has(.c-9870dc.c-d9014e) .c-3fa6ae {
		bottom: 9rem;
	}
}

body:has(.c-9870dc.c-d9014e) .c-550a6d {
	bottom: 7rem;
}

@media (max-width: 768px) {

	body:has(.c-9870dc.c-d9014e) .c-550a6d {
		bottom: 9rem;
	}
}

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

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

.c-cfde82.c-d9014e .c-0e79fd {
	transform: scale(1) translateY(0);
	opacity: 1;
}

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

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

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

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

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

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

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

.c-414e2f {
	margin-bottom: 1.5rem;
}

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

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

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

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

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

.c-2e79ca {
	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-6bb221 {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

@media (max-width: 400px) {

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

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

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

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

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

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

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

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

@media (max-width: 400px) {

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

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

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

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

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

.c-068e9c:visited {
	color: #fff;
}

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

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

.c-9f6bd9 {
	flex-shrink: 0;
}

.c-82b3db {
	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-7e8de1 {
	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-cb742a {
	display: none;
}

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