/* css/style.css */

/* Общие стили */
body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #061412;
	color: #fff;
	line-height: 1.6;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}
.pageMenu li a {
	color: #f9c719;
}

/* Header */
.header {
	background-color: #222723;
	color: white;
	padding: 15px 0;
	border-bottom: 3px solid #f9c719;
	/* Accent color */
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo a {
	color: white;
	text-decoration: none;
	font-size: 24px;
	font-weight: bold;
	display: flex;
	align-items: center;
}

.logo img {
	height: 40px;
	margin-right: 10px;
}

.main-nav {
	display: flex;
	align-items: center;
	/* Выравнивание кнопок и переключателя языка */
}

.main-nav .nav-button {
	color: white;
	text-decoration: none;
	padding: 8px 15px;
	border-radius: 100px;
	transition: background-color 0.3s ease;
	margin-left: 10px;
}

.main-nav .nav-button:hover {
	background-color: #f9c719;
	/* Accent color on hover */
}

.main-nav .register-button {
	background-color: #f9c719;
	color: #fff;
	font-weight: bold;
}

.main-nav .register-button:hover {
	background-color: #e0a800;
	/* Darker accent on hover */
}

/* Language Switcher in Header */
.lang-switcher {
	margin-left: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	/* Расстояние между кнопками языка */
}

.lang-switcher .lang-button {
	background-color: #0e2f2b;
	color: white;
	padding: 5px 10px;
	border-radius: 20px;
	text-decoration: none;
	font-size: 14px;
	transition: background-color 0.3s ease;
}

.lang-switcher .lang-button:hover {
	background-color: #f9c719;
	color: #fff;
}

.lang-switcher .lang-active {
	background-color: #f9c719;
	color: #fff;
	padding: 5px 10px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: bold;
}

/* Hero Banner */
.hero-banner {
	background-size: cover;
	background-position: center;
	color: white;
	text-align: center;
	padding: 100px 0;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.hero-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('/assets/images/bg-web.png') center center / cover no-repeat;
}

.hero-content {
	position: relative;
	z-index: 1;
}

.hero-slogan {
	font-size: 3em;
	margin-bottom: 30px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.cta-button {
	display: inline-block;
	background-color: #f9c719;
	color: #fff;
	padding: 15px 30px;
	border-radius: 20px;
	text-decoration: none;
	font-size: 1.2em;
	font-weight: bold;
	transition: background-color 0.3s ease, transform 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
	background-color: #e0a800;
	transform: translateY(-3px);
}

.pulse-animation {
	animation: pulse 1.5s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}

	100% {
		transform: scale(1);
	}
}

.glow-animation {
	animation: glow 2s infinite alternate;
}

@keyframes glow {
	0% {
		box-shadow: 0 0 5px #f9c719, 0 0 10px #f9c719;
	}

	100% {
		box-shadow: 0 0 10px #f9c719, 0 0 20px #f9c719, 0 0 30px #f9c719;
	}
}

/* Main Content Sections */
.main-content {
	padding: 40px 0;
	background-color: #0e2f2b;
	box-shadow: 0px 0px 10px 0px #0000001a;
	margin-top: 20px;
	margin-bottom: 20px;
	border-radius: 8px;
}

.section-title {
	text-align: center;
	font-size: 2.5em;
	color: #fff;
	margin-bottom: 40px;
	position: relative;
	padding-bottom: 15px;
}

.section-title::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background-color: #f9c719;
	border-radius: 2px;
}

.text-section {
	margin-bottom: 40px;
	padding: 20px;
	background-color: #02504b;
	border-left: 5px solid #f9c719;
	border-radius: 5px;
	box-shadow: 0px 2px 5px 0px #0000000d;
}

.text-section h2,
.text-section h3,
strong {
	display: block;
	color: #fff;
	margin-top: 0;
	font-size: 1.8em;
}

ul {
	display: inline-block;
}
ul li {
	width: fit-content;
}

.text-section p {
	margin-bottom: 15px;
}

.text-section ul {
	list-style: disc;
	margin-left: 20px;
	margin-bottom: 15px;
}

.text-section li {
	margin-bottom: 5px;
}

/* Slots Section */
.slots-section {
	text-align: center;
	padding: 40px 0;
}

.slots-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.slot-item {
	background-color: #eee;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	text-decoration: none;
	color: #fff;
	display: flex;
	flex-direction: column;
}

.slot-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.slot-item img {
	width: 100%;
	height: 150px;
	/* Fixed height for consistency */
	object-fit: cover;
	/* Ensures image covers area */
	display: block;
}

.slot-info {
	padding: 15px;
	text-align: left;
	flex-grow: 1;
	/* Allow info to take remaining space */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.slot-info h3 {
	margin: 0 0 10px 0;
	font-size: 1.1em;
	color: #555;
	flex-grow: 1;
	/* Pushes button to bottom */
}

.slot-button {
	background-color: #f9c719;
	color: #fff;
	padding: 8px 15px;
	border-radius: 5px;
	text-decoration: none;
	font-size: 0.9em;
	font-weight: bold;
	display: block;
	/* Make it a block button */
	text-align: center;
	margin-top: 10px;
	/* Space from title */
	transition: background-color 0.3s ease;
}

.slot-button:hover {
	background-color: #e0a800;
}

/* Sports Section */
.sports-section {
	text-align: center;
	padding: 40px 0;
	background-color: #02504b;
}

#live-scores-container {
	background-color: #04958c;
	border-radius: 8px;
	padding: 20px;
	margin-top: 30px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sports-disclaimer {
	font-size: 0.9em;
	color: #fff;
	margin-top: 20px;
}

.main-sports-cta-button {
	display: inline-block;
	background-color: #f9c719;
	/* Blue for sports CTA */
	color: #000000;
	padding: 12px 25px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 1.1em;
	font-weight: bold;
	transition: background-color 0.3s ease;
	margin-top: 20px;
}

.main-sports-cta-button:hover {
	background-color: #00459e;
}

/* FAQ Section */
.faq-section {
	padding: 40px 0;
}

.faq-item {
	background-color: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 8px;
	margin-bottom: 15px;
	overflow: hidden;
}

.faq-question {
	padding: 15px 20px;
	background-color: #02504b;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: bold;
	color: #fff;
	transition: background-color 0.3s ease;
	border: 1px solid #dddddd;
	border-radius: 8px;
}

.faq-question:hover {
	background-color: #0e4844;
}

.faq-question.active {
	background-color: #f9c719;
	color: #000;
}

.faq-question::after {
	content: '+';
	font-size: 1.5em;
	transition: transform 0.3s ease;
}

.faq-question.active::after {
	content: '-';
	transform: rotate(0deg);
}

.faq-answer {
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-out, padding 0.5s ease-out;
	color: #fff;
}

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

.faq-question.active + .faq-answer {
	max-height: 500px;
	background: #0e4844;
	padding: 15px 20px;
}

/* Footer */
.footer {
	background-color: #222723;
	color: white;
	padding: 30px 0;
	text-align: center;
	font-size: 0.9em;
}

.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.footer a {
	color: #f9c719;
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}

.disclaimer {
	color: #bbb;
	margin-top: 15px;
	max-width: 800px;
}

/* Page Titles for Inner Pages */
.page-title {
	font-size: 2.8em;
	color: #fff;
	text-align: center;
	margin-bottom: 40px;
	padding-bottom: 15px;
	position: relative;
}

.page-title::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 100px;
	height: 5px;
	background-color: #f9c719;
	border-radius: 3px;
}

/* Hamburger Menu */
.hamburger-menu-button {
	display: none;
	/* Hidden by default on desktop */
	background: none;
	border: none;
	color: white;
	font-size: 30px;
	cursor: pointer;
	padding: 5px 10px;
}

.overlay {
	display: none;
	/* Hidden by default */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 999;
	/* Below the side menu */
}
.overlay.open {
	display: block;
}

.side-menu {
	position: fixed;
	top: 0;
	right: -300px;
	/* Hidden by default */
	width: 280px;
	height: 100%;
	background: #02504b;
	color: white;
	z-index: 1000;
	/* Above everything */
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
	transition: right 0.3s ease-in-out;
	padding: 20px;
	display: flex;
	flex-direction: column;
}

.side-menu.open {
	right: 0;
}

.close-menu-button {
	background: none;
	border: none;
	color: white;
	font-size: 40px;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	z-index: 1001;
}

.side-nav-list {
	list-style: none;
	padding: 0;
	margin: 40px 0 20px 0;
	/* Space for close button */
	flex-grow: 1;
	/* Pushes lang switcher and ctas to bottom if content is short */
}

.side-nav-list li {
	margin-bottom: 15px;
}

.side-nav-list a {
	color: white;
	text-decoration: none;
	font-size: 1.2em;
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid #0e2f2b;
	transition: color 0.3s ease, background-color 0.3s ease;
}

.side-nav-list a:hover {
	color: #f9c719;
	background-color: #fff;
	padding-left: 5px;
}

.lang-switcher-side {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 20px;
	padding-top: 15px;
	border-top: 1px solid #0e2f2b;
}

.lang-switcher-side .lang-button {
	background-color: #0e2f2b;
	color: white;
	padding: 8px 15px;
	border-radius: 20px;
	text-decoration: none;
	font-size: 1.1em;
	transition: background-color 0.3s ease;
}

.lang-switcher-side .lang-button:hover {
	background-color: #f9c719;
	color: #fff;
}

.lang-switcher-side .lang-active {
	background-color: #f9c719;
	color: #fff;
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 1.1em;
	font-weight: bold;
}

.side-menu-cta {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 25px;
	padding-top: 20px;
	border-top: 1px solid #0e2f2b;
}

.side-menu-cta .cta-button {
	display: block;
	width: 100%;
	text-align: center;
	padding: 12px;
	box-sizing: border-box;
	/* Include padding in width */
}

.table {
	width: 100%;
	overflow-x: auto;
	margin: 30px auto;
}
.table table {
	width: 100%;
	border-collapse: collapse;
}
.table table td {
	padding: 10px 15px;
	width: max-content;
	border: 1px solid #fff;
}

.img-cov {
	width: 100%;
	height: 100%;
	max-width: 800px;
	margin: 15px auto;
}

.img-cov img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.hero-banner::before {
		background: url('/assets/images/bg-mob.png') center center / cover no-repeat;
	}
	.main-nav {
		display: none;
		/* Hide main nav on mobile */
	}

	.hamburger-menu-button {
		display: block;
		/* Show hamburger on mobile */
	}

	.hero-slogan {
		font-size: 2em;
	}

	.hero-cta-buttons {
		flex-direction: column;
	}

	.cta-button {
		width: 80%;
		margin: 0 auto;
	}

	.slots-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	}

	.header-container {
		padding: 0 10px;
	}

	.logo a {
		font-size: 20px;
	}

	.logo img {
		height: 35px;
	}

	.main-content {
		padding: 20px 0;
		margin: 10px;
	}

	.section-title,
	.page-title {
		font-size: 2em;
		margin-bottom: 30px;
	}

	.text-section {
		padding: 15px;
	}
}

@media (max-width: 480px) {
	.side-menu {
		width: 250px;
		/* Slightly smaller menu for very small screens */
	}

	.hero-slogan {
		font-size: 1.8em;
	}

	.cta-button {
		font-size: 1em;
		padding: 12px 20px;
	}

	.slots-grid {
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	}

	.slot-item img {
		height: 120px;
	}

	.slot-info h3 {
		font-size: 1em;
	}

	.slot-button {
		font-size: 0.8em;
		padding: 6px 10px;
	}
}
/*
     FILE ARCHIVED ON 15:21:37 Jul 03, 2025 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 04:57:06 Dec 16, 2025.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.502
  exclusion.robots: 0.017
  exclusion.robots.policy: 0.007
  esindex: 0.01
  cdx.remote: 18.091
  LoadShardBlock: 359.645 (3)
  PetaboxLoader3.resolve: 228.917 (4)
  PetaboxLoader3.datanode: 252.637 (4)
  load_resource: 131.525
*/
