/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: inherit;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: #ffffff;
	background-color: #0a0a0a;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 2.5rem;
}
h2 {
	font-size: 2rem;
}
h3 {
	font-size: 1.5rem;
}
h4 {
	font-size: 1.25rem;
}

p {
	margin-bottom: 1rem;
	line-height: 1.6;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.btn-primary {
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	color: white;
}

.btn-primary:hover {
	background: linear-gradient(135deg, #e55a2b, #e8851a);
	transform: translateY(-2px);
}

.btn-secondary {
	background: transparent;
	color: #ff6b35;
	border: 2px solid #ff6b35;
}

.btn-secondary:hover {
	background: #ff6b35;
	color: white;
}

.btn-large {
	padding: 16px 32px;
	font-size: 1.1rem;
}

/* Age Gate */
.age-gate {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
}

.age-gate-content {
	background: #1a1a1a;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	max-width: 400px;
	margin: 0 20px;
}

.age-gate-buttons {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
}

.age-gate-buttons .btn {
	flex: 1;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	transition: all 0.3s ease;
}

.nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;
}

.nav-logo .logo-text {
	font-size: 1.5rem;
	font-weight: 800;
	color: #ff6b35;
}
.nav-logo img,
.footer-logo img {
	height: 25px;
	object-fit: contain;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-link {
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-link:hover {
	color: #ff6b35;
}

.nav-cta {
	margin-left: 1rem;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	z-index: 1001;
}

.nav-toggle span {
	width: 25px;
	height: 3px;
	background: #ffffff;
	margin: 3px 0;
	transition: 0.3s;
}

/* Hero Section */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.1;
	z-index: 1;
}
.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-content {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	padding-top: 100px;
}

.hero-title {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero-description {
	font-size: 1.2rem;
	color: #cccccc;
	margin-bottom: 2rem;
}

.hero-bonus {
	margin-bottom: 2rem;
}

.bonus-badge {
	display: inline-block;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	padding: 1rem 1.5rem;
	border-radius: 12px;
	text-align: center;
}

.bonus-text {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.bonus-amount {
	display: block;
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 0.25rem;
}

.bonus-limit {
	display: block;
	font-size: 0.9rem;
	opacity: 0.9;
}

.hero-cta {
	display: flex;
	gap: 1rem;
}

.hero-image {
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-placeholder img,
.content-placeholder img,
.full-width-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-placeholder {
	width: 100%;
	height: 400px;
	background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-weight: 600;
	overflow: hidden;
}

/* Section Styles */
section {
	padding: 4rem 0;
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.section-description {
	font-size: 1.2rem;
	color: #cccccc;
	max-width: 600px;
	margin: 0 auto;
}

/* Advantages Section */
.advantages {
	background: #111111;
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.advantage-card {
	background: #1a1a1a;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	transition: transform 0.3s ease;
}

.advantage-card:hover {
	transform: translateY(-5px);
}

.advantage-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.advantage-card h3 {
	color: #ff6b35;
	margin-bottom: 1rem;
}

/* Registration Steps */
.registration-steps {
	background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.step-card {
	background: #1a1a1a;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	position: relative;
}

.step-number {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 800;
	margin: 0 auto 1rem;
}

/* Content Block Section */
.content-block {
	background: #111111;
}

.content-block-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	margin-bottom: 4rem;
}

.content-block-image {
	position: relative;
}

.content-placeholder {
	width: 100%;
	height: 400px;
	background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-weight: 600;
	overflow: hidden;
}

.content-block-text h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.content-lead {
	font-size: 1.2rem;
	color: #cccccc;
	margin-bottom: 2rem;
}

.content-features {
	margin-bottom: 2rem;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.feature-icon {
	font-size: 2rem;
	flex-shrink: 0;
}

.feature-text h4 {
	color: #ff6b35;
	margin-bottom: 0.5rem;
}

.feature-text p {
	color: #cccccc;
	margin: 0;
}

.content-cta {
	display: flex;
	gap: 1rem;
}

.content-block-full {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
}

.full-width-image {
	width: 100%;
	height: 300px;
	position: relative;
}

.full-width-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 600;
	font-size: 1.2rem;
	overflow: hidden;
}

.content-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
}

.overlay-content {
	text-align: center;
	max-width: 500px;
	padding: 2rem;
}

.overlay-content h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.overlay-content p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: #cccccc;
}

/* Bonuses Section */
.bonuses {
	background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.bonuses-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.bonus-card {
	background: #1a1a1a;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	position: relative;
	transition: transform 0.3s ease;
}

.bonus-card:hover {
	transform: translateY(-5px);
}

.bonus-card.featured {
	background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
	border: 2px solid #ff6b35;
}

.bonus-badge {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: #ff6b35;
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.bonus-card h3 {
	margin-bottom: 1rem;
}

.bonus-card .bonus-amount {
	font-size: 3rem;
	font-weight: 800;
	color: #ff6b35;
	display: block;
	margin-bottom: 0.5rem;
}

.bonus-card .bonus-limit {
	color: #cccccc;
	margin-bottom: 1.5rem;
	display: block;
}

.bonus-features {
	list-style: none;
	margin-bottom: 2rem;
}

.bonus-features li {
	padding: 0.5rem 0;
	color: #cccccc;
}

/* Live Odds Section */
.live-odds {
	background: #111111;
}

.odds-container {
	background: #1a1a1a;
	border-radius: 12px;
	overflow: hidden;
}

.odds-header {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 1rem;
	padding: 1rem;
	background: #2a2a2a;
	font-weight: 600;
}

.odds-row {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 1rem;
	padding: 1rem;
	border-bottom: 1px solid #2a2a2a;
	transition: background 0.3s ease;
}

.odds-row:hover {
	background: #222222;
}

.match-info {
	display: flex;
	flex-direction: column;
}

.teams {
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.time {
	font-size: 0.9rem;
	color: #ff6b35;
}

.odd-value {
	background: #2a2a2a;
	padding: 0.5rem;
	border-radius: 6px;
	text-align: center;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.odd-value:hover {
	background: #ff6b35;
	color: white;
}

.odds-footer {
	text-align: center;
	margin-top: 2rem;
	color: #cccccc;
}

/* Testimonials Section */
.testimonials {
	background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.testimonial-card {
	background: #1a1a1a;
	padding: 2rem;
	border-radius: 12px;
	transition: transform 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
}

.testimonial-rating {
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.testimonial-card p {
	font-style: italic;
	margin-bottom: 1.5rem;
	color: #cccccc;
}

.testimonial-author strong {
	color: #ff6b35;
}

.testimonial-author span {
	color: #999999;
	font-size: 0.9rem;
}

/* FAQ Section */
.faq {
	background: #111111;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: #1a1a1a;
	margin-bottom: 1rem;
	border-radius: 12px;
	overflow: hidden;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
	cursor: pointer;
	transition: background 0.3s ease;
}

.faq-question:hover {
	background: #222222;
}

.faq-question h3 {
	margin: 0;
	font-size: 1.1rem;
}

.faq-toggle {
	font-size: 1.5rem;
	font-weight: bold;
	color: #ff6b35;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg);
}

.faq-answer {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
	padding: 0 1.5rem 1.5rem;
	max-height: 200px;
}

.faq-answer p {
	color: #cccccc;
	margin: 0;
}

/* Footer */
.footer {
	background: #0a0a0a;
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-logo .logo-text {
	font-size: 1.5rem;
	font-weight: 800;
	color: #ff6b35;
}

.footer-section h4 {
	color: #ff6b35;
	margin-bottom: 1rem;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: #cccccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: #ff6b35;
}

.footer-social {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.footer-social a {
	font-size: 1.5rem;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.footer-social a:hover {
	transform: scale(1.2);
}

.security-badges {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.badge {
	background: #1a1a1a;
	padding: 0.5rem;
	border-radius: 6px;
	font-size: 0.9rem;
	text-align: center;
}

.footer-bottom {
	border-top: 1px solid #2a2a2a;
	padding-top: 2rem;
	text-align: center;
	color: #999999;
}

.disclaimer {
	font-size: 0.9rem;
	margin-top: 1rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
	.hero-content {
		gap: 2rem;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.advantages-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bonuses-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.nav-container {
		padding: 0.75rem;
	}

	.nav-menu {
		position: fixed;
		top: 55px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 55px);
		background: rgba(10, 10, 10, 0.98);
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		padding-top: 2rem;
		transition: left 0.3s ease;
		gap: 1.5rem;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-toggle.active span:nth-child(1) {
		transform: rotate(-45deg) translate(-5px, 6px);
	}

	.nav-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle.active span:nth-child(3) {
		transform: rotate(45deg) translate(-5px, -6px);
	}

	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2rem;
		padding-top: 80px;
	}

	.hero-text {
		order: 1;
	}

	.hero-image {
		order: 2;
	}

	.hero-title {
		font-size: 2.2rem;
		margin-bottom: 1rem;
	}

	.hero-description {
		font-size: 1.1rem;
		margin-bottom: 1.5rem;
	}

	.hero-bonus {
		margin-bottom: 1.5rem;
	}

	.bonus-badge {
		position: initial;
		transform: unset;
		padding: 1rem 1.5rem;
		max-width: 260px;
		margin: 0 auto;
	}

	.bonus-amount {
		font-size: 2rem;
	}

	.hero-cta {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		margin-bottom: 2rem;
	}

	.hero-placeholder {
		height: 250px;
	}

	.content-block-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.content-cta {
		flex-direction: column;
		gap: 1rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.advantages-grid,
	.bonuses-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.steps-grid {
		grid-template-columns: 1fr;
	}

	.odds-header,
	.odds-row {
		grid-template-columns: 2fr 1fr 1fr 1fr;
		font-size: 0.9rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.nav-logo .logo-text {
		font-size: 1.3rem;
	}

	.hero-content {
		padding-top: 70px;
		gap: 1.5rem;
	}

	.hero-title {
		font-size: 1.8rem;
		line-height: 1.3;
		margin-bottom: 0.8rem;
	}

	.hero-description {
		font-size: 1rem;
		margin-bottom: 1rem;
	}

	.hero-bonus {
		margin-bottom: 1rem;
	}

	.bonus-badge {
		padding: 0.8rem 1.2rem;
		max-width: 220px;
	}

	.bonus-amount {
		font-size: 1.8rem;
	}

	.bonus-text,
	.bonus-limit {
		font-size: 0.8rem;
	}

	.hero-cta {
		margin-bottom: 1.5rem;
	}

	.hero-placeholder {
		height: 200px;
	}

	.section-title {
		font-size: 1.8rem;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.6s ease forwards;
}

/* Utility Classes */
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}

.mb-1 {
	margin-bottom: 0.5rem;
}
.mb-2 {
	margin-bottom: 1rem;
}
.mb-3 {
	margin-bottom: 1.5rem;
}
.mb-4 {
	margin-bottom: 2rem;
}

.mt-1 {
	margin-top: 0.5rem;
}
.mt-2 {
	margin-top: 1rem;
}
.mt-3 {
	margin-top: 1.5rem;
}
.mt-4 {
	margin-top: 2rem;
}
.text-wrapper {
	padding: 50px 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;
	color: #000;
	font-weight: bold;
}

.text-wrapper img {
	max-width: 100%;
	height: auto;
	margin: 16px 0;
	display: block;
}

.text-wrapper figure {
	margin: 24px 0;
}
.text-wrapper .btn {
	margin: 4rem auto;
	width: max-content;
	max-width: 100%;
	display: flex;
}

.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 *: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;
	}
}
