@import url('https://fonts.googleapis.com/css2?family=Rye&family=Bangers&family=Quicksand:wght@300;400;500;600;700&display=swap');

:root {
	--primary: #2E4A6B; /* Cool icy blue */
	--secondary: #5A7CA6; /* Muted winter blue */
	--accent: #FFFFFF; /* Pure snow white */
	--background: #1A1F2A; /* Deep, cold night sky */
	--surface: #3B4A5A; /* Frosty, dark surface */
	--text: #E0F7FA; /* Light frosty text */
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	overflow-x: hidden; /* Prevent horizontal scrolling */
	font-family: 'Quicksand', sans-serif;
	background-color: var(--background);
	color: var(--text);
	line-height: 1.6;
	font-size: 1.1rem;
	font-weight: 400;
	padding-top: 70px;
}

.container {
	max-width: 100%;
	padding: 0 45px;
}

header {
	background-color: var(--surface);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0;
	width: 100%;
	height: 17%;
	z-index: 1000;
	transition: all 0.3s ease;
	padding: 10px 0;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
}

.logo {
	font-family: 'Bangers', cursive;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--accent);
	text-decoration: none;
	display: flex;
	align-items: center;
	text-shadow: 2px 2px var(--primary);
	letter-spacing: 2px;
}

.logo img {
	width: 60px;
	margin-right: 10px;
	border-radius: 50%;
	border: 3px solid var(--accent);
	transform: rotate(-5deg);
}

.carousel {
    display: flex;
    overflow: hidden; /* Hide overflowing images */
    width: 100%;
    position: relative;
    height: 60vh;
}

.carousel-images {
    display: flex;
    transition: none; /* Disable CSS transitions for seamless JavaScript scrolling */
    will-change: transform; /* Optimize performance for continuous scrolling */
}

.carousel-image {
    width: 50%;
    height: auto;
    flex-shrink: 0; /* Ensure images don’t resize */
    aspect-ratio: 16 / 9;
}



.gallery-description {
	color: var(--text);
	text-decoration: none;
	margin-left: 20px;
	font-weight: 700;
	font-size: 1.2rem;
	transition: color 0.3s ease;
	text-transform: uppercase;
	font-family: 'Quicksand', sans-serif;
	letter-spacing: 1px;
}

nav {
	display: flex;
}

nav a {
	color: var(--text);
	text-decoration: none;
	margin-left: 20px;
	font-weight: 700;
	font-size: 1.2rem;
	transition: color 0.3s ease;
	text-transform: uppercase;
	font-family: 'Quicksand', sans-serif;
	letter-spacing: 1px;
}

nav a:hover {
	color: var(--accent);
	transform: scale(1.1) skew(-5deg);
}

.hero {
	color: var(--text);
	position: relative;
	overflow: hidden;
	padding: 80px 0 200px;
	height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.hero-image {
    position: absolute; /* Absolute positioning for parallax movement */
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto%;
    object-fit: cover;
    z-index: -1;
    will-change: transform;
}


.hero-container {
	width: 100%;
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-family: 'Bangers', cursive;
	font-size: 5rem;
	margin-bottom: 10px;
	margin-top: 20px;
	color: var(--accent);
	text-shadow: 3px 3px var(--primary);
	letter-spacing: 4px;
}

.hero p {
	font-family: 'Quicksand', sans-serif;
	font-size: 1.8rem;
	margin-bottom: 30px;
	font-weight: 600;
}

.cta-button {
	display: inline-block;
	background-color: var(--accent);
	color: var(--primary);
	padding: 12px 30px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.2rem;
	transition: all 0.3s ease;
	animation: lassoPulse 2s infinite;
	text-transform: uppercase;
	font-family: 'Quicksand', sans-serif;
	letter-spacing: 2px;
}

@keyframes lassoSpin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.cta-button:hover {
	background-color: var(--primary);
	color: var(--accent);
	transform: scale(1.1);
	box-shadow: 0 0 20px var(--accent);
}

.section {
	padding: 100px 0;
}

.section-title {
	font-family: 'Bangers', cursive;
	font-size: 3.5rem;
	text-align: center;
	margin-bottom: 50px;
	color: var(--accent);
	text-shadow: 2px 2px var(--primary);
	letter-spacing: 3px;
	margin-left: 5%;
}

.about-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.about-text {
	flex: 1;
	padding-right: 50px;
	font-size: 1.2rem;
}

.about-image {
	flex: 1;
	text-align: center;
}

.about-image img {
	max-width: 100%;
	transition: transform 0.3s ease;
	object-fit: contain;
}

.about-image img:hover {
	transform: scale(1.05) rotate(5deg);
}

.tokenomics-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
}

.tokenomics-item {
	background-color: var(--surface);
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tokenomics-item:hover {
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
	transform: scale(1.05) rotate(5deg);
}

.tokenomics-item h3 {
	font-family: 'Bangers', cursive;
	font-size: 2.5rem;
	color: var(--accent);
	margin-bottom: 10px;
	letter-spacing: 2px;
}

.tokenomics-item p {
	font-size: 1.1rem;
	font-weight: 500;
}

#roadmap {
	padding: 0 45px;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.roadmap-image {
	width: auto;
	height: 80%;
	object-fit: scale-down;
	border-radius: 5%;
}

.whitepaper { 
    text-align: center;
    margin-bottom: 8%;
    margin-top: 8%;
}

.whitepaper-icon {
    width: 20%;
    height: auto;
    display: inline-block; /* Ensure the image behaves like text for centering */
}


.community {
	background-color: var(--surface);
	text-align: center;
}

.social-links {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
}

.social-links a {
	margin: 0px;
	transition: transform 0.3s ease;
}

.social-links a:hover {
	transform: scale(1.1);
}

.social-icon {
	width: 50px;
	height: 50px;
	margin: 0 10px;
	object-fit: contain;
	filter: drop-shadow(0 4px 6px var(--background));
	border-radius: 20%;
}

/* Default pointer cursor for clickable elements */
#contract-address,
.copy-icon {
    cursor: pointer; /* Change cursor to pointer */
}

/* Custom cursor styles */
#contract-address:hover,
.copy-icon:hover {
    cursor: grab, pointer; /* Custom cursor image with fallback to pointer */
}

/* Additional hover effect (optional) */
#contract-address:hover {
    color: var(--accent); /* Change text color when hovering */
    text-decoration: underline; /* Optional underline effect */
}

.copy-icon:hover svg {
    fill: var(--accent); /* Change the icon color on hover */
    transform: scale(1.1); /* Slightly enlarge the icon on hover */
    transition: transform 0.2s ease, fill 0.2s ease; /* Smooth animation */
}


footer {
	background-color: var(--background);
	color: var(--text);
	text-align: center;
	padding: 20px 0;
	font-size: 0.9rem;
}


.snowflake-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
}

.snowflake {
    position: absolute;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        top: -10%;
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

.countdown {
	position: absolute;
	top: 20%;
	left: 15%;
	transform: translateX(-50%) rotate(-10deg);
	background-color: rgba(255, 215, 0, 0.9);
	color: #000;
	font-size: 0.5rem;
	font-weight: bold;
	text-align: center;
	padding: 30px;
	margin: 20px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	z-index: 10;
	font-family: 'Arial', sans-serif;
	text-transform: uppercase;
	width: 30%;
}

.countdown h1 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #e82024;
}

.timer {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.time span {
	display: block;
	font-size: 2rem;
	font-weight: bold;
	color: #e82024;
}

.time label {
	font-size: 0.8rem;
	color: #000;
}

.lasso-spin {
    animation: lassoSpin 1s ease;
}

/* Initial state: hidden and transformed */
.animate {
    opacity: 0;
    transform: translateY(20px); /* Default animation - slight bottom fly-in */
    transition: opacity 1s ease, transform 1s ease;
}

/* Trigger animation */
.animate.visible {
    opacity: 1;
    transform: translateY(0); /* Reset to natural position */
}

/* Fly-in from left */
.fade-in-left {
    transform: translateX(-40px); /* Start from the left */
}

.fade-in-left.visible {
    transform: translateX(0); /* Reset to natural position */
}

/* Fly-in from bottom */
.fade-in-bottom {
    transform: translateY(30px); /* Start from the bottom */
}

.fade-in-bottom.visible {
    transform: translateY(0); /* Reset to natural position */
}

