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

body {
	font-family: "Poppins", sans-serif;
	overflow-x: hidden;
}

/* Video Background */
.video-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.video-background video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Overlay */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 0;
}

/* Main Content */
.main-content {
	position: relative;
	z-index: 1;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px;
}

.logo {
	width: 300px;
	height: auto;
	margin-bottom: 30px;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.description {
	color: white;
	max-width: 800px;
	margin-bottom: 40px;
}

.description h1 {
	font-size: 2rem;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.description p {
	font-size: 1.2rem;
	line-height: 1.6;
	margin-bottom: 15px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.cta-button {
	background: linear-gradient(45deg, #ffd700, #ffa500);
	color: #000;
	padding: 15px 40px;
	font-size: 1.2rem;
	font-weight: bold;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	overflow-y: auto;
	padding: 20px 0;
}

.modal-content {
	background-color: #000;
	margin: 0 auto;
	padding: 30px;
	border: 2px solid #ffd700;
	border-radius: 15px;
	width: 90%;
	max-width: 600px;
	position: relative;
}

.close {
	color: #ffd700;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	position: absolute;
	right: 20px;
	top: 15px;
}

.close:hover {
	color: #ffa500;
}

.modal h2 {
	color: #ffd700;
	text-align: center;
	margin-bottom: 30px;
	font-size: 1.5rem;
}

.form-section {
	margin-bottom: 30px;
}

.form-section h3 {
	color: #ffd700;
	margin-bottom: 20px;
	font-size: 1.3rem;
	border-bottom: 2px solid #ffd700;
	padding-bottom: 10px;
}

.form-group {
	margin-bottom: 20px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	color: white;
	margin-bottom: 8px;
	font-weight: bold;
}

.form-group input {
	width: 100%;
	padding: 12px;
	border: 2px solid #333;
	border-radius: 8px;
	background-color: #222;
	color: white;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus {
	outline: none;
	border-color: #ffd700;
}

/* Select styles */
.form-group select {
	width: 100%;
	padding: 12px;
	border: 2px solid #333;
	border-radius: 8px;
	background-color: #222;
	color: white;
	font-size: 1rem;
	transition: border-color 0.3s ease;
	cursor: pointer;
}

.form-group select:focus {
	outline: none;
	border-color: #ffd700;
}

.form-group option {
	background-color: #222;
	color: white;
}

/* Loading indicator */
.loading {
	text-align: center;
	color: #ffd700;
	padding: 20px;
}

.loading::after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid #ffd700;
	border-radius: 50%;
	border-top-color: transparent;
	animation: spin 1s linear infinite;
	margin-left: 10px;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.prizes-section {
	margin-top: 30px;
}

.prizes-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
	margin-top: 20px;
}

.prize-option {
	display: flex;
	align-items: center;
	background-color: #111;
	padding: 15px;
	border-radius: 8px;
	border: 2px solid #333;
	transition: all 0.3s ease;
}

.prize-name {
	display: block;
	color: #ffd700;
	font-weight: bold;
}

.prize-detail {
	color: #aaa;
	font-size: 0.875rem;
	margin-top: 5px;
}

.prize-option:hover {
	border-color: #ffd700;
	background-color: #222;
}

.prize-option input[type="checkbox"] {
	margin-right: 12px;
	transform: scale(1.2);
	accent-color: #ffd700;
}

.prize-option label {
	color: white;
	cursor: pointer;
	margin: 0;
}

.submit-button {
	width: 100%;
	background: linear-gradient(45deg, #ffd700, #ffa500);
	color: #000;
	padding: 15px;
	font-size: 1.2rem;
	font-weight: bold;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
}

.submit-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Notification Modals */
.notification-modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-color: #222;
	border-radius: 10px;
	padding: 20px 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
	max-width: 90%;
	min-width: 300px;
	text-align: center;
}

.notification-modal.success {
	border: 2px solid #4caf50;
	background: linear-gradient(135deg, #1e4e1e, #2d5a2d);
}

.notification-modal.error {
	border: 2px solid #f44336;
	background: linear-gradient(135deg, #4e1e1e, #5a2d2d);
}

.notification-content {
	color: white;
	font-size: 1rem;
	line-height: 1.4;
	margin-bottom: 15px;
}

.notification-modal.success .notification-content {
	color: #90ee90;
}

.notification-modal.error .notification-content {
	color: #ff6b6b;
}

.notification-icon {
	font-size: 2rem;
	margin-bottom: 10px;
	display: block;
}

.notification-modal.success .notification-icon {
	color: #4caf50;
}

.notification-modal.error .notification-icon {
	color: #f44336;
}

.notification-close {
	font-family: "Poppins", sans-serif;
	border: none;
	color: white;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.notification-close.success-btn {
	background-color: #4caf50;
}

.notification-close.success-btn:hover {
	background-color: #45a049;
	transform: translateY(-1px);
}

.notification-close.error-btn {
	background-color: #f44336;
}

.notification-close.error-btn:hover {
	background-color: #da190b;
	transform: translateY(-1px);
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideIn {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.description h1 {
		font-size: 2rem;
	}

	.description p {
		font-size: 1rem;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.modal-content {
		margin: 5% auto;
		padding: 20px;
	}

	.prizes-grid {
		grid-template-columns: 1fr;
	}

	.logo {
		width: 200px;
	}

	.modal {
		padding: 10px 0;
	}

	.modal-content {
		width: 95%;
		padding: 20px;
	}

	.notification-modal {
		min-width: 280px;
		max-width: 85%;
		padding: 15px 20px;
	}

	.notification-content {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.main-content {
		padding: 15px;
	}

	.cta-button {
		padding: 12px 30px;
		font-size: 1rem;
	}

	.modal-content {
		width: 95%;
		padding: 15px;
	}

	.notification-modal {
		min-width: 250px;
		padding: 12px 15px;
	}

	.notification-content {
		font-size: 0.85rem;
	}

	.notification-icon {
		font-size: 1.5rem;
	}
}

/* Progress Indicator */
.progress-indicator {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
	padding: 0 20px;
}

.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 0.5;
	transition: opacity 0.3s ease;
}

.step.active {
	opacity: 1;
}

.step-number {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #333;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	margin-bottom: 8px;
	transition: background-color 0.3s ease;
}

.step.active .step-number {
	background-color: #ffd700;
	color: #000;
}

.step-label {
	color: white;
	font-size: 0.9rem;
	text-align: center;
}

.step-line {
	width: 100px;
	height: 2px;
	background-color: #333;
	margin: 0 20px;
}

/* Form Navigation */
.form-navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
	gap: 15px;
}

.nav-button {
	padding: 12px 30px;
	font-size: 1rem;
	font-weight: bold;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	flex: 1;
}

.next-button,
.submit-button {
	background: linear-gradient(45deg, #ffd700, #ffa500);
	color: #000;
}

.back-button {
	background-color: #333;
	color: white;
	border: 2px solid #555;
}

.nav-button:hover {
	transform: translateY(-2px);
}

.next-button:hover,
.submit-button:hover {
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.back-button:hover {
	background-color: #444;
	border-color: #666;
}

/* Hidden sections */
.hidden {
	display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.progress-indicator {
		padding: 0 10px;
	}

	.step-line {
		width: 60px;
		margin: 0 10px;
	}

	.step-label {
		font-size: 0.8rem;
	}

	.form-navigation {
		flex-direction: column;
	}

	.nav-button {
		flex: none;
	}
}

/* Form section animations */
.form-section {
	animation: slideInRight 0.3s ease;
}

.form-section.slide-out {
	animation: slideOutLeft 0.3s ease;
}

@keyframes slideInRight {
	from {
		transform: translateX(50px);
		opacity: 0;
	}

	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideOutLeft {
	from {
		transform: translateX(0);
		opacity: 1;
	}

	to {
		transform: translateX(-50px);
		opacity: 0;
	}
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.progress-indicator {
		padding: 0 10px;
	}

	.step-line {
		width: 60px;
		margin: 0 10px;
	}

	.step-label {
		font-size: 0.8rem;
	}

	.form-navigation {
		flex-direction: column;
	}

	.nav-button {
		flex: none;
	}
}
