@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ========================================
           CSS RESET
           ======================================== */
*:where(
		:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)
	) {
	all: unset;
	display: revert;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

a,
button {
	cursor: revert;
}

ol,
ul,
menu {
	list-style: none;
}

img {
	max-inline-size: 100%;
	max-block-size: 100%;
}

table {
	border-collapse: collapse;
}

/* ========================================
           VARIABLES - NEON RED/GREEN
           ======================================== */
:root {
	--pinup-red: #ff6600;
	--pinup-teal: #ff6600;
	--pinup-dark: #1a1a1a;
	--pinup-white: #ffffff;
	--pinup-yellow: #ffd700;

	--bg-dark: #1a1a1a;
	--bg-darker: #0a0a0a;
	--bg-card: #262626;

	--gradient-red: #ff6600;
	--gradient-teal: linear-gradient(135deg, #ff6600 0%, #24b39c 100%);
	--gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);

	--glow-red: 0 0 20px rgba(233, 24, 58, 0.8), 0 0 40px rgba(233, 24, 58, 0.6);
	--glow-teal: 0 0 20px rgba(44, 205, 177, 0.8),
		0 0 40px rgba(44, 205, 177, 0.6);
	--glow-gold: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.6);
}

/* ========================================
           BASE STYLES
           ======================================== */
html,
body {
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
	color: #fff;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
	background: #04081e;
	position: relative;
}

p {
	line-height: 180%;
	margin: 15px 0;
	color: rgba(255, 255, 255, 0.9);
}

h1 {
	font-size: 48px;
	font-weight: 800;
	text-align: center;
	margin: 35px 0;
	color: #2c31cd;
}

h2 {
	font-size: 36px;
	font-weight: 700;
	margin: 30px 0 20px 0;
	text-align: center;
	color: #fff;
	border-bottom: 3px solid #fff;
	padding-bottom: 15px;
}

h3 {
	font-size: 28px;
	font-weight: 600;
	margin: 25px 0 15px 0;
	color: var(--pinup-teal);
	text-shadow: 0 0 15px rgba(44, 205, 177, 0.5);
}

ol {
	list-style: decimal;
	padding: 20px 30px;
}

ul {
	list-style: disc;
	padding: 20px 30px;
}

li {
	line-height: 180%;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 10px;
}

ol li::marker,
ul li::marker {
	color: #fff;
	font-weight: 700;
}

strong {
	color: #2c31cd;
	font-weight: 700;
}

/* ========================================
           TABLE STYLES
           ======================================== */
table {
	border-collapse: collapse;
	width: 100%;
	margin: 30px 0;
	background: #262626;
	border-radius: 4px;
	overflow: hidden;
}

table tr td,
table tr th {
	border: 2px solid #ffffff33;
	padding: 18px;
}

table tr th {
	background: #ffffff33;
	color: #fff;
	font-size: 20px;
	text-align: center;
	font-weight: 700;
}

/* ========================================
           HEADER
           ======================================== */
.header {
	position: sticky;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 999;
	background: #051339;
	padding: 20px 0;
	border-bottom: 2px solid transparent;
}

.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header .logo {
	display: flex;
	align-items: center;
	gap: 15px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.header .logo:hover {
	transform: scale(1.05);
}

.header .logo-icon {
	width: 150px;
	height: auto;
	animation: float 3s ease-in-out infinite;
}

.header .logo-text {
	font-size: 36px;
	font-weight: 900;
	letter-spacing: 2px;
}

.logo-text .pin {
	color: var(--pinup-red);
	text-shadow: 0 0 20px var(--pinup-red);
}

.logo-text .up {
	color: var(--pinup-teal);
	text-shadow: 0 0 20px var(--pinup-teal);
}

.header .auth {
	display: flex;
	align-items: center;
	gap: 15px;
}

/* ========================================
           BUTTONS
           ======================================== */
.btn {
	border-radius: 4px;
	padding: 14px 32px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.5s ease;
}

.btn:hover::before {
	left: 100%;
}

.btn-1 {
	background: #051339;
	border: 2px solid var(--pinup-teal);
	color: #fff;
}

.btn-1:hover {
	box-shadow: none;
	transform: translateY(-3px);
}

.btn-2 {
	background: var(--gradient-red);
	color: #fff;
	border: 2px solid var(--pinup-red);
}

.btn-2:hover {
	animation: none;
	transform: translateY(-3px) scale(1.05);
}

/* ========================================
           MAIN
           ======================================== */
.main {
	height: 100%;
	flex: 1 1 auto;
	padding: 20px 0 60px;
}

.main nav ul {
	list-style: none;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 40px;
}

.main nav ul li a {
	display: inline-flex;
	align-items: center;
	padding: 12px 24px;
	background: #04081e;
	border: 2px solid #ff6600;
	border-radius: 4px;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.main nav ul li a:hover {
	background: rgba(255, 0, 0, 0.2);
	border-color: var(--neon-red);
	box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
	transform: translateY(-2px);
}

.main__col {
	text-align: center;
	padding: 0;
	border-bottom: 3px solid transparent;

	position: relative;
}

.hero-banner {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;

	transition: all 0.3s ease;
}

.banner-content {
	padding: 60px 20px;
}

/* ========================================
           BONUS BANNER
           ======================================== */
.bonus-banner {
	position: relative;
	background: url('/assets/images/bg-web.png') center center / cover no-repeat;
	border-radius: 4px;
	overflow: hidden;
	margin: 40px 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	min-height: 400px;
}

.bonus-banner__content {
	padding: 50px 60px;
	position: relative;
	z-index: 2;
}

.bonus-banner__badge {
	display: inline-block;
	background: #84ff00;
	color: #000;
	font-weight: 700;
	font-size: 14px;
	padding: 8px 20px;
	border-radius: 4px;
	text-transform: uppercase;
	margin-bottom: 20px;
	animation: pulse-badge 2s ease-in-out infinite;
}

.bonus-banner__title {
	font-size: 48px;
	font-weight: 900;
	margin: 20px 0;
	line-height: 1.2;
}

.bonus-banner__title .amount {
	display: block;
	font-size: 72px;
	color: #84ff00;
}

.bonus-banner__subtitle {
	font-size: 20px;
	color: #fff;
	margin-bottom: 30px;
	font-weight: 600;
	text-shadow: 0 0 10px rgba(44, 205, 177, 0.5);
}

.bonus-banner__features {
	list-style: none;
	padding: 0;
	margin: 25px 0 35px 0;
}

.bonus-banner__features li {
	padding: 10px 0;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	position: relative;
	padding-left: 30px;
}

.bonus-banner__features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #fff;
	font-weight: 900;
	font-size: 20px;
}

.bonus-banner__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--gradient-red);
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	padding: 18px 45px;
	border-radius: 4px;
	text-decoration: none;
	text-transform: uppercase;
	border: 3px solid var(--pinup-red);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.bonus-banner__btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.5s ease;
}

.bonus-banner__btn:hover {
	animation: none;
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 0 60px rgba(233, 24, 58, 1), 0 0 100px rgba(233, 24, 58, 0.9);
}

.bonus-banner__btn:hover::before {
	left: 100%;
}

.bonus-banner__image {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	bottom: -25px;
	z-index: 1;
}

.bonus-banner__image img {
	max-width: 100%;
	height: auto;
	max-height: 710px;
	object-fit: contain;
	animation: float-trophy 4s ease-in-out infinite;
}

/* Decorative elements */
.bonus-banner__stars {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 24px;
	animation: twinkle 2s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 968px) {
	.bonus-banner {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.bonus-banner__content {
		padding: 40px 30px;
	}

	.bonus-banner__title {
		font-size: 36px;
	}

	.bonus-banner__title .amount {
		font-size: 56px;
	}

	.bonus-banner__image {
		order: -1;
		bottom: -30px;
	}

	.bonus-banner__image img {
		max-height: 350px;
	}
}

@media (max-width: 480px) {
	.bonus-banner__content {
		padding: 30px 20px;
	}

	.bonus-banner__title {
		font-size: 28px;
	}

	.bonus-banner__title .amount {
		font-size: 42px;
	}

	.bonus-banner__btn {
		width: 100%;
		justify-content: center;
		font-size: 18px;
		padding: 16px 30px;
	}

	.bonus-banner__image img {
		max-height: 335px;
	}
}

.main__col .wrapper {
	max-width: 700px;
	margin: 0 auto;
}

.main__col p {
	margin: 25px 0;
	font-size: 24px;
	font-weight: 500;
	color: var(--neon-yellow);
	text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.main__col img {
	transition: all 0.3s ease;
}

.main__col img:hover {
	transform: scale(1.05);
}

.main__btn {
	background: var(--gradient-green);
	width: 280px;
	margin: 40px auto;
	animation: glow-pulse 2s ease-in-out infinite;
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	border: 3px solid var(--neon-green);
	box-shadow: var(--glow-green);
}

.main__btn:hover {
	background: #ff6600;
	border-color: var(--neon-yellow);
	animation: none;
	transform: translateY(-5px) scale(1.08);
}

.main .content {
	padding: 60px 0 0 0;
}

.main .content h2 {
	color: #2c31cd !important;
	border-bottom: 3px solid #2c31cd;
}

.main .content h3 {
	color: #2c31cd !important;
	text-shadow: none !important;
}

.main .content article {
	background: #020517;
	padding: 40px;
	border-radius: 4px;
}

.main .content img {
	display: flex;
	margin: 30px auto;
	max-width: 100%;
	width: auto;
	height: auto;
	border-radius: 15px;
}

/* ========================================
           CONTAINER
           ======================================== */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ========================================
           FOOTER
           ======================================== */
.footer {
	padding: 40px 0;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.95) 0%,
		rgba(0, 0, 0, 0.98) 100%
	);

	border-top: 2px solid transparent;
}

.footer nav ul {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.footer nav ul li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 15px;
}

.footer nav ul li a:hover {
	color: var(--pinup-red);
	text-shadow: 0 0 10px rgba(233, 24, 58, 0.8);
}

.footer .copyright {
	font-size: 13px;
	text-align: center;
	margin-top: 30px;
	color: rgba(255, 255, 255, 0.5);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
}

/* ========================================
           RESPONSIVE
           ======================================== */
@media (max-width: 768px) {
	h1 {
		margin: 25px 0;
		font-size: 32px;
	}

	h2 {
		font-size: 26px;
		margin: 20px 0 15px 0;
	}

	h3 {
		font-size: 22px;
		margin: 15px 0 10px 0;
	}

	.container {
		max-width: 100%;
		padding: 0 15px;
	}

	.header .container {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.banner-content {
		padding: 40px 15px;
	}

	.header .logo-icon {
		width: 100px;
	}

	.header .auth {
		gap: 10px;
	}

	.btn {
		padding: 12px 24px;
		font-size: 14px;
	}

	.main {
		padding: 20px 0 40px;
	}

	.main nav ul {
		gap: 8px;
		font-size: 13px;
	}

	.main nav ul li a {
		padding: 10px 18px;
		font-size: 13px;
	}

	.main__col {
		padding: 40px 15px;
	}

	.main__col p {
		font-size: 18px;
	}

	.main__col .wrapper {
		max-width: 100%;
	}

	.main__btn {
		width: 100%;
		max-width: 250px;
	}

	.main .content {
		padding: 40px 0 0 0;
	}

	.main .content article {
		padding: 25px 15px;
	}

	.main .content img {
		max-width: 100%;
	}

	table {
		font-size: 13px;
	}

	table tr td,
	table tr th {
		padding: 12px 8px;
	}

	.footer nav ul {
		font-size: 13px;
	}
	.bonus-banner__badge {
		margin: 0 auto 20px auto;
		display: block;
		width: fit-content;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 26px;
	}

	h2 {
		font-size: 22px;
	}

	h3 {
		font-size: 18px;
	}

	.header .logo-text {
		font-size: 24px;
	}

	.header .logo-icon {
		font-size: 32px;
	}

	.main nav ul li a {
		padding: 8px 12px;
		font-size: 12px;
	}
}
