* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	min-width: 320px;
	font-family: -apple-system, blinkmacsystemfont, roboto, "Helvetica Neue", helvetica, arial, "sans-serif";
	background: #081010;
	color: #fff;
	line-height: 1.6;
}

.header {
	position: sticky;
	top: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	background-color:#002223;
	z-index: 1000;
}

.row {
	margin: 0 auto;
	width: calc(100% - 30px);
	max-width: 1180px;
}

.header .row {
	text-align: center;
	padding: 15px 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.logo {
	display: block;
}

.navigation {
	display: flex;
	gap: 16px;
	justify-content: center;
}

.navigation a {
	width: 100%;
	max-width: 200px;
	text-decoration: none;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	border-radius: 8px;
	display: inline-block;
	padding: 13px 32px;
}

.navigation a:nth-child(1) {
	background:#ff8a00;
}

.navigation a:nth-child(1):hover {
	background:#ff9c2a;
}

.navigation a:nth-child(2) {
	background:transparent;
	border:1px solid #ff8a00;
}

.navigation a:nth-child(2):hover {
	border-color: #ff9c2a;
}


.menu {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin: 5px 0;
}

.menu a {
	color: #8ca89e;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	padding: 8px 12px;
	transition: color 0.3s ease;
}

.menu a:hover {
	color: #fff;
}


aside span,
aside a {
	display: block;
	font-weight: bold;
	color: #fff;
}

aside .welcome {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url(bonus.png);
	background-size: cover;
	padding: 50px 30px 0;
	margin: 30px 0;
	border-radius: 16px;
	overflow: hidden;
	height: 300px;
	text-decoration: none;
	position: relative;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	border: 1px solid #f7931a;

}

aside .welcome::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgb(0 0 0 / 20%), rgb(0 0 0 / 20%));
	z-index: 1;
}

aside .welcome > * {
	position: relative;
	z-index: 2;
}

.pre-welcome-text {
	font-size: 24px;
	margin-bottom: 20px;
}

.welcome-text {
	font-size: 22px;
	color: #fff;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.btnget {
	border-radius: 8px;
	padding: 12px 24px;
	display: inline-block;
	max-width: 200px;
	text-align: center;
	font-weight: 700;
	background: #ff8a00;
	margin: 30px 0;
	border: none;
	cursor: pointer;
}

.btnget:hover {
	background: #FFC107;
}

.home-content {
	background: rgba(14, 33, 22, 0.3);
	border-radius: 16px;
	padding: 20px;
	margin: 20px 0;
	border: 1px solid rgba(255, 255, 255, 0.04);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.home-content h1 {
	font-size: 36px;
	line-height: 42px;
	margin-top: 10px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 20px;
	color: #fff;
}

.home-content h2 {
	font-size: 32px;
	line-height: 38px;
	margin-top: 40px;
	font-weight: 600;
	padding-left: 20px;
}

.home-content h3 {
	font-size: 28px;
	line-height: 34px;
	margin-top: 30px;
	font-weight: 600;
	color: #f5b800;
}

.home-content p {
	font-size: 18px;
	line-height: 28px;
	padding-top: 20px;
	color: #fff;
}

.home-content blockquote {
	font-size: 18px;
	line-height: 28px;
	margin: 30px 0;
	padding: 25px;
	color: #d2b77f;
	font-style: italic;
	border: 1px solid #f5b800;
	border-left-width: 6px;
	border-radius: 12px;
	background: rgba(245, 184, 0, 0.05);
	position: relative;
}

.home-content blockquote::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 60px;
	color: #f5b800;
	opacity: 0.3;
}

.home-content figcaption {
	color: #d2b77f;
	font-style: italic;
	text-align: center;
	margin-top: 10px;
}

.home-content table {
	font-size: 18px;
	line-height: 24px;
	margin: 30px 0;
	width: 100%;
	border-collapse: collapse;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.home-content table td {
	padding: 15px 10px;
	border: 1px solid #f5b800;
}

.home-content table tr:nth-child(even) {
	background: rgba(245, 184, 0, 0.05);
}


.home-content table td[colspan="2"] {
	text-align: center;
}

.home-content table thead td {
	background: linear-gradient(135deg, #f5b800, #FFC107);
	color: #000;
	font-weight: bold;
}

.home-content img {
	max-width: 100%;
	height: auto;
	margin: 30px auto;
	display: block;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.home-content ul {
	font-size: 18px;
	line-height: 34px;
	padding: 20px 0 20px 30px;
	color: #d2b77f;
	list-style: none;
}

.home-content ul li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 25px;
}

.home-content ul li::before {
	content: '▶';
	position: absolute;
	left: 0;
	color: #3ba745;
	font-size: 12px;
	top: 8px;
}

.home-content ol {
	font-size: 18px;
	line-height: 34px;
	padding: 20px 0 20px 30px;
	color: #d2b77f;
	list-style-position: inside;
}

footer {
	margin-top: 60px;
	padding: 40px 0 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	background-color: #091010;
}

.wlc-icon-list {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 20px;
	padding: 20px 0;
}

.wlc-icon-list img {
	max-width: 105px;
	max-height: 25px;
	margin-bottom: 20px;
	opacity: 0.7;
	filter: grayscale(100%);
}

.wlc-icon-list img:hover {
	opacity: 1;
	filter: grayscale(0%);
}

.logosvg {
	display: block;
	margin: 20px auto;
}

footer p {
	text-align: center;
	color: #d2b77f;
	font-size: 14px;
}

.header-buttons {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
	width: 100%;
	gap: 16px;
}

.header-buttons .btn {
	width: calc(50% - 8px);
	text-decoration: none;
	color: #fff;
	padding: 12px 20px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	font-size: 16px;
	min-width: 128px;
	border-radius: 12px;
}

.btn-style-1 {
	background: rgba(255, 255, 255, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-style-1:hover {
	background: rgba(255, 255, 255, 0.32);
}

.btn-style-2 {
	background: #3ba745;
	border: 1px solid rgba(59, 167, 69, 0.3);
}

.btn-style-2:hover {
	background: #2f8637;
}

footer .row > img {
	display: block;
	margin: 20px auto;
}

@media (min-width: 800px) {
	.header .row {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		text-align: left;
	}

	.navigation {
		max-width: 400px;

	}

	aside .welcome-text {
		font-size: 27px;
	}

	.home-content {
		padding: 20px 30px;
	}
}

@media (max-width: 670px) {
	aside .welcome {
		height: auto;
		min-height: 250px;
	}

	.home-content {
		padding: 30px 20px;
	}

	.home-content h1 {
		font-size: 28px;
		line-height: 34px;
	}

	.home-content h2 {
		font-size: 24px;
		line-height: 30px;
	}

	.navigation {
		align-items: center;
	}

	.navigation a {
		max-width: 250px;
	}
}

@media (max-width: 366px) {
	.home-content table tr td {
		padding: 8px 5px;
		font-size: 14px;
	}

	.home-content {
		padding: 20px 15px;
	}
}
