/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--font-title: "Luckiest Guy", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-text: "League Spartan", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--display-font: "Luckiest Guy", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	--color-primary: #000000;
	--color-secondary: #666666;
	--color-border: #e5e5e5;
	--border-color: #000000;
	--color-background: #ffffff;
	--color-hover: #f5f5f5;
	--color-success: #22c55e;

	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

	--radius-sm: 0.375rem;
	--radius-md: 0.5rem;
	--radius-lg: 0.75rem;
	--radius-xl: 1rem;

	--transition: all 0.2s ease-in-out;
}

body {
	font-family: var(--font-text);
	background-color: var(--color-background);
	color: var(--color-primary);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

/* Smooth scroll */
html {
	scroll-behavior: smooth;
}

/* Fade in animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.container {
	width: 100%;
	padding: 4rem 1.5rem 2rem;
}

/* Hero Section */
.hero {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-bottom: 0;
	background-image: url("tuzki.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: visible;
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 120px;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3rem;
	text-align: center;
	padding: 4rem 2rem;
	width: 100%;
	max-width: 1200px;
}

.hero-text {
	max-width: 900px;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.hero-tagline {
	font-family: var(--font-text);
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	font-weight: 600;
	color: rgb(255, 255, 255);
	text-shadow: 
		2px 2px 4px rgba(0, 0, 0, 0.8),
		0 0 10px rgba(0, 0, 0, 0.5),
		-1px -1px 0 rgba(0, 0, 0, 0.8),
		1px 1px 0 rgba(0, 0, 0, 0.8);
	line-height: 1.4;
	animation: fadeInUp 1.2s ease-out 0.2s both;
}

.hero-cto-badge-container {
	width: fit-content;
	margin: 0 auto 1rem;
	animation: fadeInUp 1s ease-out 0.1s both;
}

.hero-cto-badge {
	display: inline-block;
	font-family: var(--font-text);
	font-size: clamp(0.875rem, 2vw, 1rem);
	font-weight: 600;
	color: rgb(255, 255, 255);
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(10px);
	padding: 0.5rem 1.25rem;
	border-radius: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-ca {
	width: 100%;
	max-width: 700px;
	animation: fadeInUp 1.4s ease-out 0.4s both;
}

.hero-ca .ca-input-group {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.8);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-ca .ca-input-group:focus-within {
	border-color: rgba(255, 255, 255, 1);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Wave */
.waves {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 120px;
	overflow: hidden;
	z-index: 3;
}

.wave {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.hero-title {
	font-family: var(--display-font);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgb(255, 255, 255);
	paint-order: stroke;
	filter: drop-shadow(rgba(0, 0, 0, 0.18) 0px 10px);
	font-size: clamp(3.4rem, 9vw, 5rem);
	font-weight: 800;
	-webkit-text-stroke: 6px var(--border-color);
	line-height: 1.1;
	margin: 0;
	animation: fadeInUp 1s ease-out, pulse 3s ease-in-out infinite 1s;
}

.hero-subtitle {
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	font-weight: 600;
	color: var(--color-secondary);
	margin-bottom: 1rem;
}

.hero-description {
	font-size: clamp(1rem, 2vw, 1.125rem);
	color: var(--color-secondary);
	line-height: 1.7;
}

/* Section Styles */
section {
	margin-bottom: 6rem;
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
	animation: fadeInUp 0.8s ease-out both;
}

.section-title {
	font-family: var(--display-font);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgb(0, 0, 0);
	paint-order: stroke;
	filter: drop-shadow(rgba(0, 0, 0, 0.18) 0px 10px);
	font-size: clamp(2.4rem, 6vw, 3.5rem);
	font-weight: 800;
	-webkit-text-stroke: 4px rgb(255, 255, 255);
	margin-bottom: 0.75rem;
}

.section-description {
	font-family: var(--font-text);
	font-size: clamp(1rem, 2vw, 1.125rem);
	color: var(--color-secondary);
	font-weight: 400;
	margin-top: 0.5rem;
}

/* Contract Address Section */
.ca-section {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.ca-card {
	background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
	border-radius: var(--radius-xl);
	padding: 2rem;
	box-shadow: 
		0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -2px rgba(0, 0, 0, 0.1),
		0 0 0 1px rgba(0, 0, 0, 0.05);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	animation: scaleIn 0.6s ease-out 0.2s both;
	position: relative;
	overflow: hidden;
}

.ca-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: left 0.6s;
}

.ca-card:hover::before {
	left: 100%;
}

.ca-card:hover {
	box-shadow: 
		0 20px 40px -10px rgba(0, 0, 0, 0.15),
		0 8px 16px -4px rgba(0, 0, 0, 0.1),
		0 0 0 1px rgba(0, 0, 0, 0.05);
	transform: translateY(-4px) scale(1.01);
}

.ca-input-group {
	display: flex;
	gap: 1rem;
	background: var(--color-background);
	border: 2px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 0.75rem;
	transition: var(--transition);
}

.ca-input-group:focus-within {
	border-color: var(--color-primary);
	box-shadow:
		0 0 0 3px rgba(0, 0, 0, 0.1),
		var(--shadow-md);
}

.ca-input {
	flex: 1;
	font-family: var(--font-text);
	font-size: 0.9375rem;
	padding: 0.875rem 1.25rem;
	border: none;
	background: transparent;
	color: var(--color-primary);
	outline: none;
	cursor: text;
	font-weight: 500;
	letter-spacing: 0.02em;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ca-input::selection {
	background: var(--color-hover);
}

.copy-button {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.875rem 1.25rem;
	background: var(--color-primary);
	border: none;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: var(--transition);
	min-width: 52px;
	height: 52px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.copy-button:hover {
	background: #1a1a1a;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.copy-button:active {
	transform: translateY(0);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.copy-button img {
	width: 20px;
	height: 20px;
	display: block;
	filter: brightness(0) invert(1);
}

/* Memes Slideshow Section */
.memes-section {
	max-width: 1200px;
	margin: 0 auto 8rem;
	width: 100%;
}

.memes-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

.memes-slideshow {
	width: 100%;
}

.slideshow-container {
	position: relative;
	width: 100%;
	border-radius: var(--radius-xl);
	overflow: hidden;
	background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
	border: 2px solid var(--color-border);
	box-shadow: 
		0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -2px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slideshow-container:hover {
	box-shadow: 
		0 20px 40px -10px rgba(0, 0, 0, 0.15),
		0 8px 16px -4px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.slideshow-track {
	position: relative;
	width: 100%;
	aspect-ratio: 1;
	overflow: hidden;
	background: #ffffff;
	border-radius: var(--radius-xl);
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

.slide.active {
	opacity: 1;
	z-index: 1;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: var(--radius-md);
}

.slideshow-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.95);
	border: 2px solid var(--color-border);
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	color: var(--color-primary);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.slideshow-btn:hover {
	background: var(--color-primary);
	color: var(--color-background);
	border-color: var(--color-primary);
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slideshow-btn:active {
	transform: translateY(-50%) scale(0.95);
}

.slideshow-prev {
	left: 1rem;
}

.slideshow-next {
	right: 1rem;
}

.slideshow-btn svg {
	width: 24px;
	height: 24px;
}

.slideshow-dots {
	position: absolute;
	bottom: 1rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5rem;
	z-index: 10;
	background: rgba(255, 255, 255, 0.9);
	padding: 0.5rem 1rem;
	border-radius: 2rem;
	backdrop-filter: blur(10px);
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

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

.dot:hover {
	background: rgba(0, 0, 0, 0.4);
}

.dot.active:hover {
	background: var(--color-primary);
}

.memes-info {
	width: 100%;
}

.info-card {
	background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
	border-radius: var(--radius-xl);
	padding: 2.5rem;
	border: 2px solid var(--color-border);
	box-shadow: 
		0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -2px rgba(0, 0, 0, 0.1);
	height: 100%;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.info-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.6s;
}

.info-card:hover {
	box-shadow: 
		0 20px 40px -10px rgba(0, 0, 0, 0.15),
		0 8px 16px -4px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.info-card:hover::before {
	left: 100%;
}

.info-title {
	font-family: var(--font-text);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 1.5rem;
	letter-spacing: 0.02em;
}

.info-text {
	font-family: var(--font-text);
	font-size: 1.0625rem;
	color: var(--color-secondary);
	line-height: 1.7;
	margin-bottom: 2rem;
}

.info-features {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.info-feature {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--color-border);
}

.info-feature:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.info-feature-label {
	font-family: var(--font-text);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-secondary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.info-feature-value {
	font-family: var(--font-text);
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--color-primary);
}

/* Responsive Styles */
@media (max-width: 968px) {
	.memes-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.slideshow-track {
		aspect-ratio: 4/3;
	}
	
	.hero-content {
		padding: 3rem 1.5rem;
	}
	
	.hero-title {
		font-size: clamp(2.5rem, 8vw, 4rem);
	}
	
	.hero-tagline {
		font-size: clamp(1rem, 2.5vw, 1.5rem);
	}
	
	.section-title {
		font-size: clamp(2rem, 5vw, 3rem);
	}
	
	.cto-grid {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
		gap: 1.25rem;
	}
	
	.cto-card {
		padding: 2rem 1.5rem;
	}
	
	.cto-header-card {
		padding: 2rem 1.5rem;
	}
	
	.info-card {
		padding: 2rem 1.5rem;
	}
}

@media (max-width: 640px) {
	.container {
		padding: 2rem 1rem;
	}
	
	.hero {
		min-height: 80vh;
		padding-bottom: 100px;
	}
	
	.hero-content {
		padding: 2rem 1rem;
		gap: 2rem;
	}
	
	.hero-title {
		font-size: clamp(3rem, 10vw, 4.5rem);
		-webkit-text-stroke: 5px var(--border-color);
	}
	
	.hero-tagline {
		font-size: clamp(0.9375rem, 2vw, 1.25rem);
		padding: 0.75rem 1rem;
	}
	
	.hero-ca {
		max-width: 100%;
		width: 100%;
	}
	
	.ca-card {
		padding: 1rem;
	}
	
	.ca-input-group {
		padding: 0.5rem;
		gap: 0.5rem;
	}
	
	.ca-input {
		font-size: 0.75rem;
		padding: 0.625rem 0.75rem;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	
	.copy-button {
		min-width: 40px;
		width: 40px;
		height: 40px;
		padding: 0.5rem;
		flex-shrink: 0;
	}
	
	.copy-button img {
		width: 18px;
		height: 18px;
	}
	
	.section-header {
		margin-bottom: 2rem;
	}
	
	.section-title {
		font-size: clamp(1.75rem, 6vw, 2.5rem);
		-webkit-text-stroke: 3px rgb(255, 255, 255);
	}
	
	.section-description {
		font-size: clamp(0.875rem, 2vw, 1rem);
	}
	
	.socials-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}

@media (max-width: 530px) {
	.socials-grid {
		grid-template-columns: 1fr !important;
	}
	
	.social-link {
		padding: 1.25rem;
	}
	
	.memes-section,
	.socials-section,
	.cto-section {
		margin-bottom: 4rem;
	}
	
	.cto-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.cto-card {
		padding: 1.75rem 1.25rem;
	}
	
	.cto-card-icon {
		width: 56px;
		height: 56px;
		margin-bottom: 1.25rem;
	}
	
	.cto-card-icon img {
		width: 28px;
		height: 28px;
	}
	
	.cto-card-title {
		font-size: 1.125rem;
	}
	
	.cto-card-desc {
		font-size: 0.875rem;
	}
	
	.cto-header-card {
		padding: 1.75rem 1.25rem;
	}
	
	.cto-title {
		font-size: clamp(1.25rem, 4vw, 1.75rem);
	}
	
	.info-card {
		padding: 1.75rem 1.25rem;
	}
	
	.info-title {
		font-size: clamp(1.25rem, 4vw, 1.75rem);
		margin-bottom: 1rem;
	}
	
	.info-text {
		font-size: 1rem;
		margin-bottom: 1.5rem;
	}
	
	.slideshow-btn {
		width: 40px;
		height: 40px;
	}
	
	.slideshow-prev {
		left: 0.75rem;
	}
	
	.slideshow-next {
		right: 0.75rem;
	}
	
	.slideshow-dots {
		bottom: 0.75rem;
		padding: 0.375rem 0.75rem;
	}
	
	.dot {
		width: 8px;
		height: 8px;
	}
}

/* Social Links Section */
.socials-section {
	max-width: 1200px;
	margin: 0 auto 8rem;
	width: 100%;
}

.socials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: 1000px;
	margin: 0 auto;
}

.social-link {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1.5rem;
	background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
	border: 2px solid var(--color-border);
	border-radius: var(--radius-xl);
	text-decoration: none;
	color: var(--color-primary);
	font-weight: 500;
	font-size: 1rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	position: relative;
	overflow: hidden;
	box-shadow: 
		0 2px 4px rgba(0, 0, 0, 0.05),
		0 0 0 1px rgba(0, 0, 0, 0.02);
	animation: scaleIn 0.6s ease-out both;
}

.social-link:nth-child(1) {
	animation-delay: 0.1s;
}

.social-link:nth-child(2) {
	animation-delay: 0.2s;
}

.social-link:nth-child(3) {
	animation-delay: 0.3s;
}

.social-link:nth-child(4) {
	animation-delay: 0.4s;
}

.social-link:nth-child(5) {
	animation-delay: 0.5s;
}

.social-link::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: left 0.5s;
}

.social-link:hover::before {
	left: 100%;
}

.social-link:hover {
	border-color: var(--color-primary);
	background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
	transform: translateY(-6px) scale(1.02);
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.15),
		0 0 0 1px rgba(0, 0, 0, 0.05);
}

.social-link:active {
	transform: translateY(-2px);
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: var(--color-hover);
	border-radius: var(--radius-lg);
	flex-shrink: 0;
	transition: var(--transition);
	position: relative;
}

.social-icon::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--color-primary);
	border-radius: var(--radius-lg);
	opacity: 0;
	transition: var(--transition);
}

.social-link:hover .social-icon {
	background: var(--color-primary);
	transform: scale(1.05);
}

.social-link:hover .social-icon::before {
	opacity: 1;
}

.social-link img {
	width: 28px;
	height: 28px;
	display: block;
	transition: filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	z-index: 1;
	filter: brightness(0) saturate(100%);
}

.social-link:hover .social-icon img {
	filter: brightness(0) invert(1);
}

.social-content {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	flex: 1;
}

.social-name {
	font-weight: 600;
	font-size: 1.125rem;
	line-height: 1.3;
}

.social-label {
	font-size: 0.875rem;
	color: var(--color-secondary);
	font-weight: 400;
}

.social-link-x:hover {
	border-color: #000000;
}

.social-link-dex:hover {
	border-color: #4c6ef5;
}

.social-link-pump:hover {
	border-color: #ff6b6b;
}

/* CTO Section */
.cto-section {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.cto-content {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.cto-header-card {
	background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
	border-radius: var(--radius-xl);
	padding: 3rem;
	border: 2px solid var(--color-border);
	box-shadow: 
		0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -2px rgba(0, 0, 0, 0.1);
	text-align: center;
	position: relative;
	overflow: hidden;
	animation: scaleIn 0.6s ease-out both;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cto-header-card:hover {
	box-shadow: 
		0 20px 40px -10px rgba(0, 0, 0, 0.15),
		0 8px 16px -4px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.cto-header-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #000000, #333333, #000000);
}

.cto-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.625rem 1.5rem;
	background: var(--color-primary);
	color: var(--color-background);
	border-radius: 2rem;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cto-badge-text {
	font-family: var(--font-text);
}

.cto-title {
	font-family: var(--font-text);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--color-primary);
	line-height: 1.4;
	margin: 0;
}

.cto-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
}

.cto-card {
	background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
	border-radius: var(--radius-xl);
	padding: 2.5rem 2rem;
	border: 2px solid var(--color-border);
	box-shadow: 
		0 2px 4px rgba(0, 0, 0, 0.05),
		0 0 0 1px rgba(0, 0, 0, 0.02);
	text-align: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: default;
	position: relative;
	overflow: hidden;
	animation: scaleIn 0.6s ease-out both;
}

.cto-card:nth-child(1) {
	animation-delay: 0.1s;
}

.cto-card:nth-child(2) {
	animation-delay: 0.2s;
}

.cto-card:nth-child(3) {
	animation-delay: 0.3s;
}

.cto-card:nth-child(4) {
	animation-delay: 0.4s;
}

.cto-card:nth-child(5) {
	animation-delay: 0.5s;
}

.cto-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--color-primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cto-card:hover {
	border-color: var(--color-primary);
	transform: translateY(-6px) scale(1.03);
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.15),
		0 0 0 1px rgba(0, 0, 0, 0.05);
}

.cto-card:hover::before {
	transform: scaleX(1);
}

.cto-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	background: var(--color-hover);
	border-radius: var(--radius-lg);
	margin-bottom: 1.5rem;
	color: var(--color-primary);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.cto-card-icon::after {
	content: "";
	position: absolute;
	inset: -4px;
	border-radius: var(--radius-lg);
	background: var(--color-primary);
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: -1;
}

.cto-card:hover .cto-card-icon {
	background: var(--color-primary);
	color: var(--color-background);
	transform: scale(1.15) rotate(5deg);
}

.cto-card:hover .cto-card-icon::after {
	opacity: 0.1;
	transform: scale(1.2);
}

.cto-card-icon img {
	width: 32px;
	height: 32px;
	display: block;
	filter: brightness(0) saturate(100%);
	transition: var(--transition);
}

.cto-card:hover .cto-card-icon img {
	filter: brightness(0) invert(1);
}

.cto-card-title {
	font-family: var(--font-text);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 0.75rem;
	letter-spacing: 0.02em;
}

.cto-card-desc {
	font-family: var(--font-text);
	font-size: 0.9375rem;
	color: var(--color-secondary);
	font-weight: 400;
	line-height: 1.5;
	margin: 0;
}

/* Responsive CTO */
@media (max-width: 768px) {
	.cto-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.cto-header-card {
		padding: 2rem 1.5rem;
	}

	.cto-card {
		padding: 2rem 1.5rem;
	}
}

/* Toast Notification */
.toast {
	position: fixed;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%) translateY(100px);
	background: var(--color-primary);
	color: var(--color-background);
	padding: 1rem 1.5rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	font-weight: 500;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition);
	z-index: 1000;
}

.toast.show {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}

.toast-message {
	display: block;
}

/* Image Viewer Modal */
.image-viewer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease-in-out;
}

.image-viewer.active {
	opacity: 1;
	pointer-events: auto;
}

.image-viewer-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(10px);
}

.image-viewer-content {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	z-index: 1;
}

.image-viewer-image-container {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.image-viewer-image-container img {
	max-width: 100%;
	max-height: 90vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: var(--radius-lg);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-viewer-close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #ffffff;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 10;
	backdrop-filter: blur(10px);
}

.image-viewer-close:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.4);
	transform: scale(1.1);
}

.image-viewer-close:active {
	transform: scale(0.95);
}

.image-viewer-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #ffffff;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 10;
	backdrop-filter: blur(10px);
}

.image-viewer-nav:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-50%) scale(1.1);
}

.image-viewer-nav:active {
	transform: translateY(-50%) scale(0.95);
}

.image-viewer-prev {
	left: 2rem;
}

.image-viewer-next {
	right: 2rem;
}

.image-viewer-counter {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 2rem;
	padding: 0.75rem 1.5rem;
	color: #ffffff;
	font-family: var(--font-text);
	font-size: 0.9375rem;
	font-weight: 600;
	backdrop-filter: blur(10px);
	z-index: 10;
}

@media (max-width: 768px) {
	.image-viewer-content {
		padding: 1rem;
	}
	
	.image-viewer-close {
		top: 1rem;
		right: 1rem;
		width: 40px;
		height: 40px;
	}
	
	.image-viewer-nav {
		width: 44px;
		height: 44px;
	}
	
	.image-viewer-prev {
		left: 1rem;
	}
	
	.image-viewer-next {
		right: 1rem;
	}
	
	.image-viewer-counter {
		bottom: 1rem;
	}
}

/* Footer */
.footer {
	background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
	border-top: 2px solid var(--color-border);
	padding: 3rem 2rem 2rem;
	margin-top: 6rem;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
}

.footer-info {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-text {
	font-family: var(--font-text);
	font-size: 0.9375rem;
	color: var(--color-secondary);
	font-weight: 400;
	margin: 0;
}

.footer-domain {
	font-family: var(--font-text);
	font-size: 1rem;
	color: var(--color-primary);
	font-weight: 600;
	margin: 0;
}

.footer-links {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

.footer-link {
	font-family: var(--font-text);
	font-size: 0.9375rem;
	color: var(--color-secondary);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
	position: relative;
}

.footer-link::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-primary);
	transition: width 0.3s ease;
}

.footer-link:hover {
	color: var(--color-primary);
}

.footer-link:hover::after {
	width: 100%;
}

@media (max-width: 768px) {
	.footer {
		padding: 2rem 1.5rem;
		margin-top: 4rem;
	}
	
	.footer-content {
		flex-direction: column;
		text-align: center;
		gap: 1.5rem;
	}
	
	.footer-links {
		justify-content: center;
	}
}

/* Responsive Design - Tablet and Up */
@media (min-width: 768px) {
	.hero {
		min-height: 90vh;
	}
	
	.hero-content {
		padding: 4rem 2rem;
		gap: 3rem;
	}
	
	.container {
		padding: 3rem 2rem;
	}
	
	.socials-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.cto-grid {
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	}
}

@media (min-width: 1024px) {
	.container {
		padding: 4rem 2rem;
	}
	
	.hero {
		min-height: 100vh;
	}
	
	.hero-content {
		padding: 6rem 4rem;
		gap: 5rem;
	}
	
	.hero-title {
		font-size: clamp(4rem, 10vw, 6rem);
	}
	
	.memes-content {
		gap: 4rem;
	}
	
	.socials-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.cto-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}