:root {
	--color-primary: #0EA5E9;
	--color-secondary: #E0F2FE;
	--color-accent: #06B6D4;
	--color-text: #0F172A;
	--color-text-light: #475569;
	--main-gradient: linear-gradient(135deg, #0EA5E9 0%, #06B6D4 100%);
	--secondary-gradient: linear-gradient(135deg, #38BDF8 0%, #0EA5E9 100%);
}

.stellar-cosmic-theme {
	--color-primary: #0EA5E9;
	--color-secondary: #E0F2FE;
	--color-accent: #06B6D4;
	--color-text: #0F172A;
	--color-text-light: #475569;
	--main-gradient: linear-gradient(135deg, #0EA5E9 0%, #06B6D4 100%);
	--secondary-gradient: linear-gradient(135deg, #38BDF8 0%, #0EA5E9 100%);
}

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

html {
	background: #fff;
	overflow-x: hidden;
}

body {
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--color-text);
}

html.no-scroll {
	overflow: hidden;
}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

/* Header Styles */
.nebula-purple-banner {
	position: relative;
	padding: 110px 34px 48px;
	text-align: center;
	color: #fff;
	background: var(--main-gradient);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.galaxy-nav-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}

.comet-white-icon {
	position: absolute;
	top: 10px;
	right: 16px;
	cursor: pointer;
	z-index: 10;
}

.show-menu .comet-white-icon rect {
	fill: var(--color-accent);
	transition: fill 0.4s ease-in-out;
}

.show-menu header {
	display: block;
	max-height: 500px;
	padding: 110px 0 50px;
}

header {
	color: #373D48;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	line-height: 98.727%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 5;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
	padding: 0 0 0;
}

header ul li {
	list-style-type: none;
}

header ul li a {
	display: block;
	padding: 8px 0;
	transition: color 0.3s ease;
}

header ul li a:hover {
	color: var(--color-accent);
}

.aurora-background {
	height: 100%;
	width: 100%;
	max-width: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	filter: blur(2px) opacity(0.3);
}

h1 {
	font-size: 35px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 16px;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle-main {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 28px;
	color: #fff;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Main Container */
.cosmic-container {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 50px 16px;
}

.intro-section {
	text-align: center;
	margin-bottom: 60px;
}

.section-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 20px;
}

.intro-text {
	font-size: 16px;
	color: var(--color-text-light);
	line-height: 1.8;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Slider Styles */
.zodiac-slider-wrapper {
	position: relative;
	margin: 40px 0;
}

.zodiac-slider-container {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	background: var(--color-secondary);
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.zodiac-slider {
	display: flex;
	transition: transform 0.5s ease;
}

.zodiac-slide {
	min-width: 100%;
	display: none;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.zodiac-slide.active {
	display: block;
	opacity: 1;
}

.slide-content {
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: center;
}

.zodiac-image-container {
	width: 100%;
	max-width: 300px;
	height: 300px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.zodiac-image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zodiac-text-container {
	width: 100%;
	text-align: center;
}

.zodiac-name {
	font-size: 28px;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 20px;
}

.zodiac-prediction {
	font-size: 16px;
	color: var(--color-text);
	line-height: 1.8;
	padding: 0 20px;
}

/* Slider Controls */
.slider-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
}

.slider-btn {
	background: var(--color-primary);
	color: #fff;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 30px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
	background: var(--color-accent);
	transform: scale(1.1);
}

.slider-dots {
	display: flex;
	gap: 10px;
	justify-content: center;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ddd;
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background: var(--color-primary);
	transform: scale(1.2);
}

/* Form Section */
.horoscope-form-section {
	background: var(--color-secondary);
	padding: 60px 15px;
	margin-top: 40px;
}

.horoscope-form-section .cosmic-container {
	padding: 0;
}

.form-title {
	color: var(--color-primary);
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 30px;
}

.horoscope-contact-form {
	max-width: 500px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-input {
	border-radius: 50px;
	border: 2px solid var(--color-primary);
	background: #FFF;
	color: var(--color-text);
	padding: 15px 25px;
	width: 100%;
	font-size: 16px;
	font-family: "Poppins", sans-serif;
	transition: all 0.3s ease;
}

.form-input:focus {
	border-color: var(--color-accent);
	box-shadow: 0 0 10px rgba(107, 70, 193, 0.3);
}

.submit-button {
	display: flex;
	padding: 18px 0;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #FFF;
	text-align: center;
	font-weight: 700;
	font-size: 18px;
	line-height: 98.727%;
	border-radius: 50px;
	background: var(--color-primary);
	box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4);
	border: none;
	width: 100%;
	cursor: pointer;
	transition: all 0.3s ease;
}

.submit-button:hover {
	background: var(--color-accent);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(107, 70, 193, 0.5);
}

/* Footer */
footer {
	padding: 40px 0;
	color: #FFF;
	text-align: center;
	background: var(--main-gradient);
}

footer a {
	display: block;
	padding: 8px 0;
	transition: color 0.3s ease;
}

footer a:hover {
	color: var(--color-secondary);
}

footer p {
	margin-top: 20px;
	font-size: 14px;
}

/* Cookie Notice */
#hbgBDAgqmW-cookie {
	display: none;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	bottom: 15px;
	left: 50%;
	width: 100%;
	max-width: 90%;
	transform: translateX(-50%);
	padding: 15px;
	background-color: #1a1a1a;
	border-radius: 20px;
	box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.5);
	gap: 15px;
	z-index: 999999;
	font-size: 15px;
	color: #fff;
}

#hbgBDAgqmW-cookie.show {
	display: block;
}

#hbgBDAgqmW-cookie div {
	display: inline-block;
}

#hbgBDAgqmW-cookie button {
	float: right;
	border-radius: 8px;
	background: var(--color-primary);
	color: #fff;
	font-family: "Poppins", sans-serif;
	transition: all 0.3s ease;
	text-align: center;
	cursor: pointer;
	border: none;
	width: auto;
	padding: 8px 15px;
	font-size: 14px;
}

#hbgBDAgqmW-cookie button:hover {
	background: var(--color-accent);
}

/* Responsive Design */
@media (min-width: 768px) {
	.slide-content {
		flex-direction: row;
		text-align: left;
	}

	.zodiac-image-container {
		max-width: 250px;
		height: 250px;
	}

	.zodiac-text-container {
		text-align: left;
		flex: 1;
	}

	.zodiac-prediction {
		padding: 0;
	}
}

@media (min-width: 1024px) {
	body {
		font-size: 16px;
	}

	.comet-white-icon {
		display: none;
	}

	header {
		display: block;
		max-height: unset;
		background: none;
		font-size: 18px;
		color: #FFF;
		padding: 32px 0;
		position: static;
	}

	header ul {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 25px;
		font-weight: 700;
	}

	.nebula-purple-banner {
		padding: 150px 0 80px;
	}

	.nebula-purple-banner h1 {
		font-size: 60px;
		margin: 30px 0;
	}

	.subtitle-main {
		font-size: 24px;
		margin-bottom: 40px;
	}

	.aurora-background {
		filter: blur(4px) opacity(0.3);
	}

	.cosmic-container {
		padding: 80px 16px;
	}

	.section-title {
		font-size: 42px;
	}

	.intro-text {
		font-size: 18px;
	}

	.zodiac-slider-container {
		padding: 50px;
	}

	.zodiac-name {
		font-size: 36px;
	}

	.zodiac-prediction {
		font-size: 18px;
	}

	.slide-content {
		gap: 50px;
	}

	.zodiac-image-container {
		max-width: 350px;
		height: 350px;
	}

	.form-title {
		font-size: 32px;
	}

	.horoscope-contact-form {
		max-width: 600px;
	}

	.form-input {
		padding: 18px 30px;
		font-size: 18px;
	}

	.submit-button {
		padding: 20px 0;
		font-size: 20px;
	}

	footer {
		padding: 50px 0;
	}

	footer a {
		display: inline-block;
		padding: 0 15px;
	}

	footer p {
		margin-top: 30px;
		font-size: 16px;
	}
}

/* Content Page Styles */
.cosmic-content-page {
	position: relative;
	min-height: 100vh;
	padding-top: 80px;
}

.cosmic-content-page .galaxy-nav-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	background: var(--main-gradient);
	padding: 20px 0;
}

.cosmic-content-page .comet-white-icon {
	position: absolute;
	top: 15px;
	right: 20px;
	cursor: pointer;
	z-index: 15;
	width: 40px;
	height: 40px;
	transition: transform 0.3s ease;
}

.cosmic-content-page .comet-white-icon:hover {
	transform: scale(1.1);
}

.cosmic-content-page .show-menu .comet-white-icon rect {
	fill: var(--color-primary);
	transition: fill 0.3s ease;
}

.cosmic-content-page header {
	color: #373D48;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	line-height: 98.727%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 5;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
	padding: 0;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cosmic-content-page .show-menu header {
	display: block;
	max-height: 600px;
	padding: 80px 20px 40px;
	width: 100%;
	left: 0;
	right: 0;
}

.cosmic-content-page header ul {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
}

.cosmic-content-page header ul li {
	margin: 0;
	padding: 0;
	width: 100%;
}

.cosmic-content-page header ul li a {
	display: block;
	padding: 15px 20px;
	font-size: 18px;
	color: var(--color-text);
	text-decoration: none;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	width: 100%;
}

.cosmic-content-page header ul li a:hover {
	background: var(--color-secondary);
	color: var(--color-primary);
	padding-left: 30px;
}

.cosmic-content-page header ul li:last-child a {
	border-bottom: none;
}

.content-text-wrapper {
	color: var(--color-text);
	line-height: 1.8;
	padding: 20px 0;
}

.content-text-wrapper p {
	margin-bottom: 20px;
	font-size: 16px;
}

.content-text-wrapper ul {
	margin: 20px 0;
	padding-left: 30px;
}

.content-text-wrapper ul li {
	margin-bottom: 10px;
}

.content-subtitle {
	font-size: 24px;
	font-weight: 700;
	color: var(--color-primary);
	margin: 30px 0 20px;
}

.contact-content-wrapper {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-top: 30px;
}

.contact-info-box {
	background: var(--color-secondary);
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-box p {
	margin-bottom: 15px;
	font-size: 16px;
	color: var(--color-text);
}

.contact-link {
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.contact-link:hover {
	color: var(--color-accent);
}

.contact-map-box {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-map-box iframe {
	width: 100%;
	height: 450px;
	border: none;
}

@media (min-width: 1024px) {
	.cosmic-content-page {
		padding-top: 100px;
	}

	.cosmic-content-page .comet-white-icon {
		display: none;
	}

	.cosmic-content-page header {
		display: block;
		max-height: unset;
		background: none;
		font-size: 18px;
		color: #FFF;
		padding: 32px 0;
		position: static;
	}

	.cosmic-content-page header ul {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 25px;
		font-weight: 700;
	}

	.content-subtitle {
		font-size: 28px;
	}

	.content-text-wrapper p {
		font-size: 18px;
	}

	.contact-content-wrapper {
		flex-direction: row;
		align-items: flex-start;
	}

	.contact-info-box {
		flex: 1;
		max-width: 400px;
	}

	.contact-map-box {
		flex: 1;
	}
}
