/* Base styles */
:root {
	--primary-bg: #0d1117;
	--secondary-bg: #1a2234;
	--tertiary-bg: #0a0d14;
	--primary-color: #ffffff;
	--secondary-color: #a0aec0;
	--accent-color: #e53e3e;
	--border-color: #2d3748;
	--card-bg: #1a2234;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: var(--primary-bg);
	color: var(--primary-color);
	line-height: 1.6;
}
a {
	text-decoration: none;
	font-size: inherit;
}
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}
#mirrorDate {
	font-size: 1.2rem;
	font-weight: bold;
}
/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1rem;
	border-radius: 0.25rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	border: none;
	gap: 10px;
}
.btn-banner {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  color: #fff;
  border-radius: 5px;
  width: 303px;
  background: var(--accent-color);
  box-shadow: 0px 0px 12px #e53e3e;
  padding: 16px 52px;
  transition: 0.4s;
  z-index: 5;
  text-align: center;
  display: inline-block;
  margin-top: 12px;
	margin-bottom: 12px;
}
.btn-primary {
	background-color: var(--accent-color);
	color: white;
}

.btn-primary:hover {
	background-color: #c53030;
}

.btn-ghost {
	background-color: transparent;
	color: var(--primary-color);
}

.btn-ghost:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline {
	background-color: transparent;
	border: 1px solid var(--border-color);
	color: var(--primary-color);
}

.btn-outline:hover {
	background-color: rgba(255, 255, 255, 0.05);
}

.btn-large {
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
}

.btn-sm {
	padding: 0.25rem 0.5rem;
	font-size: 0.875rem;
}

/* Header */
.header {
	background-color: var(--primary-bg);
	border-bottom: 1px solid var(--border-color);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 10px 0;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 1rem;
}

.header-left {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.header-left :is(.logo, .language) {
display: inline-flex;
align-items: center;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.logo img {
	height: 32px;
}

.flag {
	width: 20px;
	height: 20px;
	border-radius: 50%;
}

/* Mirror Banner */
.mirror-banner {
	background-color: var(--secondary-bg);
	padding: 0.5rem 0;
	text-align: center;
	font-size: 0.875rem;
	font-weight: 500;
}

/* Hero Section */
.hero {
	background: linear-gradient(to right, #0f172a, #1e293b);
	padding: 3rem 0 0;
	position: relative;
}

.hero-content {
	margin: 0 auto;
	text-align: center;
	padding-bottom: 2rem;
}

.hero h1 {
	font-size: 1.75rem;
	margin-bottom: 0.5rem;
}

.rating {
	display: flex;
	justify-content: center;
	gap: 0.25rem;
	margin-bottom: 1rem;
	color: #ecc94b;
}

.hero-text {
	color: var(--secondary-color);
	margin-bottom: 1.5rem;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

/* Slider */
.slider-container {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.slider {
	display: flex;
	transition: transform 0.5s ease;
}

.slide {
	min-width: 100%;
	position: relative;
	display: none;
}

.slide.active {
	display: block;
}

.slide img {
	width: 100%;
	height: auto;
	min-height: 250px;
	object-fit: cover;
	display: block;
}

.slide-content {
	position: absolute;
	top: 2rem;
	left: 2rem;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 1rem;
	border-radius: 0.25rem;
	max-width: 50%;
	height: max-content;
}

.slide-content h2 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.slider-controls {
	position: absolute;
	bottom: 1rem;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.slider-arrow {
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.slider-arrow:hover {
	background-color: rgba(0, 0, 0, 0.7);
}

.slider-dots {
	display: flex;
	gap: 0.5rem;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.dot.active {
	background-color: white;
}

/* Navigation */
.main-nav {
	background-color: var(--secondary-bg);
	padding: 0.5rem 0;
}

.nav-list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	list-style: none;
	gap: 0.5rem;
}

.nav-item {
	text-align: center;
}

.nav-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0.75rem;
	color: var(--primary-color);
	text-decoration: none;
	border-radius: 0.25rem;
	transition: background-color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
	background-color: rgba(255, 255, 255, 0.1);
}

.nav-link i {
	margin-bottom: 0.25rem;
	font-size: 1.25rem;
}

/* Tabs */
.tabs {
	margin: 1.5rem 0;
}

.tabs-header {
	display: flex;
	overflow-x: auto;
	background-color: var(--secondary-bg);
	border-radius: 0.25rem;
	margin-bottom: 1rem;
}

.tab-btn {
	padding: 0.75rem 1rem;
	background: none;
	border: none;
	color: var(--primary-color);
	cursor: pointer;
	white-space: nowrap;
	transition: background-color 0.2s ease;
	font-size: 0.8rem;
}

.tab-btn:hover {
	background-color: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
	background-color: rgba(255, 255, 255, 0.1);
	font-weight: 500;
}

.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
}

/* Matches Grid */
.matches-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
	gap: 1rem;
}

.match-card {
	background-color: var(--card-bg);
	border-radius: 0.5rem;
	padding: 1rem;
}

.match-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.match-date {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--secondary-color);
	font-size: 0.875rem;
}

.match-teams {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.team {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 40%;
	text-align: center;
}

.team-logo {
	width: 40px;
	height: 40px;
	margin-bottom: 0.5rem;
}

.team-name {
	font-size: 0.875rem;
	font-weight: 500;
}

.match-vs {
	font-size: 1.25rem;
	font-weight: bold;
}

.match-odds {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
}

.odds {
	color: #48bb78;
	margin-left: 0.25rem;
}

/* League Section */
.league-section {
	background-color: var(--card-bg);
	border-radius: 0.5rem;
	padding: 1rem;
}

.league-title {
	font-size: 1rem;
	margin-bottom: 0.75rem;
}

.league-match {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--border-color);
}

.league-match:last-child {
	border-bottom: none;
}

.league-match-teams {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.vs {
	color: var(--secondary-color);
	font-size: 0.75rem;
}

.league-match-odds {
	display: flex;
	gap: 0.5rem;
}

.loading-text {
	color: var(--secondary-color);
	text-align: center;
	padding: 2rem 0;
}

/* Mirror Section */
.mirror-section {
	background-color: var(--primary-bg);
	padding: 2rem 0;
}

.section-title {
	text-align: center;
	margin-bottom: 1.5rem;
	font-size: 1.25rem;
}

.mirror-content {
	background-color: var(--secondary-bg);
	border-radius: 0.5rem;
	padding: 1rem;
	margin-bottom: 1.5rem;
}

.mirror-text {
	color: var(--secondary-color);
	font-size: 0.875rem;
	margin-bottom: 1rem;
}

.mirror-images {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
	gap: 1rem;
}

.mirror-image {
	background-color: var(--tertiary-bg);
	padding: 0.5rem;
	border-radius: 0.25rem;
	overflow: hidden;
}
.mirror-image:hover img {
	transform: scale(1.05);
}

.mirror-image img {
	width: 100%;
	height: 100%;
	border-radius: 0.25rem;
	object-fit: cover;
	transition: transform 0.2s ease-in-out;
}

.mirror-cta {
	text-align: center;
}

/* Info Section */
.info-section {
	background-color: var(--tertiary-bg);
	padding: 2rem 0;
}

.info-content {
	background-color: var(--secondary-bg);
	border-radius: 0.5rem;
	padding: 1rem;
}

.info-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
}
.info-table thead th {
	padding-bottom: 40px;
}

.info-table tr {
	border-bottom: 1px solid var(--border-color);
}

.info-table tr:last-child {
	border-bottom: none;
}

.info-table td {
	padding: 0.75rem 0;
}

.info-table td:first-child {
	color: var(--secondary-color);
	width: 40%;
}

/* App Section */
.app-section {
	background-color: var(--primary-bg);
	padding: 2rem 0;
}

.app-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.app-text {
	color: var(--secondary-color);
	font-size: 0.875rem;
	margin-bottom: 1.5rem;
}

.app-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

.app-image img {
	width: 100%;
	height: auto;
	border-radius: 0.5rem;
}

/* Footer */
.footer {
	background-color: var(--tertiary-bg);
	padding: 1.5rem 0;
	border-top: 1px solid var(--border-color);
}

.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-payments {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.payment-icon {
	height: 30px;
	object-fit: contain;
	filter: brightness(0) invert(1) grayscale(1) brightness(1.6);
	opacity: 0.7;
}

.footer-bottom {
	text-align: center;
	color: var(--secondary-color);
	font-size: 0.75rem;
}
/* Mobile Menu Button */
.mobile-menu-btn {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.hamburger-line {
	width: 20px;
	height: 2px;
	background-color: var(--primary-color);
	margin: 2px 0;
	transition: 0.3s;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
	transform: rotate(-45deg) translate(-4px, 4px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
	transform: rotate(45deg) translate(-4px, -4px);
}

/* Mobile Navigation */
.mobile-nav {
	position: fixed;
	top: 0;
	right: -100%;
	width: 280px;
	height: 100vh;
	background-color: var(--secondary-bg);
	z-index: 1001;
	transition: right 0.3s ease;
	overflow-y: auto;
}

.mobile-nav.active {
	right: 0;
}

.mobile-nav-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	border-bottom: 1px solid var(--border-color);
}

.mobile-nav-close {
	background: none;
	border: none;
	color: var(--primary-color);
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.5rem;
}

.mobile-nav-content {
	padding: 1rem;
}

.mobile-nav-auth {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 2rem;
}

.btn-full {
	width: 100%;
}

.mobile-nav-links {
	display: flex;
	flex-direction: column;
}

.mobile-nav-link {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 0;
	color: var(--primary-color);
	text-decoration: none;
	border-bottom: 1px solid var(--border-color);
	transition: color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
	color: var(--accent-color);
}

.mobile-nav-link:last-child {
	border-bottom: none;
}

.mobile-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.active {
	opacity: 1;
	visibility: visible;
}
/* Responsive */
@media (min-width: 768px) {
	.app-content {
		flex-direction: row;
		align-items: center;
	}

	.app-info {
		width: 50%;
	}

	.app-image {
		width: 50%;
	}

	.app-buttons {
		justify-content: flex-start;
	}

	.hero h1 {
		font-size: 2rem;
	}
}

@media (max-width: 767px) {
	/* Header mobile styles */
	.mobile-menu-btn {
		display: flex;
	}

	/* Hero section mobile */
	.hero {
		padding: 2rem 0 0;
	}

	.hero h1 {
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}

	.hero-text {
		font-size: 0.875rem;
		margin-bottom: 1.5rem;
	}

	/* Navigation mobile */
	.main-nav {
		display: none;
	}

	/* Slider mobile */
	.slide-content {
		left: 1rem;
		bottom: 1rem;
		max-width: calc(100% - 2rem);
		padding: 0.75rem;
	}

	.slide-content h2 {
		font-size: 1.125rem;
	}

	.slide-content p {
		font-size: 0.875rem;
	}

	.slider-controls {
		bottom: 0.5rem;
	}

	.slider-arrow {
		width: 35px;
		height: 35px;
	}

	/* Tabs mobile */
	.tabs-header {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.tab-btn {
		padding: 0.5rem 0.75rem;
		font-size: 0.875rem;
	}

	/* Matches grid mobile */
	.matches-grid {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.match-card {
		padding: 0.75rem;
	}

	.match-teams {
		flex-direction: column;
		gap: 0.75rem;
	}

	.team {
		width: 100%;
	}

	.match-vs {
		margin: 0.5rem 0;
		font-size: 1rem;
	}

	.match-odds {
		gap: 0.25rem;
	}

	.match-odds .btn {
		font-size: 0.75rem;
		padding: 0.5rem 0.25rem;
	}

	/* League matches mobile */
	.league-match {
		flex-direction: column;
		gap: 0.5rem;
		align-items: flex-start;
	}

	.league-match-teams {
		width: 100%;
	}

	.league-match-odds {
		width: 100%;
		justify-content: space-between;
	}

	/* Mirror images mobile */
	.mirror-images {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.5rem;
	}

	/* Info table mobile */
	.info-table td {
		padding: 0.5rem 0;
		font-size: 0.875rem;
	}

	.info-table td:first-child {
		width: 50%;
	}

	/* App section mobile */
	.app-buttons {
		flex-direction: column;
		gap: 0.5rem;
	}

	/* Footer mobile */
	.footer-top {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.footer-payments {
		justify-content: center;
	}
}
@media (max-width: 480px) {
	/* Extra small screens */
	.container {
		padding: 0 10px;
	}

	.hero h1 {
		font-size: 1.25rem;
	}

	.hero-text {
		font-size: 0.8rem;
	}

	.btn-large {
		padding: 0.625rem 1.25rem;
		font-size: 0.875rem;
	}

	.section-title {
		font-size: 1.125rem;
	}

	.mirror-images {
		grid-template-columns: 1fr;
	}

	.slide-content {
		padding: 0.5rem;
	}

	.slide-content h2 {
		font-size: 1rem;
	}

	.slide-content p {
		font-size: 0.8rem;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	/* Tablet styles */
	.matches-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.mirror-images {
		grid-template-columns: repeat(3, 1fr);
	}

	.hero h1 {
		font-size: 1.875rem;
	}
}

@media (min-width: 1024px) {
	/* Desktop styles */
	.matches-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.mirror-images {
		grid-template-columns: repeat(4, 1fr);
	}

	.hero h1 {
		font-size: 2.25rem;
	}
}

/* Landscape orientation for mobile */
@media (max-width: 767px) and (orientation: landscape) {
	.hero {
		padding: 1rem 0 0;
	}

	.hero-content {
		padding-bottom: 1rem;
	}

	.slide-content {
		max-width: 60%;
	}
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
	.team-logo,
	.payment-icon {
		image-rendering: -webkit-optimize-contrast;
		image-rendering: crisp-edges;
	}
}
.text-wrapper {
	padding: 40px 0;
	max-width: 100%;
	margin: 0 auto;
}

.text-wrapper p {
	margin: 0 0 16px 0;
	line-height: 1.6;
}

.text-wrapper h2,
.text-wrapper h3,
.text-wrapper h4,
.text-wrapper h5,
.text-wrapper h6 {
	margin: 24px 0 16px 0;
}

.text-wrapper ul,
.text-wrapper ol {
	margin: 0 0 16px 0;
	padding-left: 20px;
}

.text-wrapper table {
	width: 100%;
	margin: 24px 0;
	border-collapse: collapse;
}

.text-wrapper th,
.text-wrapper td {
	padding: 12px;
	border: 1px solid #ddd;
}

.text-wrapper th {
	background-color: #f5f5f5;
	text-align: left;
}

.text-wrapper img {
	max-width: 100%;
	height: auto;
	margin: 16px 0;
	display: block;
}

.text-wrapper figure {
	margin: 24px 0;
}

.text-wrapper figcaption {
	margin-top: 8px;
	font-style: italic;
	color: #666;
	text-align: center;
}

.text-wrapper blockquote {
	margin: 24px 0;
	padding: 16px;
	border-left: 4px solid #ddd;
	color: #555;
	background-color: #f9f9f9;
}
.text-wrapper .btn-wrapper {
	margin: 60px auto;
	width: 100%;
	text-align: center;
	overflow: hidden;
	display: flex;
	justify-content: center;
}
.text-wrapper .btn-wrapper .btn {
	background-color: #fff;
	color: #0f172a;
	font-size: 1.1rem;
}
.text-wrapper .btn-wrapper img {
	width: 100%;
	object-fit: cover;
}
.text-wrapper .btn-wrapper:hover img {
	transform: scale(1.05);
	transition: transform 0.3s ease;
}
.text-wrapper .btn-wrapper .btn:hover {
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.75);
}
.text-wrapper *:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.text-wrapper h2 {
		font-size: 24px;
	}

	.text-wrapper h3 {
		font-size: 20px;
	}

	.text-wrapper table {
		display: block;
		overflow-x: auto;
	}

	.text-wrapper th,
	.text-wrapper td {
		padding: 8px;
	}

	.text-wrapper blockquote {
		padding: 12px;
	}
}

@media (max-width: 480px) {
	.text-wrapper h2 {
		font-size: 20px;
	}

	.text-wrapper h3 {
		font-size: 18px;
	}

	.text-wrapper p {
		margin: 0 0 12px 0;
		font-size: 16px;
	}

	.text-wrapper ul,
	.text-wrapper ol {
		padding-left: 15px;
	}

	.text-wrapper img {
		margin: 12px 0;
	}

	.text-wrapper figure {
		margin: 16px 0;
	}

	.text-wrapper blockquote {
		padding: 10px;
		border-left-width: 3px;
	}
}
