/*
 * Design Base: All sizes are based on a 1512px design width from Figma
 * When converting sizes, use: (size / 1512) * 100vw or clamp() for responsive scaling
 * Example: 96px at 1512px = (96/1512)*100 = 6.35vw
 */

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

/* Preloader Styles */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	visibility: visible;
	overflow: hidden;
}

.preloader.preloader_hidden {
	animation: preloader-blast-off 1s ease-out forwards;
	pointer-events: none;
}

.preloader.preloader_hidden,
.preloader[style*="display: none"] {
	pointer-events: none;
	z-index: -1;
}

.preloader.preloader_hidden .preloader_content {
	animation: preloader-content-blast-off 1s ease-out forwards;
}

.preloader.preloader_hidden .preloader_logo {
	animation: preloader-logo-blast-off 1s ease-out forwards;
}


.preloader_content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: clamp(24px, 3.17vw, 48px);
	position: relative;
}

.preloader_logo {
	width: clamp(60px, 7.94vw, 120px);
	height: clamp(60px, 7.94vw, 120px);
	opacity: 0;
	transform: scale(0.8);
	animation: preloader-logo-appear 0.8s ease-out 0.2s forwards,
	           preloader-logo-hover 2s ease-in-out 1s infinite;
}

@media (max-width: 768px) {
	.preloader_logo {
		width: clamp(100px, 20vw, 180px);
		height: clamp(100px, 20vw, 180px);
	}
	
	.preloader_progress {
		width: clamp(280px, 60vw, 400px);
	}
}

.preloader_fast .preloader_logo {
	animation: preloader-logo-appear 0.3s ease-out 0s forwards;
}

.preloader_logo_image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 0 20px rgba(255, 187, 0, 0.5)) brightness(0) saturate(100%) invert(77%) sepia(100%) saturate(2000%) hue-rotate(0deg) brightness(1.1);
	animation: preloader-logo-glow 2s ease-in-out infinite;
}

.preloader_progress {
	width: clamp(200px, 26.46vw, 400px);
	height: 2px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 1px;
	overflow: hidden;
	opacity: 0;
	animation: preloader-progress-appear 0.5s ease-out 1s forwards;
}

.preloader_fast .preloader_progress {
	animation: preloader-progress-appear 0.2s ease-out 0.2s forwards;
}

.preloader_progress_bar {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, #FFBB00 0%, #916B00 100%);
	border-radius: 1px;
	box-shadow: 0 0 10px rgba(255, 187, 0, 0.5);
	animation: preloader-progress-fill 2s ease-out 1.2s forwards;
}

.preloader_fast .preloader_progress_bar {
	animation: preloader-progress-fill 0.5s ease-out 0.4s forwards;
}



@keyframes preloader-logo-appear {
	0% {
		opacity: 0;
		transform: scale(0.8);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes preloader-logo-glow {
	0%, 100% {
		filter: drop-shadow(0 0 20px rgba(255, 187, 0, 0.5));
	}
	50% {
		filter: drop-shadow(0 0 30px rgba(255, 187, 0, 0.8));
	}
}

@keyframes preloader-logo-hover {
	0%, 100% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-10px) scale(1.05);
	}
}

@keyframes preloader-progress-appear {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes preloader-progress-fill {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}



@keyframes preloader-blast-off {
	0% {
		transform: translateY(0);
		opacity: 1;
	}
	100% {
		transform: translateY(-100%);
		opacity: 0;
	}
}

@keyframes preloader-content-blast-off {
	0% {
		transform: translateY(0);
		opacity: 1;
	}
	100% {
		transform: translateY(-150vh);
		opacity: 0;
	}
}

@keyframes preloader-logo-blast-off {
	0% {
		transform: translateY(0) scale(1);
	}
	100% {
		transform: translateY(-150vh) scale(0.8);
		opacity: 0;
	}
}


html {
	min-height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	background-color: #000000;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

body {
	min-height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	background-color: #000000;
	line-height: 1;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	overflow-y: auto;
	position: relative;
	-webkit-overflow-scrolling: touch;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

/* Scroll Animation Classes */
.scroll-animate {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.scroll-animate-visible {
	opacity: 1;
	transform: translateY(0);
}

.scroll-animate-delay-1 {
	transition-delay: 0.1s;
}

.scroll-animate-delay-2 {
	transition-delay: 0.2s;
}

.scroll-animate-delay-3 {
	transition-delay: 0.3s;
}

.scroll-animate-delay-4 {
	transition-delay: 0.4s;
}

/* Hero Title Page Load Animation - Space Theme */
.hero_title::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 187, 0, 0.1) 50%, transparent 100%);
	opacity: 0;
	animation: hero-title-shimmer 2s ease-in-out 1.5s;
	pointer-events: none;
}

.hero_title_line1,
.hero_title_line2 {
	display: inline-block;
	opacity: 0;
	transform: translateY(20px);
	animation: hero-title-line-appear 0.8s ease-out forwards;
}

.hero_title_line1 {
	animation-delay: 0.5s;
}

.hero_title_line2 {
	animation-delay: 0.7s;
}

/* Delay hero animations until preloader finishes */
body:not(.preloader-complete) .hero_title {
	animation: none;
	opacity: 0;
}

body:not(.preloader-complete) .hero_title_line1,
body:not(.preloader-complete) .hero_title_line2 {
	animation: none;
	opacity: 0;
	transform: translateY(20px);
}

body:not(.preloader-complete) .hero_info_row {
	animation: none;
	opacity: 0;
	transform: translateY(20px);
}

body:not(.preloader-complete) .hero_buttons {
	animation: none;
	opacity: 0;
	transform: translateY(20px);
}

body.preloader-complete .hero_title {
	animation: hero-title-appear 1.2s ease-out 0.3s forwards;
}

body.preloader-complete .hero_title_line1 {
	animation: hero-title-line-appear 0.8s ease-out 0.5s forwards;
}

body.preloader-complete .hero_title_line2 {
	animation: hero-title-line-appear 0.8s ease-out 0.7s forwards;
}

body.preloader-complete .hero_info_row {
	animation: hero-info-fade-in 0.8s ease-out 1.5s forwards;
}

body.preloader-complete .hero_buttons {
	animation: hero-buttons-fade-in 0.8s ease-out 1.7s forwards;
}

.hero_title_highlight {
	position: relative;
	display: inline-block;
	text-shadow: 0 0 0 rgba(255, 187, 0, 0);
	animation: hero-title-glow 1.5s ease-out 1s forwards;
}

@keyframes hero-title-appear {
	0% {
		opacity: 0;
		filter: blur(10px);
	}
	100% {
		opacity: 1;
		filter: blur(0);
	}
}

@keyframes hero-title-line-appear {
	0% {
		opacity: 0;
		transform: translateY(20px);
		filter: blur(5px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}

@keyframes hero-title-shimmer {
	0% {
		opacity: 0;
		transform: translateX(-100%);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translateX(100%);
	}
}

@keyframes hero-title-glow {
	0% {
		text-shadow: 0 0 0 rgba(255, 187, 0, 0),
		             0 0 0 rgba(255, 187, 0, 0),
		             0 0 0 rgba(255, 187, 0, 0);
	}
	50% {
		text-shadow: 0 0 20px rgba(255, 187, 0, 0.8),
		             0 0 40px rgba(255, 187, 0, 0.6),
		             0 0 60px rgba(255, 187, 0, 0.4);
	}
	100% {
		text-shadow: 0 0 15px rgba(255, 187, 0, 0.5),
		             0 0 30px rgba(255, 187, 0, 0.3),
		             0 0 45px rgba(255, 187, 0, 0.2);
	}
}

@keyframes hero-info-fade-in {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes hero-buttons-fade-in {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

h1, h2, h3, h4, h5, h6 {
	font-weight: inherit;
	font-size: inherit;
}

a {
	display: inline-block;
	color: inherit;
	text-decoration: none;
}

/* Font Face Declarations - D-DIN */
@font-face {
	font-family: 'D-DIN';
	font-display: swap;
	src: url("../assets/fonts/D-DIN.otf") format("opentype");
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'D-DIN';
	font-display: swap;
	src: url("../assets/fonts/D-DIN-Bold.otf") format("opentype");
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: 'D-DIN';
	font-display: swap;
	src: url("../assets/fonts/D-DIN-Italic.otf") format("opentype");
	font-weight: 400;
	font-style: italic;
}
@font-face {
	font-family: 'D-DIN Condensed';
	font-display: swap;
	src: url("../assets/fonts/D-DINCondensed.otf") format("opentype");
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'D-DIN Condensed';
	font-display: swap;
	src: url("../assets/fonts/D-DINCondensed-Bold.otf") format("opentype");
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: 'D-DIN Expanded';
	font-display: swap;
	src: url("../assets/fonts/D-DINExp.otf") format("opentype");
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'D-DIN Expanded';
	font-display: swap;
	src: url("../assets/fonts/D-DINExp-Bold.otf") format("opentype");
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: 'D-DIN Expanded';
	font-display: swap;
	src: url("../assets/fonts/D-DINExp-Italic.otf") format("opentype");
	font-weight: 400;
	font-style: italic;
}

/* Base Section Styles */
.section {
	position: relative;
	width: 100%;
	box-sizing: border-box;
}

/* Header Styles */
.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background-color: transparent;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.header_sticky {
	position: fixed;
	top: 0;
	background-color: #000000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header_container {
	max-width: 1400px;
	margin: 0 auto;
	padding: clamp(16px, 1.587vw, 24px) clamp(32px, 3.175vw, 48px); /* 24px top/bottom, 48px left/right at 1512px */
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
}

.header_logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.header_logo:hover {
	opacity: 0.8;
	transform: scale(1.05);
}

.header_logo_image {
	height: clamp(16px, 1.587vw, 24px); /* 24px at 1512px */
	width: auto;
	display: block;
}

.header_nav {
	display: flex;
	align-items: center;
	gap: clamp(20px, 2.5vw, 40px);
}

.header_nav_list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: clamp(20px, 2.5vw, 40px);
	align-items: center;
}

.header_nav_item {
	margin: 0;
	padding: 0;
}

.header_nav_link {
	font-family: 'D-DIN', sans-serif;
	font-weight: 400;
	font-size: clamp(10px, 0.794vw, 12px); /* 12px at 1512px */
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.04em; /* 4% letter spacing */
	transition: color 0.3s ease, opacity 0.3s ease;
	display: block;
	position: relative;
}

.header_nav_link:hover {
	color: #FFBB00;
	opacity: 1;
}

.header_nav_link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #FFBB00;
	transition: width 0.3s ease;
}

.header_nav_link:hover::after {
	width: 100%;
}

.header_button {
	font-family: 'D-DIN', sans-serif;
	font-weight: 700;
	font-size: clamp(10px, 0.794vw, 12px); /* 12px at 1512px */
	letter-spacing: -0.02em; /* -2% letter spacing */
	color: #000000;
	background-color: #FFBB00;
	border: 1px solid #916B00;
	border-radius: 4px;
	padding: clamp(12px, 1.06vw, 16px) clamp(14px, 1.19vw, 18px); /* 16px top/bottom, 18px left/right at 1512px */
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: clamp(6px, 0.53vw, 8px); /* 8px gap at 1512px */
	transition: all 0.3s ease;
	white-space: nowrap;
}

.header_button:hover {
	background-color: #FFD700;
	border-color: #B8860B;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(255, 187, 0, 0.3);
}

.header_button:active {
	transform: translateY(0);
	box-shadow: 0 1px 4px rgba(255, 187, 0, 0.2);
}

.header_button_text {
	display: inline-block;
}

.header_button_arrow {
	display: inline-block;
	font-size: 1em;
	line-height: 1;
}

.header_mobile_toggle {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: clamp(24px, 3.17vw, 32px);
	height: clamp(24px, 3.17vw, 32px);
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 101;
	position: relative;
}

.header_mobile_toggle_line {
	width: 100%;
	height: 2px;
	background-color: #ffffff;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.header_mobile_toggle[aria-expanded="true"] .header_mobile_toggle_line:nth-child(1) {
	transform: rotate(45deg) translate(clamp(5px, 0.66vw, 8px), clamp(5px, 0.66vw, 8px));
}

.header_mobile_toggle[aria-expanded="true"] .header_mobile_toggle_line:nth-child(2) {
	opacity: 0;
}

.header_mobile_toggle[aria-expanded="true"] .header_mobile_toggle_line:nth-child(3) {
	transform: rotate(-45deg) translate(clamp(5px, 0.66vw, 8px), clamp(-5px, -0.66vw, -8px));
}

.header_mobile_toggle:hover .header_mobile_toggle_line {
	background-color: #FFBB00;
}

/* Hero Section Styles */
#hero-section {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: clamp(60px, 8vw, 120px);
	overflow: hidden;
	z-index: 1;
	margin-bottom: 0;
	padding-bottom: 0;
}

.hero_background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: hidden;
}

.hero_background::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
	z-index: 1;
}

.hero_background_image {
	width: 100%;
	height: calc(100% + 1px);
	object-fit: cover;
	object-position: center bottom;
	display: block;
}

.hero_astrodoge_image {
	position: relative;
	width: auto;
	max-width: 900px;
	height: auto;
	max-height: 90vh;
	z-index: 2;
	object-fit: contain;
	object-position: center center;
	display: block;
	margin: clamp(40px, 5vw, 80px) auto 0;
	pointer-events: none;
	animation: float-astrodoge 3s ease-in-out infinite;
}

@keyframes float-astrodoge {
	0%, 100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-15px) rotate(2deg);
	}
}

.hero_content {
	position: relative;
	z-index: 1;
	text-align: center;
	color: #ffffff;
	padding: 0 20px;
	max-width: 1200px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(16px, 1.32vw, 20px); /* 20px gap at 1512px */
	margin-top: clamp(60px, 6.5vw, 100px);
	margin-bottom: auto;
}

/* Hero Info Row */
.hero_info_row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(20px, 2.5vw, 40px);
	flex-wrap: wrap;
	opacity: 0;
	transform: translateY(20px);
}

.hero_telegram_link {
	display: flex;
	align-items: center;
	gap: clamp(6px, 0.8vw, 10px);
	font-family: 'D-DIN', sans-serif;
	font-weight: 400;
	font-size: clamp(14px, 1.19vw, 18px); /* Reduced from 20px to 18px at 1512px */
	color: #ffffff;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.hero_telegram_link:hover {
	opacity: 0.8;
}

.hero_telegram_icon {
	display: inline-block;
	width: 1em;
	height: 1em;
	vertical-align: middle;
}

.hero_telegram_text {
	display: inline-block;
}

.hero_divider {
	width: 1px;
	height: clamp(16px, 2vw, 24px);
	background-color: rgba(255, 255, 255, 0.3);
}

.hero_contract_address {
	display: flex;
	align-items: center;
	gap: clamp(8px, 1vw, 12px);
}

.hero_contract_text {
	font-family: 'D-DIN', sans-serif;
	font-weight: 400;
	font-size: clamp(14px, 1.19vw, 18px); /* Reduced from 20px to 18px at 1512px */
	color: #ffffff;
}

.hero_copy_button {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.hero_copy_button:hover {
	opacity: 0.7;
}

.hero_copy_button_copied {
	background-color: #FFBB00 !important;
	transform: scale(1.1);
	border-radius: 4px;
}

.hero_copy_button_copied .hero_copy_icon {
	filter: brightness(0);
}

.hero_copy_icon {
	width: clamp(14px, 1.2vw, 18px);
	height: clamp(14px, 1.2vw, 18px);
	display: inline-block;
	vertical-align: middle;
}

/* Hero Headline Container */
.hero_headline_container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(16px, 1.32vw, 20px); /* 20px gap at 1512px */
}

.hero_title {
	font-family: 'D-DIN', sans-serif;
	font-weight: 700;
	font-size: clamp(56px, 6.35vw, 96px); /* 96px at 1512px */
	color: #ffffff;
	line-height: 1.1;
	margin: 0;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	opacity: 0;
	position: relative;
}

.hero_title_line1 {
	display: block;
	color: #ffffff;
	white-space: nowrap;
}

.hero_title_highlight {
	color: #FFBB00;
}

.hero_title_line2 {
	display: block;
	color: #ffffff;
}

/* Hero Buttons */
.hero_buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(16px, 2vw, 24px);
	flex-wrap: wrap;
	opacity: 0;
	transform: translateY(20px);
	margin-top: clamp(24px, 2.65vw, 40px); /* 40px gap at 1512px */
}

.hero_button {
	font-family: 'D-DIN', sans-serif;
	font-weight: 700;
	font-size: clamp(12px, 0.93vw, 14px); /* Reduced from 16px to 14px at 1512px */
	letter-spacing: -0.02em; /* -2% letter spacing */
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: clamp(6px, 0.66vw, 10px); /* Reduced from 12px to 10px at 1512px */
	padding: clamp(14px, 1.19vw, 18px) clamp(18px, 1.46vw, 22px); /* Reduced: 18px top/bottom, 22px left/right at 1512px */
	border-radius: 6px;
	transition: all 0.3s ease;
	white-space: nowrap;
	cursor: pointer;
	border: 1px solid;
}

.hero_button_primary {
	background-color: #FFBB00;
	border-color: #916B00;
	color: #000000;
}

.hero_button_primary:hover {
	background-color: #FFD700;
	border-color: #B8860B;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(255, 187, 0, 0.3);
}

.hero_button_primary:active {
	transform: translateY(0);
	box-shadow: 0 1px 4px rgba(255, 187, 0, 0.2);
}

.hero_button_secondary {
	background-color: transparent;
	border-color: rgba(255, 255, 255, 0.4); /* 40% opacity */
	color: #ffffff;
}

.hero_button_secondary:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.6);
	transform: translateY(-1px);
}

.hero_button_secondary:active {
	transform: translateY(0);
}

.hero_button_text {
	display: inline-block;
}

.hero_button_arrow {
	display: inline-block;
	font-size: 1em;
	line-height: 1;
}

.hero_button_icon {
	display: inline-block;
	width: 1em;
	height: 1em;
	vertical-align: middle;
}

/* Stats Section Styles */
#stats-section {
	position: relative;
	width: 100%;
	background-color: #000000;
	padding: clamp(48px, 4.23vw, 64px) clamp(20px, 2.5vw, 40px); /* 64px top/bottom at 1512px */
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.stats_container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(64px, 6.35vw, 96px); /* 96px gap at 1512px */
	flex-wrap: wrap;
	max-width: 1400px;
	width: 100%;
}

.stats_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.stats_stat {
	font-family: 'D-DIN', sans-serif;
	font-weight: 400;
	font-size: clamp(80px, 8.47vw, 128px); /* 128px at 1512px */
	color: #ffffff;
	line-height: 1;
	margin-bottom: clamp(8px, 0.8vw, 12px);
}

.stats_unit {
	font-family: 'D-DIN', sans-serif;
	font-weight: 400;
	font-size: clamp(14px, 1.19vw, 18px); /* 18px at 1512px */
	color: rgba(255, 187, 0, 0.6); /* #FFBB00 at 60% opacity */
	line-height: 1;
	text-transform: uppercase;
}

/* Mission Section Styles */
#mission-section {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	z-index: 1;
}

.mission_container {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(40px, 5vw, 80px);
	max-width: 1400px;
	width: 100%;
	padding: clamp(60px, 6vw, 100px) clamp(48px, 6.35vw, 96px);
	box-sizing: border-box;
}

.mission_content {
	flex: 0 1 50%;
	max-width: 600px;
	color: #ffffff;
}

.mission_label {
	font-family: 'D-DIN', sans-serif;
	font-weight: 400;
	font-size: clamp(14px, 1.19vw, 18px);
	color: #FFBB00;
	text-transform: uppercase;
	letter-spacing: clamp(2px, 0.2vw, 4px);
	margin-bottom: clamp(16px, 1.59vw, 24px);
}

.mission_title {
	font-family: 'D-DIN', sans-serif;
	font-weight: 700;
	font-size: clamp(40px, 5.3vw, 80px);
	color: #ffffff;
	line-height: 1.1;
	margin: 0 0 clamp(24px, 2.65vw, 40px) 0;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
}

.mission_title_line1 {
	display: block;
	color: #ffffff;
}

.mission_title_line2 {
	display: block;
	color: #FFBB00;
}

.mission_text {
	font-family: 'D-DIN', sans-serif;
	font-weight: 400;
	font-size: clamp(16px, 1.59vw, 24px);
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
}

.mission_text p {
	margin: 0 0 clamp(16px, 1.59vw, 24px) 0;
}

.mission_text p:last-child {
	margin-bottom: 0;
}

.mission_illustration {
	flex: 0 1 50%;
	max-width: 600px;
	position: relative;
	height: 100%;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
}

.mission_moon_container {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
	pointer-events: none;
}

.mission_moon_image {
	height: clamp(400px, 48.9vw, 739px);
	width: auto;
	display: block;
}

.mission_satellite_container {
	position: absolute;
	bottom: clamp(200px, 24.45vw, 369.5px);
	right: clamp(150px, 18.35vw, 277px);
	width: clamp(180px, 22vw, 333px);
	height: clamp(180px, 22vw, 333px);
	transform-origin: bottom right;
	animation: float-satellite 3s ease-in-out infinite;
	z-index: 2;
	pointer-events: none;
}

.mission_satellite_image {
	width: 100%;
	height: auto;
	display: block;
}

@keyframes float-satellite {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(clamp(-15px, -1.83vw, -28px));
	}
}

@keyframes float-astrodoge {
	0%, 100% {
		transform: translateY(0) rotate(-15deg);
	}
	50% {
		transform: translateY(20px) rotate(-15deg);
	}
}

.mission_astrodoge_container {
	position: absolute;
	bottom: clamp(-50px, -6vw, -80px);
	right: clamp(48px, 6.35vw, 96px);
	z-index: 3;
	pointer-events: none;
}

.mission_astrodoge_image {
	animation: float-astrodoge 4s ease-in-out infinite;
	transform-origin: center center;
	height: clamp(200px, 24.45vw, 369.5px);
	width: auto;
	display: block;
}

/* How To Buy Section Styles */
#how-to-buy-section {
	position: relative;
	width: 100%;
	background-color: #000000;
	padding: clamp(64px, 6.35vw, 96px);
	box-sizing: border-box;
}

.how-to-buy_container {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: clamp(32px, 3.17vw, 48px);
}

.how-to-buy_row {
	display: flex;
	width: 100%;
}

.how-to-buy_heading_row {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: clamp(40px, 5vw, 80px);
}

.how-to-buy_heading_column {
	display: flex;
	flex-direction: column;
	flex: 0 1 auto;
}

.how-to-buy_eyebrow {
	font-family: 'D-DIN', sans-serif;
	font-weight: 400;
	font-size: clamp(14px, 1.19vw, 18px);
	color: #FFBB00;
	text-transform: uppercase;
	letter-spacing: clamp(2px, 0.2vw, 4px);
	margin-bottom: clamp(16px, 1.59vw, 24px);
}

.how-to-buy_title {
	font-family: 'D-DIN', sans-serif;
	font-weight: 700;
	font-size: clamp(48px, 6.35vw, 96px);
	color: #ffffff;
	text-transform: uppercase;
	margin: 0;
	line-height: 1.1;
}

.how-to-buy_title_highlight {
	color: #FFBB00;
}

.how-to-buy_description {
	font-family: 'D-DIN', sans-serif;
	font-weight: 400;
	font-size: clamp(16px, 1.59vw, 24px);
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	flex: 0 1 50%;
	max-width: 600px;
	margin: 0;
	padding-bottom: clamp(14px, 1.19vw, 18px);
}

.how-to-buy_timeline_row {
	position: relative;
	width: 100%;
	margin-top: clamp(32px, 3.17vw, 48px);
	margin-bottom: clamp(32px, 3.17vw, 48px);
}

.how-to-buy_timeline {
	position: relative;
	width: 100%;
	height: clamp(80px, 8vw, 120px);
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.how-to-buy_timeline_line {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background-color: rgba(255, 187, 0, 0.25);
	transform: translateY(-50%);
	z-index: 1;
	overflow: hidden;
}

.how-to-buy_timeline_progress {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background-color: #FFBB00;
	width: 0%;
	transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}

.how-to-buy_timeline_steps {
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	z-index: 2;
}

.how-to-buy_timeline_step {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	position: relative;
	width: clamp(200px, 19.2vw, 290px);
	height: 100%;
}

.how-to-buy_timeline_number {
	font-family: 'D-DIN', sans-serif;
	font-weight: 700;
	font-size: clamp(24px, 3.17vw, 48px);
	color: rgba(255, 187, 0, 0.3);
	position: absolute;
	bottom: 50%;
	left: 0;
	z-index: 2;
	line-height: 1;
	margin-bottom: clamp(24px, 3.17vw, 48px);
	transition: color 0.3s ease;
}

.how-to-buy_timeline_step.active .how-to-buy_timeline_number {
	color: #FFBB00;
}

.how-to-buy_timeline_marker {
	width: clamp(12px, 1.59vw, 24px);
	height: clamp(12px, 1.59vw, 24px);
	border-radius: 50%;
	background-color: #4A3D00;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 3;
	box-sizing: border-box;
	transition: background-color 0.3s ease, transform 0.3s ease;
	border: 2px solid transparent;
}

.how-to-buy_timeline_step.active .how-to-buy_timeline_marker {
	background-color: #FFBB00;
	transform: translateY(-50%) scale(1.2);
	border-color: #000000;
}

.how-to-buy_cards_row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(32px, 4vw, 60px);
	align-items: start;
}

.how-to-buy_card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	width: clamp(200px, 19.2vw, 290px);
	opacity: 0.4;
	transition: opacity 0.3s ease;
	cursor: pointer;
}

.how-to-buy_card:hover,
.how-to-buy_card.active {
	opacity: 1;
}

.how-to-buy_card_image {
	width: 100%;
	height: clamp(200px, 20vw, 300px);
	margin-bottom: clamp(20px, 2.12vw, 32px);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	border: 2px solid transparent;
	transition: border-color 0.3s ease;
}

.how-to-buy_card:hover .how-to-buy_card_image,
.how-to-buy_card.active .how-to-buy_card_image {
	border-color: #FFBB00;
}

.how-to-buy_card_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 0.3s ease;
}

.how-to-buy_card_image_default {
	opacity: 1;
	filter: grayscale(100%) brightness(0.5);
	transition: opacity 0.3s ease, filter 0.3s ease;
}

.how-to-buy_card_image_colorized {
	opacity: 0;
	filter: none;
	transition: opacity 0.3s ease;
}

.how-to-buy_card:hover .how-to-buy_card_image_default,
.how-to-buy_card.active .how-to-buy_card_image_default {
	filter: grayscale(0%) brightness(1);
	opacity: 0;
}

.how-to-buy_card:hover .how-to-buy_card_image_colorized,
.how-to-buy_card.active .how-to-buy_card_image_colorized {
	opacity: 1;
	display: block !important;
}

.how-to-buy_card_title {
	font-family: 'D-DIN', sans-serif;
	font-weight: 700;
	font-size: clamp(18px, 2.12vw, 32px);
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	margin: 0 0 clamp(12px, 1.32vw, 20px) 0;
	text-align: left;
	transition: color 0.3s ease;
}

.how-to-buy_card:hover .how-to-buy_card_title,
.how-to-buy_card.active .how-to-buy_card_title {
	color: #FFBB00;
}

.how-to-buy_card_text {
	font-family: 'D-DIN', sans-serif;
	font-weight: 400;
	font-size: clamp(14px, 1.32vw, 20px);
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin: 0;
	text-align: left;
}

/* How To Buy Section - Responsive */
@media (max-width: 1200px) {
	.how-to-buy_heading_row {
		flex-direction: column;
		gap: clamp(24px, 2.65vw, 40px);
	}
	
	.how-to-buy_description {
		flex: 1 1 100%;
		max-width: 100%;
	}
	
	.how-to-buy_cards_row {
		grid-template-columns: repeat(2, 1fr);
		gap: clamp(40px, 5vw, 60px);
	}
	
	.how-to-buy_card {
		width: 100%;
	}
}

@media (max-width: 768px) {
	#how-to-buy-section {
		padding: clamp(48px, 6.35vw, 64px) clamp(20px, 4vw, 32px);
	}
	
	.how-to-buy_container {
		display: grid;
		grid-template-columns: clamp(80px, 16vw, 140px) 1fr;
		grid-template-rows: auto auto;
		gap: clamp(24px, 3.17vw, 32px);
		column-gap: clamp(32px, 5vw, 48px);
		width: 100%;
		max-width: 100%;
	}
	
	.how-to-buy_heading_row {
		grid-column: 1 / -1;
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
		width: 100%;
	}
	
	.how-to-buy_heading_column {
		width: 100%;
		text-align: left;
	}
	
	.how-to-buy_description {
		text-align: left;
		width: 100%;
		max-width: 100%;
	}
	
	/* Timeline on the left */
	.how-to-buy_timeline_row {
		grid-column: 1;
		grid-row: 2;
		margin-top: clamp(40px, 5vw, 60px);
		margin-bottom: 0;
		display: flex;
		align-items: stretch;
		width: 100%;
		height: 100%;
	}
	
	.how-to-buy_timeline {
		height: 100%;
		flex-direction: row;
		align-items: stretch;
		justify-content: flex-start;
		position: relative;
		width: 100%;
	}
	
	.how-to-buy_timeline_line {
		top: 0;
		left: clamp(30px, 6vw, 60px);
		right: auto;
		width: 1px;
		height: 100%;
		background-color: rgba(255, 187, 0, 0.25);
		transform: none;
		z-index: 1;
	}
	
	.how-to-buy_timeline_progress {
		top: 0;
		left: clamp(30px, 6vw, 60px);
		width: 1px;
		height: 0%;
		background-color: #FFBB00;
		transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		z-index: 1;
	}
	
	.how-to-buy_timeline_steps {
		display: block;
		width: 100%;
		height: 100%;
		padding-top: 0;
		padding-bottom: 0;
		padding-left: 0;
		position: relative;
	}
	
	.how-to-buy_timeline_step {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		position: absolute;
		width: 100%;
		height: auto;
		transform: translateY(-50%);
	}
	
	.how-to-buy_timeline_number {
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		bottom: auto;
		margin-bottom: 0;
		font-size: clamp(16px, 3.5vw, 24px);
		z-index: 2;
		line-height: 1;
		width: clamp(30px, 6vw, 60px);
		text-align: center;
	}
	
	.how-to-buy_timeline_marker {
		position: absolute;
		left: clamp(30px, 6vw, 60px);
		top: 50%;
		transform: translate(-50%, -50%);
		width: clamp(12px, 2.5vw, 18px);
		height: clamp(12px, 2.5vw, 18px);
		z-index: 3;
	}
	
	/* Cards on the right */
	.how-to-buy_cards_row {
		grid-column: 2;
		grid-row: 2;
		display: flex;
		flex-direction: column;
		gap: clamp(32px, 4vw, 48px);
		margin-top: clamp(40px, 5vw, 60px);
		width: 100%;
		align-items: stretch;
	}
	
	.how-to-buy_card {
		width: 100%;
	}
	
	.how-to-buy_card_image {
		height: clamp(180px, 22vw, 280px);
	}
	
	.how-to-buy_card_image img {
		object-fit: contain;
		width: 90%;
		height: 90%;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

/* Footer Section Styles */
#footer-section {
	position: relative;
	width: 100%;
	background-color: #000000;
	padding: clamp(80px, 8vw, 120px) clamp(48px, 6.35vw, 96px);
	box-sizing: border-box;
}

.footer_container {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: clamp(60px, 6vw, 90px);
}

.footer_column {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.footer_logo_column {
	flex: 0 1 auto;
}

.footer_right_group {
	display: flex;
	gap: clamp(64px, 6.35vw, 96px);
	align-items: flex-start;
}

.footer_logo {
	margin-bottom: clamp(16px, 1.59vw, 24px);
}

.footer_logo_image {
	height: clamp(16px, 1.59vw, 24px);
	width: auto;
	display: block;
}

.footer_copyright {
	font-family: 'D-DIN', sans-serif;
	font-weight: 400;
	font-size: clamp(14px, 1.19vw, 18px);
	color: rgba(255, 255, 255, 0.8);
}

.footer_heading {
	font-family: 'D-DIN', sans-serif;
	font-weight: 700;
	font-size: clamp(18px, 2.12vw, 32px);
	color: #ffffff;
	text-transform: uppercase;
	margin: 0 0 clamp(20px, 2.12vw, 32px) 0;
}

.footer_links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(12px, 1.32vw, 20px) clamp(24px, 3.17vw, 48px);
	column-gap: clamp(24px, 3.17vw, 48px);
}

.footer_socials {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: clamp(12px, 1.32vw, 20px);
}

.footer_link_item,
.footer_social_item {
	margin: 0;
	padding: 0;
}

.footer_link {
	font-family: 'D-DIN', sans-serif;
	font-weight: 400;
	font-size: clamp(14px, 1.32vw, 20px);
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer_link:hover {
	color: #FFBB00;
}

.footer_social_link {
	display: flex;
	align-items: center;
	gap: clamp(8px, 0.79vw, 12px);
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.footer_social_link:hover {
	opacity: 0.8;
}

.footer_social_icon {
	width: clamp(16px, 1.59vw, 24px);
	height: clamp(16px, 1.59vw, 24px);
	display: block;
}

.footer_social_text {
	font-family: 'D-DIN', sans-serif;
	font-weight: 400;
	font-size: clamp(14px, 1.32vw, 20px);
	color: rgba(255, 255, 255, 0.8);
}

/* Footer Section - Responsive */
@media (max-width: 1200px) {
	.footer_container {
		flex-direction: column;
		gap: clamp(40px, 5vw, 60px);
	}
	
	.footer_right_group {
		width: 100%;
		justify-content: flex-start;
	}
}

@media (max-width: 768px) {
	#footer-section {
		padding: clamp(48px, 6vw, 64px) clamp(24px, 3.17vw, 48px);
	}
	
	.footer_container {
		flex-direction: column;
		gap: clamp(32px, 4vw, 48px);
		align-items: center;
		text-align: center;
	}
	
	.footer_logo_column {
		width: 100%;
		align-items: center;
		text-align: center;
	}
	
	.footer_right_group {
		flex-direction: column;
		width: 100%;
		gap: clamp(32px, 4vw, 48px);
		align-items: center;
	}
	
	.footer_links_column,
	.footer_socials_column {
		width: 100%;
		align-items: center;
		text-align: center;
	}
	
	.footer_links {
		grid-template-columns: 1fr;
		gap: clamp(12px, 1.5vw, 20px);
		justify-items: center;
	}
	
	.footer_heading {
		font-size: clamp(16px, 2vw, 24px);
		margin-bottom: clamp(16px, 2vw, 24px);
		text-align: center;
	}
	
	.footer_link,
	.footer_social_text {
		font-size: clamp(14px, 1.8vw, 18px);
	}
	
	.footer_socials {
		align-items: center;
	}
	
	.footer_social_link {
		justify-content: center;
	}
	
	.footer_copyright {
		font-size: clamp(12px, 1.5vw, 16px);
		text-align: center;
	}
}

/* Elon Musk Section Styles */
#elon-musk-section {
	position: relative;
	width: 100%;
	background-color: #000000;
	padding: clamp(80px, 8vw, 120px) clamp(48px, 6.35vw, 96px);
	box-sizing: border-box;
}

.elon_container {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(60px, 6vw, 90px);
}

.elon_content {
	flex: 0 1 50%;
	max-width: 600px;
	color: #ffffff;
}

.elon_eyebrow {
	font-family: 'D-DIN', sans-serif;
	font-weight: 400;
	font-size: clamp(14px, 1.19vw, 18px);
	color: #FFBB00;
	text-transform: uppercase;
	letter-spacing: clamp(2px, 0.2vw, 4px);
	margin-bottom: clamp(16px, 1.59vw, 24px);
}

.elon_title {
	font-family: 'D-DIN', sans-serif;
	font-weight: 700;
	font-size: clamp(48px, 6.35vw, 96px);
	color: #ffffff;
	text-transform: uppercase;
	margin: 0 0 clamp(24px, 2.65vw, 40px) 0;
	line-height: 1.1;
}

.elon_title_highlight {
	color: #FFBB00;
	position: relative;
	display: inline-block;
	cursor: pointer;
}

.elon_musk_trigger {
	position: relative;
}

.elon_popup {
	position: absolute;
	bottom: 0;
	left: 100%;
	transform: translateX(-10px);
	margin-left: clamp(16px, 1.59vw, 24px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	z-index: 10;
	display: block;
	width: clamp(200px, 21.16vw, 320px);
}

.elon_musk_trigger:hover .elon_popup {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

.elon_popup_image {
	width: 100%;
	height: auto;
	border-radius: 8px;
	border: 2px solid #FFBB00;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
	background-color: #000000;
	display: block;
	object-fit: cover;
}

.elon_text {
	font-family: 'D-DIN', sans-serif;
	font-weight: 400;
	font-size: clamp(16px, 1.59vw, 24px);
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	margin: 0 0 clamp(32px, 3.17vw, 48px) 0;
}

.elon_button {
	display: inline-flex;
	align-items: center;
	gap: clamp(8px, 0.79vw, 12px);
	padding: clamp(18px, 1.59vw, 24px) clamp(22px, 1.85vw, 28px);
	background-color: #FFBB00;
	border: 1px solid #916B00;
	border-radius: 6px;
	text-decoration: none;
	transition: opacity 0.3s ease;
	font-family: 'D-DIN', sans-serif;
	font-weight: 700;
	font-size: clamp(14px, 1.19vw, 18px);
	color: #000000;
	letter-spacing: -0.02em;
}

.elon_button:hover {
	opacity: 0.9;
}

.elon_button_text {
	display: inline-block;
}

.elon_button_arrow {
	display: inline-block;
	font-size: clamp(14px, 1.19vw, 18px);
}

.elon_tweets {
	flex: 0 1 50%;
	max-width: 600px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.elon_tweet {
	width: 100%;
	min-height: 200px;
	overflow: hidden;
	position: relative;
}

.elon_tweet blockquote {
	margin: 0;
	padding: 0;
}

/* Attempt to darken and desaturate Twitter embed using filters - limited effectiveness */
.elon_tweet iframe {
	filter: brightness(0.7) contrast(1.3) grayscale(0.8) saturate(0.3);
	transition: filter 0.3s ease;
}

.elon_tweet:hover iframe {
	filter: brightness(0.8) contrast(1.2) grayscale(0.7) saturate(0.4);
}

/* Elon Musk Section - Responsive */
@media (max-width: 1200px) {
	.elon_container {
		flex-direction: column;
		gap: clamp(40px, 5vw, 60px);
	}
	
	.elon_content,
	.elon_tweets {
		flex: 1 1 100%;
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	#elon-musk-section {
		padding: clamp(60px, 8vw, 80px) clamp(24px, 3.17vw, 48px);
	}
	
	.elon_container {
		gap: clamp(32px, 4vw, 48px);
		flex-direction: column;
		display: flex;
	}
	
	.elon_content {
		display: contents;
	}
	
	.elon_eyebrow,
	.elon_title,
	.elon_text {
		order: 1;
		width: 100%;
	}
	
	.elon_tweets {
		order: 2;
	}
	
	.elon_button {
		order: 3;
		align-self: center;
		margin: clamp(32px, 4vw, 48px) auto 0;
		width: auto;
	}
}

/* Specs Section Styles */
#specs-section {
	position: relative;
	width: 100%;
	background-color: #000000;
	padding: clamp(80px, 8vw, 120px) clamp(48px, 6.35vw, 96px);
	box-sizing: border-box;
}

.specs_container {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
}

.specs_header {
	text-align: center;
	margin-bottom: clamp(60px, 6vw, 90px);
}

.specs_eyebrow {
	font-family: 'D-DIN', sans-serif;
	font-weight: 400;
	font-size: clamp(14px, 1.19vw, 18px);
	color: #FFBB00;
	text-transform: uppercase;
	letter-spacing: clamp(2px, 0.2vw, 4px);
	margin-bottom: clamp(16px, 1.59vw, 24px);
}

.specs_title {
	font-family: 'D-DIN', sans-serif;
	font-weight: 700;
	font-size: clamp(48px, 6.35vw, 96px);
	color: #ffffff;
	text-transform: uppercase;
	margin: 0 0 clamp(24px, 2.65vw, 40px) 0;
	line-height: 1.1;
}

.specs_title_highlight {
	color: #FFBB00;
}

.specs_description {
	font-family: 'D-DIN', sans-serif;
	font-weight: 400;
	font-size: clamp(16px, 1.59vw, 24px);
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	max-width: 800px;
	margin: 0 auto;
}

.specs_sections {
	display: flex;
	flex-direction: column;
	gap: clamp(60px, 6vw, 90px);
}

.specs_section {
	display: flex;
	flex-direction: column;
	gap: clamp(24px, 2.65vw, 40px);
}

.specs_section_title {
	font-family: 'D-DIN', sans-serif;
	font-weight: 700;
	font-size: clamp(24px, 3.17vw, 48px);
	color: #FFBB00;
	text-transform: uppercase;
	margin: 0 0 clamp(24px, 2.65vw, 40px) 0;
}

.specs_cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(32px, 4vw, 60px);
	align-items: start;
}

.specs_card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.specs_card_image {
	width: 100%;
	height: clamp(200px, 20vw, 300px);
	margin-bottom: clamp(20px, 2.12vw, 32px);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
	cursor: pointer;
}

.specs_card_image img,
.specs_card_image video {
	width: 100%;
	height: 100%;
	object-fit: contain;
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 0.3s ease;
}

.specs_image_static {
	opacity: 1;
	z-index: 1;
}

.specs_image_video {
	opacity: 0;
	z-index: 2;
	pointer-events: none;
}

.specs_card_image:hover .specs_image_static {
	opacity: 0;
}

.specs_card_image:hover .specs_image_video {
	opacity: 1;
}

/* Mobile: Show video when playing */
.specs_card_image.specs_video_playing .specs_image_static {
	opacity: 0;
}

.specs_card_image.specs_video_playing .specs_image_video {
	opacity: 1;
	pointer-events: auto;
}

.specs_card_title {
	font-family: 'D-DIN', sans-serif;
	font-weight: 700;
	font-size: clamp(18px, 2.12vw, 32px);
	color: #ffffff;
	text-transform: uppercase;
	margin: 0 0 clamp(12px, 1.32vw, 20px) 0;
}

.specs_card_text {
	font-family: 'D-DIN', sans-serif;
	font-weight: 400;
	font-size: clamp(14px, 1.32vw, 20px);
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin: 0;
}

.specs_factors {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(32px, 4vw, 60px);
}

.specs_factor {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.specs_factor_image {
	width: 100%;
	height: clamp(150px, 15vw, 225px);
	margin-bottom: clamp(16px, 1.59vw, 24px);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	position: relative;
	cursor: pointer;
}

.specs_factor_image img,
.specs_factor_image video {
	width: auto;
	max-width: 100%;
	height: 100%;
	object-fit: contain;
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 0.3s ease;
}

.specs_factor_image .specs_image_static {
	opacity: 1;
	z-index: 1;
}

.specs_factor_image .specs_image_video {
	opacity: 0;
	z-index: 2;
	pointer-events: none;
}

.specs_factor_image:hover .specs_image_static {
	opacity: 0;
}

.specs_factor_image:hover .specs_image_video {
	opacity: 1;
}

/* Mobile: Show video when playing */
.specs_factor_image.specs_video_playing .specs_image_static {
	opacity: 0;
}

.specs_factor_image.specs_video_playing .specs_image_video {
	opacity: 1;
	pointer-events: auto;
}

.specs_factor_title {
	font-family: 'D-DIN', sans-serif;
	font-weight: 700;
	font-size: clamp(16px, 1.85vw, 28px);
	color: #ffffff;
	text-transform: uppercase;
	margin: 0 0 clamp(12px, 1.32vw, 20px) 0;
}

.specs_factor_text {
	font-family: 'D-DIN', sans-serif;
	font-weight: 400;
	font-size: clamp(14px, 1.32vw, 20px);
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin: 0;
}

/* Specs Section - Responsive */
@media (max-width: 1200px) {
	.specs_cards {
		grid-template-columns: 1fr;
		gap: clamp(40px, 5vw, 60px);
	}
	
	.specs_factors {
		grid-template-columns: repeat(2, 1fr);
		gap: clamp(40px, 5vw, 60px);
	}
}

@media (max-width: 768px) {
	#specs-section {
		padding: clamp(60px, 8vw, 80px) clamp(24px, 3.17vw, 48px);
	}
	
	.specs_sections {
		gap: clamp(40px, 6vw, 60px);
	}
	
	.specs_factors {
		grid-template-columns: repeat(2, 1fr);
		gap: clamp(24px, 3vw, 40px);
	}
}

/* CTA Section Styles */
#cta-section {
	position: relative;
	width: 100%;
	min-height: 100vh;
	background-color: #000000;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cta_background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.cta_background_image {
	position: absolute;
	bottom: var(--cta-moon-bottom, -100%);
	left: 50%;
	transform: translateX(-50%);
	width: 120%;
	height: 240%;
	background-image: url('../assets/img/cta/moon-cta-background.png');
	background-size: 112.5%;
	background-position: center center;
	background-repeat: no-repeat;
	will-change: bottom, transform;
	filter: brightness(0.7);
	animation: cta-moon-rotate 600s linear infinite;
	transform-origin: center center;
}

@keyframes cta-moon-rotate {
	0% {
		transform: translateX(-50%) translateY(0) rotate(0deg);
	}
	100% {
		transform: translateX(-50%) translateY(0) rotate(360deg);
	}
}

.cta_container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: clamp(80px, 8vw, 120px) clamp(48px, 6.35vw, 96px);
	box-sizing: border-box;
}

.cta_content {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(24px, 2.65vw, 40px);
}

.cta_eyebrow {
	font-family: 'D-DIN', sans-serif;
	font-weight: 400;
	font-size: clamp(14px, 1.19vw, 18px);
	color: #FFBB00;
	text-transform: uppercase;
	letter-spacing: clamp(2px, 0.2vw, 4px);
}

.cta_title {
	font-family: 'D-DIN', sans-serif;
	font-weight: 700;
	font-size: clamp(48px, 6.35vw, 96px);
	color: #ffffff;
	text-transform: uppercase;
	margin: 0;
	line-height: 1.1;
}

.cta_title_highlight {
	color: #FFBB00;
}

.cta_description {
	font-family: 'D-DIN', sans-serif;
	font-weight: 400;
	font-size: clamp(16px, 1.59vw, 24px);
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	max-width: 700px;
	margin: 0;
}

.cta_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: clamp(8px, 0.53vw, 12px);
	padding: clamp(16px, 1.32vw, 20px) clamp(24px, 1.59vw, 32px);
	background-color: #FFBB00;
	border: 1px solid #916B00;
	border-radius: 6px;
	text-decoration: none;
	font-family: 'D-DIN', sans-serif;
	font-weight: 700;
	font-size: clamp(14px, 1.06vw, 16px);
	letter-spacing: -0.02em;
	color: #000000;
	transition: all 0.3s ease;
	cursor: pointer;
}

.cta_button:hover {
	background-color: #ffcc33;
	transform: translateY(-2px);
}

.cta_button_text {
	font-family: 'D-DIN', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
}

.cta_button_arrow {
	font-size: clamp(16px, 1.06vw, 20px);
	color: #000000;
}

/* CTA Section - Responsive */
@media (max-width: 768px) {
	#cta-section {
		min-height: 80vh;
	}
	
	.cta_background_image {
		height: 200%;
	}
	
	.cta_container {
		padding: clamp(40px, 5vw, 60px) clamp(24px, 3.17vw, 48px);
		padding-top: clamp(40px, 5vw, 60px);
	}
	
	.cta_content {
		gap: clamp(20px, 2.65vw, 32px);
	}
}

/* Copy Toast Notification */
.copy_toast {
	position: fixed;
	bottom: clamp(24px, 3.17vw, 48px);
	right: clamp(24px, 3.17vw, 48px);
	z-index: 10000;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
}

.copy_toast_show {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.copy_toast_content {
	display: flex;
	align-items: center;
	gap: clamp(12px, 1.32vw, 16px);
	padding: clamp(16px, 1.59vw, 20px) clamp(24px, 2.65vw, 32px);
	background-color: #FFBB00;
	border: 1px solid #916B00;
	border-radius: 6px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	font-family: 'D-DIN', sans-serif;
	font-weight: 700;
	font-size: clamp(14px, 1.06vw, 16px);
	color: #000000;
	letter-spacing: -0.02em;
}

.copy_toast_icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(20px, 1.59vw, 24px);
	height: clamp(20px, 1.59vw, 24px);
	background-color: #000000;
	color: #FFBB00;
	border-radius: 50%;
	font-size: clamp(14px, 1.06vw, 16px);
	font-weight: 700;
	flex-shrink: 0;
}

.copy_toast_text {
	white-space: nowrap;
}

.copy_toast_error .copy_toast_content {
	background-color: #ff4444;
	border-color: #cc0000;
}

.copy_toast_error .copy_toast_icon {
	background-color: #ffffff;
	color: #ff4444;
}

/* Copy Button Success State */
.hero_button_copied {
	background-color: #FFBB00 !important;
	border-color: #916B00 !important;
}

.hero_button_copied .hero_button_text {
	color: #000000;
}

.hero_button_copied .hero_button_icon {
	filter: brightness(0);
}

/* Countdown Section Styles */
#countdown-section {
	position: relative;
	width: 100%;
	min-height: 100vh;
	z-index: 2;
	background: linear-gradient(to bottom, #050505 0%, #000000 20%, #000000 100%);
	color: #ffffff;
	text-align: center;
	padding: 80px 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	overflow: hidden;
	padding-bottom: 0;
	box-sizing: border-box;
}

#countdown-section h1,
#countdown-section .countdown {
	position: relative;
	z-index: 1;
}

#countdown-section h1 {
	font-family: 'D-DIN', sans-serif;
	margin-top: 60px;
	margin-bottom: 0;
	line-height: 1;
	position: relative;
	display: block;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}

#countdown-section h1 .heading_main,
#countdown-section h1 a.heading_main {
	font-family: 'D-DIN Expanded', sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: clamp(120px, 12.7vw, 192px);
	color: #FFBB00;
	display: block;
	margin-bottom: clamp(8px, 0.8vw, 16px);
	white-space: nowrap;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
}

#countdown-section h1 a.heading_main:hover {
	color: #FFD700;
	text-decoration: underline;
	text-decoration-thickness: 3px;
	text-underline-offset: 8px;
	transform: scale(1.02);
}

#countdown-section h1 a.heading_main:active {
	transform: scale(0.98);
	opacity: 0.9;
}

#countdown-section h1 .heading_sub {
	font-family: 'D-DIN Condensed', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: clamp(48px, 4.76vw, 72px);
	color: rgba(255, 255, 255, 0.6);
	display: block;
	white-space: nowrap;
	margin-top: clamp(8px, 0.8vw, 16px);
}

#countdown-section .countdown,
.countdown {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: clamp(12px, 1.25vw, 24px);
	margin-bottom: 0;
	margin-top: 80px;
	flex-wrap: wrap;
	flex-direction: row;
}

.countdown_element {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.countdown_element .countdown_number {
	font-family: 'D-DIN', sans-serif;
	font-weight: 700;
	font-size: clamp(64px, 6.35vw, 96px);
	color: #ffffff;
	line-height: 1;
	display: block;
}

.countdown_element .countdown_label {
	font-family: 'D-DIN Condensed', sans-serif;
	font-weight: 400;
	font-size: clamp(16px, 1.59vw, 24px);
	color: rgba(255, 255, 255, 0.6);
	line-height: 1;
	display: block;
	margin-top: clamp(-5px, -0.625vw, -12px);
	text-transform: uppercase;
}

.countdown_separator {
	font-family: 'D-DIN', sans-serif;
	font-weight: 700;
	font-size: clamp(64px, 6.35vw, 96px);
	color: #ffffff;
	line-height: 1;
	margin: 0 clamp(-5px, -0.625vw, -12px);
	display: inline-block;
	align-self: flex-start;
	margin-top: 0;
}

.moon_background_image {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1920px;
	height: 800px;
	max-height: 800px;
	z-index: 0;
	object-fit: contain;
	object-position: bottom center;
	display: block;
	pointer-events: none;
}

.satellite_image {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1920px;
	height: 800px;
	max-height: 800px;
	z-index: 1;
	object-fit: contain;
	object-position: bottom center;
	display: block;
	pointer-events: none;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% {
		transform: translateX(-50%) translateY(0px);
	}
	50% {
		transform: translateX(-50%) translateY(-20px);
	}
}

/* Header Responsive Styles */
@media (max-width: 47.99875em) {
	.header_container {
		padding: clamp(16px, 2vw, 20px) clamp(20px, 2.5vw, 24px);
	}
	
	.header_logo_image {
		height: clamp(20px, 2.5vw, 24px);
	}
	
	.header_mobile_toggle {
		display: flex;
	}
	
	.header_nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		max-width: 320px;
		height: 100vh;
		background-color: #000000;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: clamp(80px, 10vw, 100px) clamp(24px, 3vw, 32px) clamp(32px, 4vw, 40px);
		box-sizing: border-box;
		transition: right 0.3s ease;
		z-index: 100;
		overflow-y: auto;
		box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
	}
	
	.header.header_nav_open .header_nav {
		right: 0;
	}
	
	.header_nav_list {
		flex-direction: column;
		align-items: flex-start;
		gap: clamp(24px, 3vw, 32px);
		width: 100%;
		margin-bottom: clamp(32px, 4vw, 40px);
	}
	
	.header_nav_item {
		width: 100%;
	}
	
	.header_nav_link {
		font-size: clamp(16px, 2vw, 18px);
		padding: clamp(8px, 1vw, 12px) 0;
		width: 100%;
		display: block;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
	
	.header_nav_link::after {
		display: none;
	}
	
	.header_button {
		width: 100%;
		justify-content: center;
		font-size: clamp(14px, 1.75vw, 16px);
		padding: clamp(14px, 1.75vw, 16px) clamp(20px, 2.5vw, 24px);
		gap: clamp(8px, 1vw, 10px);
	}
	
	.header.header_nav_open::before {
		content: '';
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.7);
		z-index: 99;
	}
}

@media (max-width: 480px) {
	.header_container {
		padding: clamp(14px, 1.75vw, 18px) clamp(16px, 2vw, 20px);
	}
	
	.header_logo_image {
		height: clamp(18px, 2.25vw, 22px);
	}
	
	.header_mobile_toggle {
		width: clamp(22px, 2.75vw, 28px);
		height: clamp(22px, 2.75vw, 28px);
	}
	
	.header_nav {
		max-width: 100%;
		padding: clamp(70px, 8.75vw, 90px) clamp(20px, 2.5vw, 24px) clamp(28px, 3.5vw, 36px);
	}
	
	.header_nav_list {
		gap: clamp(20px, 2.5vw, 28px);
		margin-bottom: clamp(28px, 3.5vw, 36px);
	}
	
	.header_nav_link {
		font-size: clamp(15px, 1.875vw, 17px);
		padding: clamp(6px, 0.75vw, 10px) 0;
	}
	
	.header_button {
		font-size: clamp(13px, 1.625vw, 15px);
		padding: clamp(12px, 1.5vw, 14px) clamp(18px, 2.25vw, 22px);
		gap: clamp(6px, 0.75vw, 8px);
	}
}

/* Hero Section Responsive Styles */
@media (max-width: 47.99875em) {
	#hero-section {
		min-height: 100vh;
		height: 100vh;
		padding-top: clamp(80px, 10vw, 120px);
	}
	
	.hero_content {
		padding: 0 20px;
		gap: clamp(14px, 1.32vw, 20px);
		margin-top: clamp(60px, 6.5vw, 80px);
	}
	
	.hero_info_row {
		gap: clamp(15px, 2vw, 30px);
	}
	
	.hero_telegram_link,
	.hero_contract_text {
		font-size: clamp(12px, 1.19vw, 18px);
	}
	
	.hero_headline_container {
		gap: clamp(14px, 1.32vw, 20px);
	}
	
	.hero_title {
		font-size: clamp(42px, 6.35vw, 96px);
	}
	
	.hero_buttons {
		gap: clamp(12px, 1.5vw, 20px);
		margin-top: clamp(20px, 2.5vw, 32px);
	}
	
	.hero_button {
		font-size: clamp(11px, 0.93vw, 14px);
		padding: clamp(12px, 1.19vw, 18px) clamp(16px, 1.46vw, 22px);
		gap: clamp(5px, 0.66vw, 10px);
	}
	
	.hero_astrodoge_image {
		max-width: 100vw;
		width: auto;
		max-height: 85vh;
		margin: clamp(30px, 4vw, 60px) auto 0;
		object-position: center center;
	}
}

@media (max-width: 480px) {
	#hero-section {
		min-height: 100vh;
		height: 100vh;
		padding-top: clamp(70px, 8.75vw, 100px);
	}
	
	.hero_content {
		padding: 0 15px;
		gap: clamp(12px, 1.32vw, 18px);
		margin-top: clamp(50px, 6.25vw, 70px);
	}
	
	.hero_info_row {
		gap: clamp(12px, 1.5vw, 20px);
		flex-direction: column;
	}
	
	.hero_divider {
		width: 60px;
		height: 1px;
	}
	
	.hero_telegram_link,
	.hero_contract_text {
		font-size: clamp(11px, 1.19vw, 18px);
	}
	
	.hero_headline_container {
		gap: clamp(12px, 1.32vw, 18px);
	}
	
	.hero_title {
		font-size: clamp(36px, 6.35vw, 96px);
	}
	
	.hero_buttons {
		flex-direction: column;
		width: 100%;
		gap: clamp(10px, 1.2vw, 16px);
		margin-top: clamp(18px, 2.25vw, 28px);
	}
	
	.hero_button {
		width: 100%;
		justify-content: center;
		font-size: clamp(10px, 0.93vw, 14px);
		padding: clamp(10px, 1.19vw, 18px) clamp(14px, 1.46vw, 22px);
		gap: clamp(4px, 0.66vw, 10px);
	}
	
	.hero_astrodoge_image {
		max-width: 100vw;
		width: auto;
		max-height: 80vh;
		margin: clamp(30px, 4vw, 60px) auto 0;
		object-position: center center;
	}
}

/* Mission Section Responsive Styles */
@media (max-width: 47.99875em) {
	#mission-section {
		min-height: auto;
		padding: clamp(40px, 6vw, 80px) 0;
	}
	
	.mission_container {
		flex-direction: column;
		gap: clamp(30px, 4vw, 60px);
		padding: clamp(40px, 5vw, 80px) clamp(20px, 3vw, 48px);
	}
	
	.mission_content {
		flex: 1 1 100%;
		max-width: 100%;
		text-align: center;
	}
	
	.mission_title {
		align-items: center;
		text-align: center;
	}
	
	.mission_illustration {
		flex: 1 1 100%;
		max-width: 100%;
		min-height: 400px;
	}
	
	.mission_moon_image {
		height: clamp(250px, 30vw, 500px);
	}
}

@media (max-width: 480px) {
	#mission-section {
		min-height: auto;
		padding: clamp(30px, 5vw, 60px) 0;
	}
	
	.mission_container {
		flex-direction: column;
		gap: clamp(24px, 3vw, 48px);
		padding: clamp(30px, 4vw, 60px) clamp(15px, 2.5vw, 40px);
	}
	
	.mission_content {
		text-align: center;
	}
	
	.mission_title {
		font-size: clamp(36px, 6.35vw, 96px);
		align-items: center;
		text-align: center;
	}
	
	.mission_moon_image {
		height: clamp(300px, 37.5vw, 600px);
	}
	
	.mission_text {
		font-size: clamp(14px, 1.59vw, 24px);
	}
	
	.mission_illustration {
		min-height: 300px;
	}
}

/* Stats Section Responsive Styles */
@media (max-width: 47.99875em) {
	#stats-section {
		padding: clamp(36px, 4.23vw, 64px) clamp(20px, 2.5vw, 40px);
	}
	
	.stats_container {
		gap: clamp(40px, 6.35vw, 96px);
	}
	
	.stats_stat {
		font-size: clamp(60px, 8.47vw, 128px);
	}
	
	.stats_unit {
		font-size: clamp(12px, 1.19vw, 18px);
	}
}

@media (max-width: 480px) {
	#stats-section {
		padding: clamp(32px, 4.23vw, 64px) clamp(15px, 2.5vw, 40px);
	}
	
	.stats_container {
		gap: clamp(32px, 6.35vw, 96px);
		flex-direction: column;
	}
	
	.stats_stat {
		font-size: clamp(48px, 8.47vw, 128px);
	}
	
	.stats_unit {
		font-size: clamp(11px, 1.19vw, 18px);
	}
}

/* Responsive Styles */
@media (min-width: 1201px) {
	#countdown-section {
		padding-top: 40px;
	}
	#countdown-section .countdown {
		margin-top: 40px;
	}
	#countdown-section h1 {
		margin-top: 30px;
	}
}

@media (max-width: 1600px) {
	.moon_background_image,
	.satellite_image {
		height: 700px;
		max-height: 700px;
	}
}

@media (max-width: 1200px) {
	.moon_background_image,
	.satellite_image {
		height: 500px;
		max-height: 500px;
	}
}

@media (max-width: 47.99875em) {
	html, body {
		height: auto;
		overflow-x: hidden;
		position: relative;
		width: 100%;
	}
	
	#countdown-section {
		position: relative;
		width: 100%;
		min-height: auto !important;
		height: auto !important;
		padding: 80px 20px;
		padding-bottom: 80px;
		justify-content: flex-start;
		box-sizing: border-box;
		overflow-x: hidden;
	}
	
	#countdown-section h1 {
		margin-top: 0 !important;
		margin-bottom: 56px !important;
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
		box-sizing: border-box;
		overflow: hidden;
	}
	
	#countdown-section h1 .heading_main {
		font-size: clamp(80px, 14vw, 150px) !important;
		margin-bottom: clamp(2px, 0.3vw, 6px);
		white-space: normal !important;
	}
	
	#countdown-section h1 .heading_sub {
		font-size: clamp(32px, 4.2vw, 65px);
		margin-top: clamp(2px, 0.3vw, 6px);
	}
	
	#countdown-section .countdown {
		margin-top: 56px !important;
		margin-bottom: 56px !important;
		flex-direction: row;
		gap: clamp(6px, 0.8vw, 14px);
		padding: 0 20px;
	}
	
	.countdown_element .countdown_number {
		font-size: clamp(64px, 8vw, 96px);
	}
	
	.countdown_element .countdown_label {
		font-size: clamp(18px, 2.2vw, 24px);
		margin-top: 12px;
		margin-bottom: 0;
	}
	
	.countdown_separator {
		transform: none;
		margin: 0 clamp(-4px, -0.5vw, -8px);
		font-size: clamp(64px, 8vw, 96px);
	}
	
	.moon_background_image,
	.satellite_image {
		height: 250px;
		max-height: 250px;
		max-width: 100%;
	}
	
	.satellite_image {
		animation: float 3s ease-in-out infinite;
	}
	
	@keyframes float {
		0%, 100% {
			transform: translateX(-50%) translateY(0px);
		}
		50% {
			transform: translateX(-50%) translateY(-15px);
		}
	}
}

@media (max-width: 480px) {
	html, body {
		height: auto;
		overflow-x: hidden;
		position: relative;
		width: 100%;
	}
	
	#countdown-section {
		position: relative;
		width: 100%;
		min-height: auto !important;
		height: auto !important;
		padding: 80px 15px;
		padding-bottom: 80px;
		justify-content: flex-start;
		box-sizing: border-box;
		overflow-x: hidden;
	}
	
	#countdown-section h1 {
		margin-top: 0 !important;
		margin-bottom: 48px !important;
		width: 100%;
		max-width: 100%;
		padding: 0 15px;
		box-sizing: border-box;
		overflow: hidden;
	}
	
	#countdown-section h1 .heading_main {
		font-size: clamp(70px, 12vw, 130px) !important;
		margin-bottom: clamp(2px, 0.3vw, 6px);
		white-space: normal !important;
	}
	
	#countdown-section h1 .heading_sub {
		font-size: clamp(28px, 3.8vw, 60px);
		margin-top: clamp(2px, 0.3vw, 6px);
	}
	
	#countdown-section .countdown {
		margin-top: 48px !important;
		margin-bottom: 48px !important;
		flex-direction: row;
		gap: clamp(4px, 0.6vw, 10px);
		padding: 0 15px;
	}
	
	.countdown_element .countdown_number {
		font-size: clamp(56px, 7.5vw, 96px);
	}
	
	.countdown_element .countdown_label {
		font-size: clamp(16px, 2vw, 24px);
		margin-top: 10px;
		margin-bottom: 0;
	}
	
	.countdown_separator {
		transform: none;
		margin: 0 clamp(-3px, -0.4vw, -6px);
		font-size: clamp(56px, 7.5vw, 96px);
	}
	
	.moon_background_image,
	.satellite_image {
		height: 200px;
		max-height: 200px;
		max-width: 100%;
	}
	
	.satellite_image {
		animation: float 3s ease-in-out infinite;
	}
	
	@keyframes float {
		0%, 100% {
			transform: translateX(-50%) translateY(0px);
		}
		50% {
			transform: translateX(-50%) translateY(-12px);
		}
	}
}

