/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Nunito', sans-serif;
	background: linear-gradient(135deg, #1a2337 0%, #0f1624 100%);
	color: #ffffff;
	line-height: 1.6;
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

* {
	-webkit-tap-highlight-color: transparent;
}

.site {
	max-width: 1400px;
	margin: 0 auto;
	background: #1a2337;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

/* Header Styles */
.bettilt-header {
	background: linear-gradient(135deg, #1a2337 0%, #012ded 100%);
	padding: 20px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 3px solid #fddf02;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	min-height: 84px;
}

.bettilt-header__logo {
	display: flex;
	align-items: center;
}

.bettilt-header__logo a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.bettilt-header__logo img {
	max-width: 180px;
	height: auto;
	filter: drop-shadow(0 2px 10px rgba(253, 223, 2, 0.3));
	display: block;
	transition: opacity 0.3s ease;
}

.bettilt-header__logo a:hover img {
	opacity: 0.9;
}

.bettilt-header__menu {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.bettilt-menu {
	display: flex;
	list-style: none;
	gap: 20px;
	align-items: center;
	margin: 0;
	padding: 0;
}

.bettilt-menu li {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
}

.bettilt-menu li span {
	display: flex;
	align-items: center;
}

.bettilt-menu li a,
.bettilt-menu li span a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	padding: 12px 24px;
	border-radius: 25px;
	transition: all 0.3s ease;
	background: rgba(253, 223, 2, 0.1);
	border: 2px solid transparent;
	display: inline-flex;
	align-items: center;
	vertical-align: middle;
	min-height: 44px;
	touch-action: manipulation;
}

.bettilt-menu li a:hover,
.bettilt-menu li span a:hover {
	background: #fddf02;
	color: #1a2337;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(253, 223, 2, 0.4);
}

.bettilt-menu .current-menu-item span a {
	background: #fddf02;
	color: #1a2337;
	font-weight: 700;
}

/* Main Content */
.site-main {
	padding: 40px;
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 40px;
}

article {
	background: rgba(26, 35, 55, 0.8);
	padding: 40px;
	border-radius: 15px;
	border: 1px solid rgba(1, 45, 237, 0.3);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Registration Button */
.registration_button {
	background: linear-gradient(135deg, #fddf02 0%, #f5c800 100%);
	padding: 18px 28px;
	color: #1a2337;
	text-decoration: none;
	font-weight: 800;
	position: relative;
	font-size: 17px;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
	margin-bottom: 40px;
	border-radius: 30px;
	text-align: center;
	box-shadow: 0 8px 25px rgba(253, 223, 2, 0.4);
	transition: all 0.3s ease;
	border: 3px solid transparent;
	text-transform: uppercase;
	letter-spacing: 1px;
	min-height: 44px;
	touch-action: manipulation;
	cursor: pointer;
}

.registration_button:hover {
	transform: translateX(-50%) translateY(-5px);
	box-shadow: 0 12px 35px rgba(253, 223, 2, 0.6);
	background: linear-gradient(135deg, #f5c800 0%, #fddf02 100%);
}

.registration_button::before {
	content: '';
	position: absolute;
	top: -3px;
	left: -3px;
	right: -3px;
	bottom: -3px;
	background: linear-gradient(45deg, #fddf02, #012ded, #fddf02);
	border-radius: 30px;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.registration_button:hover::before {
	opacity: 1;
}

/* CPA Buttons */
.cpa_button {
	background: linear-gradient(135deg, #fddf02 0%, #f5c800 100%);
	padding: 18px 28px;
	color: #1a2337;
	text-decoration: none;
	font-weight: 800;
	position: relative;
	font-size: 17px;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
	margin: 30px 0;
	border-radius: 30px;
	text-align: center;
	box-shadow: 0 8px 25px rgba(253, 223, 2, 0.4);
	transition: all 0.3s ease;
	border: 3px solid transparent;
	text-transform: uppercase;
	letter-spacing: 1px;
	min-height: 44px;
	touch-action: manipulation;
	cursor: pointer;
}

.cpa_button:hover {
	transform: translateX(-50%) translateY(-5px);
	box-shadow: 0 12px 35px rgba(253, 223, 2, 0.6);
	background: linear-gradient(135deg, #f5c800 0%, #fddf02 100%);
	color: #1a2337;
	text-decoration: none;
}

.cpa_button::before {
	content: '';
	position: absolute;
	top: -3px;
	left: -3px;
	right: -3px;
	bottom: -3px;
	background: linear-gradient(45deg, #fddf02, #012ded, #fddf02);
	border-radius: 30px;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.cpa_button:hover::before {
	opacity: 1;
}

/* Headings */
h1 {
	color: #fddf02;
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 30px;
	text-shadow: 2px 2px 10px rgba(253, 223, 2, 0.3);
	line-height: 1.2;
	border-bottom: 3px solid #012ded;
	padding-bottom: 20px;
}

h2 {
	color: #fddf02;
	font-size: 32px;
	font-weight: 700;
	margin-top: 50px;
	margin-bottom: 25px;
	text-shadow: 2px 2px 8px rgba(253, 223, 2, 0.2);
	padding-left: 15px;
	border-left: 5px solid #012ded;
}

h3 {
	color: #ffffff;
	font-size: 24px;
	font-weight: 600;
	margin-top: 30px;
	margin-bottom: 15px;
	color: #24906e;
}

/* Paragraphs */
p {
	margin-bottom: 20px;
	font-size: 17px;
	line-height: 1.8;
	color: #e0e0e0;
}

strong {
	color: #fddf02;
	font-weight: 700;
}

/* Links */
a {
	color: #24906e;
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 600;
}

a:hover {
	color: #fddf02;
	text-decoration: underline;
}

/* Content Layout */
.intro-section {
	background: rgba(1, 45, 237, 0.1);
	padding: 30px;
	border-radius: 10px;
	margin-bottom: 40px;
	border-left: 4px solid #012ded;
}


/* Tables */
.table_container {
	margin: 30px 0;
	overflow-x: auto;
}

table {
	width: 100%;
	border-collapse: collapse;
	background: rgba(1, 45, 237, 0.1);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

table thead {
	background: linear-gradient(135deg, #012ded 0%, #1a2337 100%);
}

table th {
	padding: 15px;
	text-align: left;
	color: #fddf02;
	font-weight: 700;
	font-size: 18px;
}

table td {
	padding: 15px;
	border-top: 1px solid rgba(1, 45, 237, 0.3);
	color: #e0e0e0;
}

table td a {
	color: #24906e;
}

table td a strong {
	color: #24906e;
	font-weight: 600;
}

table td a:hover {
	color: #24906e;
}

table tbody tr:hover {
	background: rgba(253, 223, 2, 0.1);
}

table tbody tr:nth-child(even) {
	background: rgba(1, 45, 237, 0.05);
}

/* Lists */
ul {
	margin-left: 25px;
	margin-bottom: 25px;
}

ul li {
	margin-bottom: 12px;
	color: #e0e0e0;
	line-height: 1.8;
}

.payment-list li,
.bonus-list li,
.features-list li {
	padding: 10px;
	background: rgba(1, 45, 237, 0.1);
	margin-bottom: 10px;
	border-radius: 8px;
	border-left: 3px solid #24906e;
	padding-left: 20px;
}

.payment-list li strong,
.bonus-list li strong {
	color: #fddf02;
}

/* Sections */
.steps-section,
.mobile-section,
.security-section,
.game-info {
	background: rgba(1, 45, 237, 0.1);
	padding: 25px;
	border-radius: 10px;
	margin: 25px 0;
	border-left: 4px solid #012ded;
}

.steps-content ul,
.mobile-steps ul {
	list-style: none;
	margin-left: 0;
}

.steps-content li,
.mobile-steps li {
	background: rgba(253, 223, 2, 0.1);
	padding: 15px;
	margin-bottom: 15px;
	border-radius: 8px;
	border-left: 4px solid #fddf02;
	color: #ffffff;
}

.security-content,
.game-content {
	background: rgba(36, 144, 110, 0.1);
	padding: 20px;
	border-radius: 8px;
	border-left: 4px solid #24906e;
}

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

.faq-item {
	background: rgba(1, 45, 237, 0.1);
	padding: 25px;
	margin-bottom: 20px;
	border-radius: 10px;
	border: 1px solid rgba(1, 45, 237, 0.3);
	transition: all 0.3s ease;
}

.faq-item:hover {
	background: rgba(1, 45, 237, 0.2);
	transform: translateX(5px);
}

.faq-item h3 {
	color: #fddf02;
	margin-bottom: 15px;
	font-size: 20px;
}

.faq-answer {
	color: #e0e0e0;
	line-height: 1.8;
}

/* Comments Section */
.comments-section {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 2px solid #012ded;
}

.comments-section h2 {
	font-size: 28px;
	margin-bottom: 30px;
}

.comment-list {
	list-style: none;
	margin-left: 0;
}

.comment {
	background: rgba(1, 45, 237, 0.1);
	padding: 25px;
	margin-bottom: 25px;
	border-radius: 10px;
	border-left: 4px solid #24906e;
}

.comment-body {
	position: relative;
}

.comment-meta {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

.comment-author img {
	border-radius: 50%;
	border: 2px solid #fddf02;
}

.comment-author .fn {
	color: #fddf02;
	font-weight: 700;
}

.comment-author .fn a {
	color: #fddf02;
}

.comment-metadata {
	color: #999;
	font-size: 14px;
}

.comment-metadata a {
	color: #24906e;
}

.comment-content {
	color: #e0e0e0;
	line-height: 1.8;
	margin-bottom: 15px;
}

.reply a {
	color: #24906e;
	font-weight: 600;
	padding: 8px 15px;
	background: rgba(36, 144, 110, 0.2);
	border-radius: 5px;
	display: inline-block;
	transition: all 0.3s ease;
}

.reply a:hover {
	background: #24906e;
	color: #ffffff;
	text-decoration: none;
}

.children {
	list-style: none;
	margin-left: 40px;
	margin-top: 20px;
}

.comment-respond {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid rgba(1, 45, 237, 0.3);
}

.comment-respond h3 {
	color: #fddf02;
	font-size: 24px;
}

/* Sidebar */
.sidebar {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.widget {
	background: rgba(1, 45, 237, 0.1);
	padding: 25px;
	border-radius: 10px;
	border: 1px solid rgba(1, 45, 237, 0.3);
	width: 100%;
	box-sizing: border-box;
}

.widget table {
	font-size: 14px;
	width: 100%;
	table-layout: fixed;
}

.widget th {
	font-size: 16px;
	padding: 12px;
}

.widget td {
	padding: 12px;
	font-size: 13px;
}

/* Footer */
.content-wrap {
	margin-top: 60px;
}

.bettilt-footer {
	background: linear-gradient(135deg, #1a2337 0%, #012ded 100%);
	padding: 30px 40px;
	text-align: center;
	border-top: 3px solid #fddf02;
}

.footer-copy {
	color: #ffffff;
	font-size: 14px;
	margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.site-main {
		grid-template-columns: 1fr;
		padding: 20px;
		gap: 30px;
	}

	.bettilt-header {
		flex-direction: row;
		gap: 15px;
		padding: 15px 20px;
		min-height: auto;
		align-items: center;
	}

	.bettilt-header__logo {
		flex: 0 0 auto;
	}

	.bettilt-header__menu {
		flex: 1;
		justify-content: flex-end;
	}

	.bettilt-menu {
		flex-direction: row;
		width: auto;
		gap: 10px;
		justify-content: flex-end;
	}

	.bettilt-menu li {
		width: auto;
	}

	.bettilt-menu li a,
	.bettilt-menu li span a {
		display: inline-flex;
		text-align: center;
		width: auto;
		font-size: 15px;
		padding: 12px 20px;
	}

	article {
		padding: 25px;
	}

	.intro-section {
		padding: 20px;
	}

	.table_container {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	table {
		min-width: 600px;
		font-size: 14px;
	}

	table th,
	table td {
		padding: 10px 8px;
		font-size: 13px;
	}
}

@media (max-width: 768px) {
	body {
		font-size: 16px;
	}

	.site {
		max-width: 100%;
	}

	.site-main {
		padding: 15px;
		gap: 20px;
	}

	.bettilt-header {
		padding: 12px 15px;
		gap: 10px;
		flex-direction: row;
		align-items: center;
	}

	.bettilt-header__logo {
		flex: 0 0 auto;
	}

	.bettilt-header__logo img {
		max-width: 120px;
	}

	.bettilt-header__menu {
		flex: 1;
		justify-content: flex-end;
	}

	.bettilt-menu {
		flex-direction: row;
		gap: 8px;
		justify-content: flex-end;
	}

	.bettilt-menu li {
		width: auto;
	}

	.bettilt-menu li a,
	.bettilt-menu li span a {
		font-size: 14px;
		padding: 10px 16px;
		display: inline-flex;
		width: auto;
		min-height: 40px;
	}

	article {
		padding: 20px 15px;
	}

	h1 {
		font-size: 28px;
		margin-bottom: 20px;
		padding-bottom: 15px;
		line-height: 1.3;
	}

	h2 {
		font-size: 22px;
		margin-top: 35px;
		margin-bottom: 20px;
		padding-left: 10px;
		line-height: 1.3;
	}

	h3 {
		font-size: 18px;
		margin-top: 25px;
		margin-bottom: 12px;
	}

	p {
		font-size: 16px;
		line-height: 1.7;
		margin-bottom: 15px;
	}

	.registration_button {
		font-size: 14px;
		padding: 14px 22px;
		margin-bottom: 30px;
		width: calc(100% - 30px);
		max-width: 100%;
		left: 50%;
		transform: translateX(-50%);
		word-wrap: break-word;
	}

	.cpa_button {
		font-size: 13px;
		padding: 12px 20px;
		margin: 25px 0;
		width: calc(100% - 30px);
		max-width: 100%;
		left: 50%;
		transform: translateX(-50%);
		word-wrap: break-word;
	}

	.intro-section {
		padding: 15px;
		margin-bottom: 25px;
	}

	.steps-section,
	.mobile-section,
	.security-section,
	.game-info {
		padding: 15px;
		margin: 20px 0;
	}

	.steps-content li,
	.mobile-steps li {
		padding: 12px;
		margin-bottom: 12px;
		font-size: 15px;
	}

	.table_container {
		margin: 20px 0;
	}

	table {
		min-width: 100%;
		font-size: 12px;
		display: block;
		overflow-x: auto;
	}

	table thead,
	table tbody,
	table tr {
		display: table;
		width: 100%;
		table-layout: fixed;
	}

	table th,
	table td {
		padding: 8px 6px;
		font-size: 11px;
		word-wrap: break-word;
	}

	.payment-list li,
	.bonus-list li,
	.features-list li {
		padding: 8px;
		margin-bottom: 8px;
		padding-left: 15px;
		font-size: 15px;
	}

	.faq-item {
		padding: 15px;
		margin-bottom: 15px;
	}

	.faq-item h3 {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.comments-section {
		margin-top: 40px;
		padding-top: 30px;
	}

	.comments-section h2 {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.comment {
		padding: 15px;
		margin-bottom: 15px;
	}

	.comment-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.comment-author img {
		width: 28px;
		height: 28px;
	}

	.children {
		margin-left: 20px;
		margin-top: 15px;
	}

	.sidebar {
		margin-top: 30px;
	}

	.widget {
		padding: 15px;
		margin-bottom: 15px;
	}

	.widget table {
		font-size: 11px;
	}

	.widget th {
		font-size: 13px;
		padding: 10px;
	}

	.widget td {
		padding: 10px;
		font-size: 11px;
		line-height: 1.5;
	}

	.footer-copy {
		font-size: 12px;
		padding: 20px 15px;
	}
}

@media (max-width: 480px) {
	.bettilt-header {
		padding: 10px 12px;
		gap: 8px;
	}

	.bettilt-header__logo img {
		max-width: 100px;
	}

	.bettilt-menu li a,
	.bettilt-menu li span a {
		font-size: 13px;
		padding: 9px 14px;
		min-height: 38px;
	}

	h1 {
		font-size: 24px;
	}

	h2 {
		font-size: 20px;
	}

	h3 {
		font-size: 16px;
	}

	.registration_button,
	.cpa_button {
		font-size: 12px;
		padding: 12px 18px;
		letter-spacing: 0.5px;
	}

	article {
		padding: 15px 10px;
	}

	.site-main {
		padding: 10px;
	}

	.bettilt-header {
		padding: 12px;
	}

	table th,
	table td {
		padding: 6px 4px;
		font-size: 10px;
	}

	.widget th,
	.widget td {
		font-size: 10px;
		padding: 8px;
	}
}

/* Animations */
@keyframes pulse {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.7;
	}
}

.registration_button {
	animation: pulse 2s ease-in-out infinite;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
	width: 12px;
}

::-webkit-scrollbar-track {
	background: #1a2337;
}

::-webkit-scrollbar-thumb {
	background: #012ded;
	border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
	background: #fddf02;
}