/* Font declarations */
@font-face {
	font-family: 'Poppins';
	src: url('fonts/Poppins-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Poppins';
	src: url('fonts/Poppins-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Poppins';
	src: url('fonts/Poppins-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Poppins';
	src: url('fonts/Poppins-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', Arial, sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Poppins', Arial, sans-serif;
	background-color: #000;
	color: #fff;
	line-height: 1.6;
}

a {
	text-decoration: none;
}

.main-section {
	min-height: 100vh;
	width: 100%;
	background: url('img/main background.jpg') center/cover no-repeat;
	position: relative;
	padding: 20px;
	display: flex;
	flex-direction: column;
	border-bottom: 2px solid #FFD700;
}

.main-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 2;
}

.header img {
	height: 100px;
	width: auto;
	vertical-align: middle;
	margin-right: 10px;
}

.logo {
	display: flex;
	align-items: center;
	color: #FFD700;
	font-size: 3rem;
	font-weight: 700;
	text-shadow: 0 0 30px rgba(0, 0, 0, 1),
	0 0 40px rgba(0, 0, 0, 1),
	0 0 50px rgba(0, 0, 0, 1),
	2px 2px 4px rgba(0, 0, 0, 1),
	4px 4px 8px rgba(0, 0, 0, 1),
	6px 6px 12px rgba(0, 0, 0, 1);

}

.auth-buttons {
	display: flex;
	gap: 20px;
}

.primary-btn {
	padding: 15px 40px;
	background: linear-gradient(45deg, #FFD700, #FFA500);
	color: #000;
	text-decoration: none;
	border-radius: 25px;
	font-weight: 600;
	font-size: 1.2rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
	animation: buttonPulse 2s infinite;
	isolation: isolate;
}

@keyframes buttonPulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.3);
	}
	100% {
		transform: scale(1);
		box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
	}
}

.primary-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(45deg, #FFD700, #FFA500);
	z-index: -2;
}

.primary-btn::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	z-index: -1;
	animation: buttonGlow 1.5s linear infinite;
}

@keyframes buttonGlow {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.primary-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 80px rgba(255, 215, 0, 0.4);
}

.content-wrapper {
	position: absolute;
	left: 20px;
	top: 35%;
	width: 90%;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.main-text {
	color: #FFD700;
	line-height: 1.4;
	text-shadow: 0 0 30px rgba(0, 0, 0, 1),
	0 0 40px rgba(0, 0, 0, 1),
	0 0 50px rgba(0, 0, 0, 1),
	2px 2px 4px rgba(0, 0, 0, 1),
	4px 4px 8px rgba(0, 0, 0, 1),
	6px 6px 12px rgba(0, 0, 0, 1);
	font-weight: 500;
}

.main-text span {
	display: block;
	padding: 12px 25px;
	margin: 5px 0;
	border-radius: 10px;
	width: calc(var(--line-width) * 1%);
	font-size: 2rem;
	font-weight: 500;
}

.nav-buttons {
	display: flex;
	flex-direction: column;
	gap: 15px;
	position: absolute;
	right: 20px;
	top: 51%;
	transform: translateY(-50%);
	z-index: 2;
}

.nav-btn {
	padding: 12px 25px;
	color: #FFD700;
	text-decoration: none;
	border: 2px solid #FFD700;
	border-radius: 15px;
	font-weight: 500;
	text-shadow: 
			2px 2px 0 #000,
			-2px -2px 0 #000,
			2px -2px 0 #000,
			-2px 2px 0 #000;
	transition: all 0.3s;
	animation: glow 1.5s infinite alternate;
	text-align: center;
	min-width: 150px;
	background-color: rgba(0, 0, 0, 0.3);
	text-transform: capitalize;
}

.nav-btn:hover {
	background-color: rgba(255, 215, 0, 0.1);
	box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: rgba(255, 215, 0, 0.9);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	transition: all 0.3s;
	z-index: 1000;
}

.scroll-top img {
	width: 30px;
	height: 30px;
}

.scroll-top:hover {
	transform: scale(1.1);
	background: rgba(255, 215, 0, 1);
}

/* Additional sections styles */
.section {
	background-attachment: fixed;
	background: url('img/background other blocks.png') center/cover no-repeat fixed;
	position: relative;
	padding: 60px 20px;
	overflow: hidden;
	position: relative;
}

.section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.section-content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
	padding: 40px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease-out;
}

.section-content.visible {
	opacity: 1;
	transform: translateY(0);
}

.section-title {
	color: #FFD700;
	font-size: 2.5rem;
	text-shadow: 0 0 30px rgba(0, 0, 0, 0.95),
	0 0 60px rgba(0, 0, 0, 0.9),
	4px 4px 15px rgba(0, 0, 0, 1);

	font-weight: 700;
	margin-bottom: 30px;
}

.section-text {
	color: #FFD700;
	font-size: 1.5rem;
	margin-bottom: 10px;
	text-shadow: 0 0 30px rgba(0, 0, 0, 0.95),
	0 0 60px rgba(0, 0, 0, 0.9),
	4px 4px 15px rgba(0, 0, 0, 1);

	padding: 15px 25px;
	border-radius: 10px;
	width: fit-content;
	font-weight: 400;
}

.numbered-list {
	list-style: none;
	margin: 20px 0;
	text-align: left;
	display: inline-block;
}

.numbered-list li {
	color: #FFD700;
	font-size: 1.2rem;
	margin-bottom: 15px;
	position: relative;
	text-shadow: 0 0 30px rgba(0, 0, 0, 0.95),
	0 0 60px rgba(0, 0, 0, 0.9),
	4px 4px 15px rgba(0, 0, 0, 1);

	padding-left: 35px;
	font-weight: 400;
}

.numbered-list li::before {
	content: counter(item) ".";
	counter-increment: item;
	position: absolute;
	left: 0;
	color: #FFD700;
}

.bullet-list {
	text-align: left;
	display: inline-block;
	width: 100%;
	max-width: 600px;
	list-style: none;
}

.bullet-list li {
	color: #FFD700;
	font-size: 1.5rem;
	margin-bottom: 15px;
	padding: 15px 25px 15px 45px;
	position: relative;
	text-shadow: 0 0 30px rgba(0, 0, 0, 0.95),
	0 0 60px rgba(0, 0, 0, 0.9),
	4px 4px 15px rgba(0, 0, 0, 1);

	border-radius: 10px;
	font-weight: 400;
}

.bullet-list li::before {
	content: '•';
	position: absolute;
	left: 20px;
	color: #FFD700;
}

.vip-levels {
	margin: 0 0 40px 0;
}

.vip-level {
	color: #FFD700;
	font-size: 1.5rem;
	margin-bottom: 15px;
	text-shadow: 0 0 30px rgba(0, 0, 0, 0.95),
	0 0 60px rgba(0, 0, 0, 0.9),
	4px 4px 15px rgba(0, 0, 0, 1);

	padding: 15px 25px;
	border-radius: 10px;
	width: fit-content;
	font-weight: 400;
}

@keyframes pulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.05); }
	100% { transform: scale(1); }
}

@keyframes glow {
	from {
			box-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700, 0 0 15px #000;
	}
	to {
			box-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 25px #000;
	}
}

/* Mobile styles */
@media screen and (max-width: 1024px) {
	.logo {
		font-size: 2rem;
	}
}

@media screen and (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin-bottom: 30px;
    }

    .logo {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .auth-buttons {
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }

    .primary-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .content-wrapper {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        padding: 20px;
    }

    .main-text span {
        width: 100%;
        font-size: 1.8rem;
    }

    .nav-buttons {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .nav-btn {
        min-width: calc(50% - 10px);
        font-size: 1rem;
        padding: 10px 15px;
    }

    .main-section {
        padding: 20px;
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .section {
        padding: 40px 20px;
    }

    .section-content {
        padding: 20px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .section-text,
    .bullet-list li,
    .vip-level {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
}

/* Additional adjustments for very small screens */
@media screen and (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .auth-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .primary-btn {
        width: 100%;
        text-align: center;
    }

    .nav-btn {
        min-width: 100%;
    }

    .main-text {
        font-size: 1.1rem;
    }
}

.section-divider {
	position: relative;
	height: 60px;
	background: linear-gradient(to bottom, #000, transparent);
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.section-divider::before {
	content: '';
	position: absolute;
	width: 80%;
	height: 2px;
	background: linear-gradient(90deg, 
		transparent,
		rgba(255, 215, 0, 0.3),
		#FFD700,
		rgba(255, 215, 0, 0.3),
		transparent
	);
}

.section-divider::after {
	content: '✦';
	color: #FFD700;
	font-size: 24px;
	background: #000;
	padding: 0 20px;
	position: relative;
	text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
	animation: starPulse 2s infinite;
}

@keyframes starPulse {
	0% { transform: scale(1); opacity: 0.5; }
	50% { transform: scale(1.2); opacity: 1; }
	100% { transform: scale(1); opacity: 0.5; }
}