/**
 * Template 1 Widgets Styles
 * Mobile-first responsive design - Exact match to design
 */

/* Hero Section Styles */
.template-1-hero-section {
	width: 100%;
	position: relative;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
	padding: 30px 20px;
	box-sizing: border-box;
}

.template-1-hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent;
	z-index: 0;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.template-1-hero-has-overlay::before {
	opacity: 1;
}

.template-1-hero-section[style*="--overlay-bg"]::before {
	background: var(--overlay-bg);
}

.template-1-hero-section > * {
	position: relative;
	z-index: 1;
}

/* Game Name */
.template-1-hero-game-name {
	margin: 0 0 15px 0;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff;
	text-align: center;
}

/* Short Copy */
.template-1-hero-short-copy {
	margin: 0 auto 25px auto;
	font-size: 0.9rem;
	line-height: 1.6;
	color: #ffffff;
	text-align: center;
	display: block;
}

.template-1-hero-short-copy p {
	margin: 0 0 10px 0;
	text-align: center;
}

.template-1-hero-short-copy p:last-child {
	margin-bottom: 0;
}

.template-1-hero-short-copy * {
	text-align: center;
}

/* Casino CTA Wrapper */
.template-1-hero-cta-wrapper {
	margin: 0 0 16px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

/* Logo and Flag Container */
.template-1-hero-logo-flag-container {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
}

.template-1-hero-casino-logo-wrapper {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.template-1-hero-casino-logo {
	max-height: 80px;
	width: auto;
	object-fit: contain;
	border-radius: 50%;
	border: 0 solid transparent;
}

.template-1-hero-greek-flag-wrapper {
	position: absolute;
	top: -8px;
	right: -8px;
	display: inline-flex;
	align-items: center;
	z-index: 2;
}

.template-1-hero-greek-flag {
	max-height: 24px;
	width: auto;
	object-fit: contain;
	display: inline-block;
	vertical-align: middle;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

/* CTA Button */
.template-1-hero-cta-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
	padding: 16px 24px;
	border-radius: 10px;
	transition: all 0.3s ease;
	cursor: pointer;
	background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
	color: #ffffff;
	font-weight: 700;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: none;
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
	width: 100%;
	text-align: center;
}

.template-1-hero-cta-link:hover {
	opacity: 0.95;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.template-1-hero-cta-link:active {
	transform: translateY(0);
}

.template-1-hero-cta-text {
	display: inline-block;
	font-weight: 700;
	white-space: nowrap;
}

/* Demo Button Wrapper */
.template-1-hero-demo-button-wrapper {
	margin: 0 0 12px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.template-1-hero-demo-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	padding: 16px 24px;
	border-radius: 10px;
	transition: all 0.3s ease;
	cursor: pointer;
	background-color: transparent;
	color: #ffffff;
	font-weight: 700;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: 2px solid #ffffff;
	width: 100%;
	text-align: center;
}

.template-1-hero-demo-button:hover {
	background-color: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

.template-1-hero-demo-button:active {
	transform: translateY(0);
}

/* Regulatory Text */
.template-1-hero-regulatory-text-wrapper {
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.template-1-hero-regulatory-text {
	margin: 0;
	font-size: 0.8rem;
	line-height: 1.5;
	color: #ffffff;
	opacity: 0.9;
	text-align: center;
}

/* Responsive Styles - Tablet (768px and up) */
@media (min-width: 768px) {
	.template-1-hero-section {
		padding: 40px 30px;
	}

	.template-1-hero-game-name {
		font-size: 2.25rem;
		margin-bottom: 18px;
	}

	.template-1-hero-short-copy {
		font-size: 1rem;
		margin-bottom: 30px;
	}

	.template-1-hero-cta-wrapper {
		margin-bottom: 20px;
	}

	.template-1-hero-cta-link {
		padding: 18px 32px;
		font-size: 1rem;
		max-width: 500px;
	}

	.template-1-hero-casino-logo {
		max-height: 90px;
	}

	.template-1-hero-greek-flag {
		max-height: 28px;
		border-radius: 4px;
	}

	.template-1-hero-demo-button-wrapper {
		margin-bottom: 16px;
	}

	.template-1-hero-demo-button {
		padding: 18px 32px;
		font-size: 1rem;
		max-width: 500px;
	}

	.template-1-hero-regulatory-text {
		font-size: 0.85rem;
	}
}

/* Responsive Styles - Desktop (1024px and up) */
@media (min-width: 1024px) {
	.template-1-hero-section {
		padding: 50px 40px;
	}

	.template-1-hero-game-name {
		font-size: 2.75rem;
		margin-bottom: 20px;
	}

	.template-1-hero-short-copy {
		font-size: 1.1rem;
		margin-bottom: 35px;
		max-width: 900px;
	}

	.template-1-hero-cta-wrapper {
		margin-bottom: 24px;
	}

	.template-1-hero-cta-link {
		padding: 20px 40px;
		font-size: 1.1rem;
		max-width: 600px;
	}

	.template-1-hero-casino-logo {
		max-height: 100px;
	}

	.template-1-hero-greek-flag {
		max-height: 32px;
		border-radius: 4px;
	}

	.template-1-hero-demo-button-wrapper {
		margin-bottom: 18px;
	}

	.template-1-hero-demo-button {
		padding: 20px 40px;
		font-size: 1.1rem;
		max-width: 600px;
	}

	.template-1-hero-regulatory-text {
		font-size: 0.9rem;
	}
}

/* Smooth scroll behavior */
.template-1-scroll-to-game {
	scroll-behavior: smooth;
}

/* Demo Game Modal */
.template-1-demo-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	opacity: 0;
	transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(0px);
}

.template-1-demo-modal.active {
	display: block;
	opacity: 1;
	backdrop-filter: blur(8px);
}

.template-1-demo-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.95);
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.template-1-demo-modal-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	box-sizing: border-box;
	overflow: hidden;
}

.template-1-demo-modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background-color: rgba(255, 255, 255, 0.15);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: #ffffff;
	font-size: 32px;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 0;
	margin: 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	text-align: center;
	vertical-align: middle;
	animation: gentleBlink 1s ease-in-out 3;
}

.template-1-demo-modal-close::before {
	content: '×';
	font-weight: bold;
	display: block;
	line-height: 1;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 38%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.template-1-demo-modal-close:hover {
	background-color: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.6);
	transform: rotate(90deg) scale(1.1);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.template-1-demo-modal-close:active {
	transform: rotate(90deg) scale(0.95);
}

.template-1-demo-modal-content {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: modalFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes gentleBlink {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.6;
		transform: scale(0.98);
	}
}

.template-1-demo-iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
	background-color: #000000;
	border-radius: 0;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Floating Gift Icon CTA (Desktop Only) - In Hero Section */
.template-1-hero-section {
	position: relative;
}

.template-1-gift-icon-cta {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	background: transparent;
	border: none;
	cursor: pointer;
	z-index: 10;
	padding: 0;
	margin: 0;
	display: none; /* Hidden by default, shown only on desktop */
	transition: transform 0.3s ease;
	text-decoration: none;
}

.template-1-gift-icon-cta:hover {
	transform: scale(1.1);
}

.template-1-gift-icon-cta:active {
	transform: scale(0.95);
}

.template-1-gift-icon-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

/* Gift Icon Animations */
.template-1-gift-animation-gentle_blink {
	animation: gentleGiftBlink 1s ease-in-out 3;
}

.template-1-gift-animation-pulse {
	animation: giftPulse 1s ease-in-out 3;
}

.template-1-gift-animation-bounce {
	animation: giftBounce 1s ease-in-out 3;
}

.template-1-gift-animation-swing {
	animation: giftSwing 1s ease-in-out 3;
	transform-origin: top center;
}

.template-1-gift-animation-float {
	animation: giftFloat 1s ease-in-out 3;
}

.template-1-gift-animation-shake {
	animation: giftShake 1s ease-in-out 3;
}

@keyframes gentleGiftBlink {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.7;
		transform: scale(0.95);
	}
}

@keyframes giftPulse {
	0%, 100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.15);
		opacity: 0.8;
	}
}

@keyframes giftBounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-15px);
	}
}

@keyframes giftSwing {
	0%, 100% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(10deg);
	}
	75% {
		transform: rotate(-10deg);
	}
}

@keyframes giftFloat {
	0%, 100% {
		transform: translateY(0) translateX(0);
	}
	33% {
		transform: translateY(-10px) translateX(5px);
	}
	66% {
		transform: translateY(-5px) translateX(-5px);
	}
}

@keyframes giftShake {
	0%, 100% {
		transform: translateX(0);
	}
	10%, 30%, 50%, 70%, 90% {
		transform: translateX(-5px);
	}
	20%, 40%, 60%, 80% {
		transform: translateX(5px);
	}
}

/* Show gift icon only on desktop */
@media (min-width: 1024px) {
	.template-1-gift-icon-cta {
		display: block;
	}
}

/* Casino Cards Styles */
.template-1-casino-cards-wrapper {
	display: grid;
	width: 100%;
	gap: 20px;
	margin: 0;
	padding: 0;
}

.template-1-cards-per-row-1 {
	grid-template-columns: 1fr;
}

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

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

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

.template-1-casino-card {
	background-color: #2d5016;
	border-radius: 12px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 25px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.template-1-casino-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.template-1-casino-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 5px;
}

.template-1-casino-card-logo-wrapper {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.template-1-casino-card-logo {
	max-height: 50px;
	width: auto;
	object-fit: contain;
}

.template-1-casino-card-name {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
	flex: 1;
}

.template-1-casino-card-bonus {
	font-size: 1.1rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.4;
	margin: 0 0 10px 0;
}

.template-1-casino-card-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #FFD700;
	color: #000000;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	padding: 14px 24px;
	border-radius: 8px;
	transition: all 0.3s ease;
	text-align: center;
	cursor: pointer;
	border: none;
	margin: 10px 0;
}

.template-1-casino-card-cta:hover {
	background-color: #FFC700;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.template-1-casino-card-cta:active {
	transform: translateY(0);
}

.template-1-casino-card-pos-items {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.template-1-casino-card-pos-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: #ffffff;
	font-size: 0.9rem;
	line-height: 1.5;
}

.template-1-casino-card-pos-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background-color: #ffffff;
	color: #2d5016;
	border-radius: 50%;
	font-size: 0.75rem;
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 2px;
}

.template-1-casino-card-pos-text {
	flex: 1;
}

/* Casino Specifications Wrapper */
.template-1-casino-specs-wrapper {
	margin: 20px 0 0 0;
}

.template-1-casino-specs-toggle {
	width: 100%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
	text-align: left;
	border-style: solid;
}

.template-1-casino-specs-toggle:focus {
	outline: 2px solid #0073aa;
	outline-offset: 2px;
}

.template-1-casino-specs-toggle-text {
	flex: 1;
}

.template-1-casino-specs-toggle-icon {
	font-size: 0.8em;
	transition: transform 0.3s ease;
	margin-left: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.template-1-casino-specs-toggle-icon i,
.template-1-casino-specs-toggle-icon svg {
	transition: transform 0.3s ease;
	width: 1em;
	height: 1em;
	flex-shrink: 0;
}

.template-1-casino-specs-toggle-icon i {
	font-size: inherit;
	display: inline-block;
}

.template-1-casino-specs-toggle-icon svg {
	display: block;
	fill: currentColor;
}

.template-1-casino-specs-content {
	overflow: hidden;
}

/* Casino Specifications Table */
.template-1-casino-card-specs-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
	font-size: 0.9rem;
	border: 1px solid #e0e0e0;
	border-top: none;
}

.template-1-casino-card-specs-table tr {
	border-bottom: 1px solid #e0e0e0;
}

.template-1-casino-card-specs-table tr:last-child {
	border-bottom: none;
}

.template-1-casino-card-specs-table td {
	padding: 10px 12px;
	vertical-align: top;
}

.template-1-spec-field {
	background-color: #ffffff;
	color: #000000;
	font-weight: 500;
	width: 45%;
	border-right: 1px solid #e0e0e0;
}

.template-1-spec-value {
	background-color: #ffffff;
	color: #000000;
	width: 55%;
}

/* Responsive Casino Cards */
@media (max-width: 1023px) {
	.template-1-cards-per-row-3,
	.template-1-cards-per-row-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.template-1-cards-per-row-2,
	.template-1-cards-per-row-3,
	.template-1-cards-per-row-4 {
		grid-template-columns: 1fr;
	}

	.template-1-casino-card {
		padding: 16px;
		gap: 20px;
	}

	.template-1-casino-card-name {
		font-size: 1.1rem;
	}

	.template-1-casino-card-bonus {
		font-size: 1rem;
	}

	.template-1-casino-card-cta {
		padding: 12px 20px;
		font-size: 0.9rem;
	}
}

@media (max-width: 479px) {
	.template-1-casino-card {
		padding: 14px;
		gap: 18px;
	}

	.template-1-casino-card-logo {
		max-height: 40px;
	}

	.template-1-casino-card-name {
		font-size: 1rem;
	}

	.template-1-casino-card-bonus {
		font-size: 0.95rem;
	}

	.template-1-casino-card-cta {
		padding: 10px 18px;
		font-size: 0.85rem;
	}

	.template-1-casino-card-pos-item {
		font-size: 0.85rem;
	}
}

/* About Us Widget Styles */
.template-1-about-us-wrapper {
	display: flex;
	flex-direction: row;
	gap: 40px;
	align-items: flex-start;
	width: 100%;
}

.template-1-about-us-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.template-1-about-us-title {
	margin: 0;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
	color: #000000;
}

.template-1-about-us-text {
	font-size: 1rem;
	line-height: 1.6;
	color: #000000;
}

.template-1-about-us-text p {
	margin: 0 0 1em 0;
}

.template-1-about-us-text p:last-child {
	margin-bottom: 0;
}

.template-1-about-us-icons-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

.template-1-about-us-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #000000;
	text-decoration: none;
	transition: opacity 0.3s ease;
	line-height: 1;
}

.template-1-about-us-icon:hover {
	opacity: 0.7;
}

.template-1-about-us-icon i,
.template-1-about-us-icon svg {
	display: block;
	width: 1em;
	height: 1em;
}

.template-1-about-us-icon svg {
	fill: currentColor;
}

.template-1-about-us-read-bio {
	color: #ff0000;
	text-decoration: none;
	font-weight: 500;
	transition: opacity 0.3s ease;
	display: inline-block;
	margin-top: 10px;
}

.template-1-about-us-read-bio:hover {
	opacity: 0.8;
}

.template-1-about-us-image-wrapper {
	flex-shrink: 0;
	width: 300px;
	max-width: 100%;
}

.template-1-about-us-image {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
	object-fit: cover;
}

/* Responsive About Us */
@media (max-width: 1023px) {
	.template-1-about-us-wrapper {
		flex-direction: column;
		gap: 30px;
	}

	.template-1-about-us-image-wrapper {
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}
}

@media (max-width: 767px) {
	.template-1-about-us-title {
		font-size: 1.5rem;
	}

	.template-1-about-us-text {
		font-size: 0.9rem;
	}

	.template-1-about-us-wrapper {
		gap: 20px;
	}
}

@media (max-width: 479px) {
	.template-1-about-us-title {
		font-size: 1.25rem;
	}

	.template-1-about-us-text {
		font-size: 0.85rem;
	}

	.template-1-about-us-icons-wrapper {
		gap: 12px;
	}
}

/* Casino Footer Widget Styles */
.template-1-casino-footer {
	background-color: #1a1a1a;
	color: #ffffff;
	padding: 40px 20px;
	width: 100%;
}

.template-1-casino-footer-top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	padding-bottom: 30px;
	border-bottom: 1px solid #333333;
	margin-bottom: 30px;
}

.template-1-casino-footer-regulatory-left {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 20px;
	flex: 0 0 auto;
}

.template-1-casino-footer-regulatory-logo-wrapper {
	flex-shrink: 0;
}

.template-1-casino-footer-regulatory-logo {
	max-height: 80px;
	width: auto;
	object-fit: contain;
}

.template-1-casino-footer-regulatory-text {
	color: #ffffff;
	font-size: 0.9rem;
	line-height: 1.6;
	flex: 1;
	text-align: right;
}

.template-1-casino-footer-regulatory-text p {
	margin: 0 0 0.5em 0;
}

.template-1-casino-footer-regulatory-text p:last-child {
	margin-bottom: 0;
}

.template-1-casino-footer-certifications {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
	flex-wrap: wrap;
}

.template-1-casino-footer-certification-link,
.template-1-casino-footer-certification-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.template-1-casino-footer-certification-link:hover {
	opacity: 0.8;
}

.template-1-casino-footer-certification-logo {
	max-height: 80px;
	width: auto;
	object-fit: contain;
	display: block;
}

/* Responsive Casino Footer */
@media (max-width: 1023px) {
	.template-1-casino-footer-top {
		flex-direction: column;
		gap: 20px;
	}

	.template-1-casino-footer-regulatory-text {
		text-align: left;
	}
}

@media (max-width: 767px) {
	.template-1-casino-footer {
		padding: 30px 15px;
	}

	.template-1-casino-footer-top {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.template-1-casino-footer-regulatory-left {
		flex-direction: column;
		gap: 15px;
	}

	.template-1-casino-footer-regulatory-logo {
		max-height: 60px;
	}

	.template-1-casino-footer-regulatory-text {
		font-size: 0.85rem;
	}

	.template-1-casino-footer-certifications {
		gap: 15px;
	}

	.template-1-casino-footer-certification-logo {
		max-height: 60px;
	}
}

@media (max-width: 479px) {
	.template-1-casino-footer {
		padding: 20px 10px;
	}

	.template-1-casino-footer-regulatory-logo {
		max-height: 50px;
	}

	.template-1-casino-footer-regulatory-text {
		font-size: 0.8rem;
	}

	.template-1-casino-footer-certifications {
		gap: 10px;
		justify-content: center;
	}

	.template-1-casino-footer-certification-logo {
		max-height: 50px;
	}
}

/* Responsive Modal Adjustments */
@media (max-width: 767px) {
	.template-1-demo-modal-close {
		top: 15px;
		right: 15px;
		width: 44px;
		height: 44px;
		font-size: 28px;
		border-width: 2px;
	}
}

@media (max-width: 479px) {
	.template-1-demo-modal-close {
		top: 12px;
		right: 12px;
		width: 40px;
		height: 40px;
		font-size: 24px;
		border-width: 1.5px;
	}
}

/* Very small screens (below 480px) */
@media (max-width: 479px) {
	.template-1-hero-section {
		padding: 20px 15px;
	}

	.template-1-hero-game-name {
		font-size: 1.5rem;
		margin-bottom: 12px;
	}

	.template-1-hero-short-copy {
		font-size: 0.85rem;
		margin-bottom: 20px;
	}

	.template-1-hero-cta-link {
		padding: 14px 20px;
		font-size: 0.85rem;
	}

	.template-1-hero-casino-logo {
		max-height: 60px;
	}

	.template-1-hero-greek-flag {
		max-height: 20px;
		border-radius: 3px;
	}

	.template-1-hero-demo-button {
		padding: 14px 20px;
		font-size: 0.85rem;
	}

	.template-1-hero-regulatory-text {
		font-size: 0.75rem;
	}
}

/* ========================================
   FAQ Widget Styles
   ======================================== */

.template-1-faq-wrapper {
	width: 100%;
}

.template-1-faq-item {
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 15px;
	transition: all 0.3s ease;
}

.template-1-faq-item:last-child {
	margin-bottom: 0;
}

.template-1-faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #f5f5f5;
	border: none;
	padding: 20px;
	cursor: pointer;
	text-align: left;
	transition: all 0.3s ease;
	position: relative;
}

.template-1-faq-question:hover {
	background-color: #eeeeee;
}

.template-1-faq-question[aria-expanded="true"] {
	background-color: #e0e0e0;
}

.template-1-faq-question-text {
	flex: 1;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.4;
	color: #000000;
	margin-right: 15px;
}

.template-1-faq-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	transition: transform 0.3s ease;
}

.template-1-faq-icon i,
.template-1-faq-icon svg {
	width: 1em;
	height: 1em;
	display: block;
	fill: currentColor;
	flex-shrink: 0;
}

.template-1-faq-question[aria-expanded="true"] .template-1-faq-icon {
	transform: rotate(180deg);
}

.template-1-faq-answer {
	background-color: #ffffff;
	padding: 20px;
	color: #333333;
	line-height: 1.6;
	overflow: hidden;
}

.template-1-faq-answer p {
	margin: 0 0 15px 0;
}

.template-1-faq-answer p:last-child {
	margin-bottom: 0;
}

.template-1-faq-answer ul,
.template-1-faq-answer ol {
	margin: 0 0 15px 0;
	padding-left: 20px;
}

.template-1-faq-answer ul:last-child,
.template-1-faq-answer ol:last-child {
	margin-bottom: 0;
}

.template-1-faq-answer a {
	color: inherit;
	text-decoration: underline;
}

.template-1-faq-answer a:hover {
	opacity: 0.8;
}

/* Responsive FAQ */
@media (max-width: 767px) {
	.template-1-faq-question {
		padding: 16px;
	}

	.template-1-faq-question-text {
		font-size: 16px;
		margin-right: 12px;
	}

	.template-1-faq-icon {
		width: 20px;
		height: 20px;
	}

	.template-1-faq-answer {
		padding: 16px;
		font-size: 15px;
	}
}

@media (max-width: 479px) {
	.template-1-faq-question {
		padding: 14px;
	}

	.template-1-faq-question-text {
		font-size: 15px;
		margin-right: 10px;
	}

	.template-1-faq-icon {
		width: 18px;
		height: 18px;
	}

	.template-1-faq-answer {
		padding: 14px;
		font-size: 14px;
	}
}

/* ========================================
   Game Table Widget Styles
   ======================================== */

.template-1-game-table-wrapper {
	width: 100%;
}

.template-1-game-table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #d0d0d0;
	border-radius: 0;
	overflow: hidden;
	background-color: #ffffff;
}

.template-1-game-table tr {
	border-bottom: 1px solid #d0d0d0;
}

.template-1-game-table tr:last-child {
	border-bottom: none;
}

.template-1-game-table tr:nth-child(odd) {
	background-color: #f5f5f5;
}

.template-1-game-table tr:nth-child(even) {
	background-color: #ffffff;
}

.template-1-game-table td {
	padding: 15px 20px;
	vertical-align: top;
}

.template-1-game-table .template-1-spec-field {
	background-color: inherit;
	color: #000000;
	font-weight: 700;
	width: 40%;
	border-right: 1px solid #d0d0d0;
}

.template-1-game-table .template-1-spec-value {
	background-color: inherit;
	color: #000000;
	font-weight: 400;
	width: 60%;
}

/* Responsive Game Table */
@media (max-width: 767px) {
	.template-1-game-table td {
		padding: 12px 15px;
		font-size: 14px;
	}
}

@media (max-width: 479px) {
	.template-1-game-table td {
		padding: 10px 12px;
		font-size: 13px;
	}
}
