* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: #333;
}
a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* Header */
.header {
	background: white;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid #f1f1f1;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
}
@media (max-width: 480px) {
	.header-content .btn {
		display: none;
	}
}
.logo-img {
	height: 2.5rem;
	width: auto;
}

.nav-desktop {
	display: none;
	align-items: center;
	gap: 2rem;
}

.nav-link {
	color: #4a5568;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

.nav-link:hover {
	color: #dc2626;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.menu-toggle {
	display: block;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #4a5568;
	cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
	display: none;
	background: white;
	border-bottom: 1px solid #f1f1f1;
	padding: 1rem;
}

.mobile-menu.active {
	display: block;
}

.mobile-nav-link {
	display: block;
	padding: 0.75rem 0;
	color: #4a5568;
	text-decoration: none;
	font-weight: 500;
	border-bottom: 1px solid #f1f1f1;
}

.mobile-nav-link:last-child {
	border-bottom: none;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 0.5rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s;
	font-size: 0.875rem;
}

.btn-primary {
	background: #dc2626;
	color: white;
}

.btn-primary:hover {
	background: #b91c1c;
}

.btn-yellow {
	background: #fbbf24;
	color: #1f2937;
}

.btn-yellow:hover {
	background: #f59e0b;
}

.btn-outline {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.btn-outline:hover {
	background: white;
	color: #dc2626;
}

.btn-dark {
	background: #1f2937;
	color: white;
}

.btn-dark:hover {
	background: #374151;
}

.btn-large {
	padding: 1rem 2rem;
	font-size: 1rem;
}

.btn-xl {
	padding: 1.25rem 3rem;
	font-size: 1.25rem;
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #dc2626, #b91c1c, #991b1b);
	color: white;
	position: relative;
	overflow: hidden;
	padding: 4rem 0 6rem;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
}

.hero-content {
	display: grid;
	gap: 3rem;
	align-items: center;
	position: relative;
	z-index: 10;
}

.hero-badge {
	display: inline-block;
	background: #fbbf24;
	color: #1f2937;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	font-weight: 600;
	font-size: 0.875rem;
	margin-bottom: 1rem;
}

.hero-title {
	font-size: 2.5rem;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 1rem;
}

.text-yellow {
	color: #fbbf24;
}

.hero-subtitle {
	font-size: 1.5rem;
	font-weight: normal;
}

.hero-description {
	font-size: 1.25rem;
	color: #fecaca;
	margin-bottom: 0.5rem;
	max-width: 32rem;
}

.hero-description-en {
	font-size: 1.125rem;
	color: #fca5a5;
	margin-bottom: 2rem;
}

.hero-buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 2rem;
}

.hero-stats {
	display: flex;
	gap: 2rem;
	padding-top: 1rem;
}

.stat {
	text-align: center;
}

.stat-number {
	font-size: 1.5rem;
	font-weight: bold;
}

.stat-label {
	font-size: 0.875rem;
	color: #fca5a5;
}

.hero-image {
	position: relative;
}

.hero-image-container {
	position: relative;
	z-index: 10;
}

.hero-img {
	width: 100%;
	max-width: 500px;
	height: auto;
	border-radius: 1rem;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.hero-trophy {
	position: absolute;
	top: -1rem;
	right: -1rem;
	width: 6rem;
	height: 6rem;
	background: #fbbf24;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: pulse 2s infinite;
}

.hero-trophy i {
	font-size: 3rem;
	color: #dc2626;
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

/* Leagues Section */
.leagues {
	padding: 4rem 0;
	background: #f9fafb;
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title {
	font-size: 2.5rem;
	font-weight: bold;
	color: #1f2937;
	margin-bottom: 1rem;
}

.section-description {
	font-size: 1.25rem;
	color: #6b7280;
	max-width: 32rem;
	margin: 0 auto;
}

.leagues-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
}

.league-card {
	background: white;
	padding: 2rem;
	border-radius: 1rem;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.3s;
}

.league-card:hover {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.league-logo {
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	margin: 0 auto 1rem;
}

.league-name {
	font-size: 1.125rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
}

.league-description {
	color: #6b7280;
	font-size: 0.875rem;
	margin-bottom: 1rem;
}

.badge {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 600;
}

.badge-red {
	background: #fee2e2;
	color: #dc2626;
}

.badge-green {
	background: #dcfce7;
	color: #16a34a;
}

.badge-blue {
	background: #dbeafe;
	color: #2563eb;
}

.badge-yellow {
	background: #fef3c7;
	color: #d97706;
}

/* Odds Section */
.odds {
	padding: 4rem 0;
	background: white;
}

.odds-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.odds-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 0.5rem;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.odds-live {
	border-left: 4px solid #dc2626;
}

.odds-upcoming {
	border-left: 4px solid #16a34a;
}

.match-info {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.team {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.team-logo {
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
}

.team-name {
	font-weight: 600;
}

.vs {
	color: #6b7280;
}

.odds-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.odds-buttons {
	display: flex;
	gap: 0.5rem;
}

.odds-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0.5rem 1rem;
	border: 1px solid #d1d5db;
	background: transparent;
	border-radius: 0.25rem;
	cursor: pointer;
	transition: all 0.3s;
}

.odds-btn:hover {
	background: #f3f4f6;
	border-color: #dc2626;
}

.odds-type {
	font-size: 0.75rem;
	color: #6b7280;
}

.odds-value {
	font-weight: bold;
	margin-left: 0.25rem;
}

.section-cta {
	text-align: center;
}

/* App Section */
.app-section {
	padding: 4rem 0;
	background: linear-gradient(135deg, #1f2937, #374151);
	color: white;
}

.app-content {
	display: grid;
	gap: 3rem;
	align-items: center;
}

.app-badge {
	display: inline-block;
	background: #dc2626;
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	font-weight: 600;
	font-size: 0.875rem;
	margin-bottom: 1rem;
}

.app-title {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
}

.app-subtitle {
	font-size: 1.875rem;
	font-weight: 600;
	color: #d1d5db;
	margin-bottom: 1rem;
}

.app-description {
	font-size: 1.25rem;
	color: #d1d5db;
	margin-bottom: 0.5rem;
}

.app-description-en {
	font-size: 1.125rem;
	color: #9ca3af;
	margin-bottom: 2rem;
}

.app-benefits {
	margin-bottom: 2rem;
}

.benefits-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.benefits-list {
	list-style: none;
}

.benefits-list li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	color: #d1d5db;
}

.benefits-list i {
	color: #fbbf24;
}

.app-buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 2rem;
}

.store-icon {
	width: 1.5rem;
	height: 1.5rem;
}

.app-image {
	position: relative;
	text-align: center;
}

.app-screenshot {
	max-width: 400px;
	width: 100%;
	height: auto;
	border-radius: 1.5rem;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.app-phone-icon {
	position: absolute;
	top: -1rem;
	left: -1rem;
	width: 4rem;
	height: 4rem;
	background: #dc2626;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: bounce 2s infinite;
}

.app-phone-icon i {
	font-size: 2rem;
	color: white;
}

@keyframes bounce {
	0%,
	20%,
	53%,
	80%,
	100% {
		transform: translateY(0);
	}
	40%,
	43% {
		transform: translateY(-30px);
	}
	70% {
		transform: translateY(-15px);
	}
	90% {
		transform: translateY(-4px);
	}
}

/* CTA Section */
.cta-section {
	padding: 4rem 0;
	background: #dc2626;
	color: white;
	text-align: center;
}

.cta-content {
	max-width: 48rem;
	margin: 0 auto;
}

.cta-title {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
}

.cta-subtitle {
	font-size: 1.875rem;
	font-weight: 600;
	color: #fca5a5;
	margin-bottom: 1rem;
}

.cta-description {
	font-size: 1.25rem;
	color: #fca5a5;
	margin-bottom: 0.5rem;
}

.cta-description-en {
	font-size: 1.125rem;
	color: #fca5a5;
	margin-bottom: 2rem;
}

.cta-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.cta-note {
	font-size: 0.875rem;
	color: #fca5a5;
}

/* Footer */
.footer {
	background: #1f2937;
	color: white;
	padding: 3rem 0;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-logo {
	height: 2.5rem;
	width: auto;
	margin-bottom: 1rem;
}

.footer-description {
	color: #9ca3af;
}

.footer-title {
	font-size: 1.125rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: #9ca3af;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: white;
}

.footer-contact {
	list-style: none;
}

.footer-contact li {
	color: #9ca3af;
	margin-bottom: 0.5rem;
}

.footer-bottom {
	border-top: 1px solid #374151;
	padding-top: 2rem;
	text-align: center;
	color: #9ca3af;
}

.footer-disclaimer {
	margin-top: 0.5rem;
	font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 768px) {
	.nav-desktop {
		display: flex;
	}

	.menu-toggle {
		display: none;
	}

	.hero-content {
		grid-template-columns: 1fr 1fr;
	}

	.hero-title {
		font-size: 3.75rem;
	}

	.hero-buttons {
		flex-direction: row;
	}

	.odds-card {
		flex-direction: row;
		align-items: center;
	}

	.app-content {
		grid-template-columns: 1fr 1fr;
	}

	.app-buttons {
		flex-direction: row;
	}

	.cta-actions {
		flex-direction: row;
		justify-content: center;
	}

	.cta-title {
		font-size: 3rem;
	}
}

@media (min-width: 1024px) {
	.hero-title {
		font-size: 4rem;
	}

	.section-title {
		font-size: 3rem;
	}

	.app-title {
		font-size: 3rem;
	}

	.cta-title {
		font-size: 4rem;
	}
}
.text-wrapper {
	margin: 80px 0;
	padding: 0;
	max-width: 100%;
	word-wrap: break-word;
	overflow-wrap: anywhere;
}

.text-wrapper p {
	margin: 0 0 1.2em;
	line-height: 1.6;
}

.text-wrapper strong,
.text-wrapper b {
	font-weight: 600;
}
.text-wrapper em,
.text-wrapper i {
	font-style: italic;
}
.text-wrapper mark {
	background: #fffb91;
	padding: 0 2px;
}
.text-wrapper del {
	text-decoration: line-through;
}
.text-wrapper sup {
	font-size: 0.8em;
	vertical-align: super;
}
.text-wrapper sub {
	font-size: 0.8em;
	vertical-align: sub;
}

.text-wrapper h2,
.text-wrapper h3,
.text-wrapper h4,
.text-wrapper h5,
.text-wrapper h6 {
	margin: 2em 0 1em;
	line-height: 1.3;
}

.text-wrapper ul,
.text-wrapper ol {
	margin: 0 0 1.2em;
	padding-left: 1.5em;
}

.text-wrapper li {
	margin-bottom: 0.4em;
	list-style-position: outside;
}

.text-wrapper dl {
	margin: 1.5em 0;
}
.text-wrapper dt {
	font-weight: 600;
}
.text-wrapper dd {
	margin: 0 0 1em 1.5em;
}

.text-wrapper a {
	text-decoration: underline;
	transition: all 0.2s;
}
.text-wrapper a:hover {
	font-weight: 600;
}

.text-wrapper code {
	background: #f5f5f5;
	padding: 2px 6px;
	border-radius: 4px;
	font-family: Consolas, Monaco, monospace;
	font-size: 0.9em;
}
.text-wrapper pre {
	background: #272822;
	color: #f8f8f2;
	padding: 1em;
	overflow-x: auto;
	border-radius: 6px;
	margin: 1.5em 0;
}
.text-wrapper pre code {
	background: none;
	padding: 0;
	color: inherit;
}

.text-wrapper hr {
	margin: 2em 0;
	border: none;
	border-top: 1px solid #ddd;
}

.text-wrapper img,
.text-wrapper video,
.text-wrapper iframe {
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: 1.5em 0;
	display: block;
	border-radius: 6px;
}

.text-wrapper figure {
	margin: 2em 0;
	text-align: center;
}
.text-wrapper figcaption {
	margin-top: 0.5em;
	font-style: italic;
	opacity: 0.8;
}

.text-wrapper blockquote {
	margin: 2em 0;
	padding: 1em 1.5em;
	border-left: 4px solid #ccc;
	background: #f9f9f9;
	border-radius: 4px;
}
.text-wrapper blockquote p:last-child {
	margin-bottom: 0;
}

.text-wrapper > *:last-child {
	margin-bottom: 0;
}

.text-wrapper table {
	width: 100%;
	margin: 2em 0;
	border-collapse: collapse;
	font-size: 0.95em;
}

.text-wrapper th,
.text-wrapper td {
	padding: 0.75em 1em;
	border: 1px solid #ddd;
	text-align: left;
	vertical-align: top;
	word-break: break-word;
}

.text-wrapper th {
	background: #f7f7f7;
	font-weight: 600;
}
.text-wrapper tr:nth-child(even) td {
	background: #fafafa;
}

@media (max-width: 767px) {
	.text-wrapper table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		width: 100%;
		border-radius: 6px;
	}

	.text-wrapper th,
	.text-wrapper td {
		white-space: normal;
		word-break: break-word;
	}

	.text-wrapper li {
		list-style-position: inside;
	}
}

.text-wrapper table.scrollable {
	display: block;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	white-space: nowrap;
	border-radius: 6px;
}

.text-wrapper table.scrollable th,
.text-wrapper table.scrollable td {
	white-space: nowrap;
	word-break: normal;
}

.text-wrapper table.scrollable::-webkit-scrollbar {
	height: 6px;
}
.text-wrapper table.scrollable::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 3px;
}
.text-wrapper table.scrollable::-webkit-scrollbar-track {
	background: transparent;
}

@media (max-width: 480px) {
	.text-wrapper {
		margin: 60px 0;
	}
	.text-wrapper blockquote {
		border-left-width: 3px;
		padding: 0.7em 1em;
	}
}

.text-wrapper li {
	list-style-position: inside;
}

.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.faq-container {
}

.faq-item {
	background: white;
	border-radius: 10px;
	margin-bottom: 15px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
	padding: 25px 30px;
	cursor: pointer;
	display: flex;
	justify-content: between;
	align-items: center;
	background: white;
	border: none;
	width: 100%;
	text-align: left;
	font-size: 1.1rem;
	font-weight: 600;
	color: #1a202c;
	transition: background-color 0.3s ease;
}

.faq-question:hover {
	background-color: #f7fafc;
}

.faq-question.active {
	background-color: #edf2f7;
	border-bottom: 1px solid #e2e8f0;
}

.faq-icon {
	margin-left: auto;
	font-size: 1.2rem;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.faq-question.active .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	padding: 0 30px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.4s ease;
	background: white;
}

.faq-answer.active {
	padding: 20px 30px 30px;
	max-height: 1000px;
}

.faq-answer p {
	margin: 0 0 15px 0;
	color: #4a5568;
	line-height: 1.6;
}

.faq-answer p:last-child {
	margin-bottom: 0;
}

.faq-answer strong {
	color: #2d3748;
	font-weight: 600;
}

@media (max-width: 768px) {
	.faq-question {
		padding: 20px;
		font-size: 1rem;
	}
	.faq-answer {
		padding-left: 20px;
		padding-right: 20px;
	}
	.faq-answer.active {
		padding: 15px 20px 25px;
	}

	.faq-icon {
		font-size: 1rem;
	}
}
/* Header with fixed positioning */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: white;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease-in-out;
}

/* Main content with top padding to account for fixed header */
.main-content {
	padding-top: 70px; /* Adjust based on your header height */
}

/* Burger menu button */
.burger-menu {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 30px;
	height: 25px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	margin-left: auto;
	z-index: 1001;
	position: relative;
}

.burger-menu span {
	width: 100%;
	height: 3px;
	background-color: #4a5568;
	border-radius: 10px;
	transition: all 0.3s ease-in-out;
	transform-origin: 1px;
}

.burger-menu.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
	opacity: 0;
	transform: translateX(20px);
}

.burger-menu.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu - Fixed positioning */
.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: white;
	border-bottom: 1px solid #f1f1f1;
	padding: 1rem;
	z-index: 999;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transform: translateX(-100%);
	transition: transform 0.3s ease-in-out;
	overflow-y: auto;
}

.mobile-menu.active {
	display: flex;
	transform: translateX(0);
}

/* Overlay for mobile menu */
.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	z-index: 998;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Mobile navigation links */
.mobile-nav-link {
	display: block;
	padding: 1rem 0;
	color: #4a5568;
	text-decoration: none;
	font-weight: 500;
	font-size: 1.2rem;
	border-bottom: 1px solid #f1f1f1;
	width: 100%;
	text-align: center;
	transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
	color: #dc2626;
}

.mobile-nav-link:last-child {
	border-bottom: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.burger-menu {
		display: flex;
	}

	.desktop-nav {
		display: none;
	}

	.main-content {
		padding-top: 70px;
	}
}

@media (max-width: 480px) {
	.mobile-menu {
		padding: 1rem 0.5rem;
	}

	.mobile-nav-link {
		padding: 1.5rem 0;
		font-size: 1.1rem;
	}
}

/* Header scroll effect improvements */
.header.scrolled {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Smooth transitions for mobile menu */
.mobile-menu {
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

/* Additional styles for better mobile experience */
.mobile-menu .nav-brand {
	margin-bottom: 2rem;
	font-size: 1.5rem;
	font-weight: bold;
	color: #dc2626;
}

.mobile-menu .nav-divider {
	height: 1px;
	background: #f1f1f1;
	width: 80%;
	margin: 1rem auto;
}
