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

:root {
	--primary: #FF6B9D;
	--primary-dark: #E85A8A;
	--secondary: #C44569;
	--accent: #F8B500;
	--accent-light: #FFD93D;
	--purple: #A78BFA;
	--blue: #60A5FA;
	--green: #34D399;
	--bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
	--bg-warm: linear-gradient(135deg, #FFE5E5 0%, #FFF4E5 50%, #E5F3FF 100%);
	--text-primary: #1a1a1a;
	--text-secondary: #4a5568;
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
	--shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
	--shadow-colored: 0 8px 32px rgba(255, 107, 157, 0.3);
	--radius: 32px;
	--radius-lg: 48px;
	--radius-xl: 64px;
}

body {
	font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	background: var(--bg-warm);
	color: var(--text-primary);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Hero Section */
.hero {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 0 60px;
	position: relative;
	overflow: hidden;
	background: var(--bg-warm);
}

.hero-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		radial-gradient(circle at 2px 2px, rgba(255, 107, 157, 0.1) 1px, transparent 0);
	background-size: 40px 40px;
	opacity: 0.4;
	animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
	0% { transform: translate(0, 0); }
	100% { transform: translate(40px, 40px); }
}

.hero-content {
	text-align: center;
	max-width: 680px;
	position: relative;
	z-index: 1;
	overflow: visible;
}

.hero-image-wrapper {
	margin-bottom: 28px;
	display: flex;
	justify-content: center;
}

.hero-image {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid rgba(255, 107, 157, 0.2);
	box-shadow: var(--shadow-md);
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-image:hover {
	transform: scale(1.05);
	border-color: var(--primary);
}

.hero-title {
	font-family: "Fredoka", "Nunito", sans-serif;
	font-size: clamp(3.5rem, 8vw, 6.5rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-top: 0;
	margin-bottom: 16px;
	padding: 0.2em 0.15em 0.3em 0.15em;
	background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 50%, var(--blue) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
	position: relative;
	overflow: visible;
	display: inline-block;
}

.hero-title::after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 140px;
	height: 8px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	border-radius: 20px;
	opacity: 0.6;
}

.hero-ticker {
	font-family: "Fredoka", "Nunito", sans-serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 600;
	color: var(--primary);
	margin-top: 0;
	margin-bottom: 20px;
	letter-spacing: 0.05em;
}

.hero-description {
	font-size: clamp(1.125rem, 2vw, 1.5rem);
	color: var(--text-secondary);
	margin-bottom: 32px;
	font-weight: 500;
	line-height: 1.7;
}

/* CA Container */
.ca-container {
	margin-top: 0;
	margin-bottom: 32px;
}

/* Hero Socials */
.hero-socials {
	margin-top: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.hero-social-link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: white;
	border: 2px solid rgba(255, 107, 157, 0.2);
	border-radius: 50px;
	text-decoration: none;
	color: var(--text-primary);
	font-weight: 600;
	font-size: 0.9375rem;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-sm);
	position: relative;
	overflow: hidden;
}

.hero-social-link::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 0;
	border-radius: 50px;
}

.hero-social-link-pump::before {
	background: linear-gradient(135deg, var(--primary), var(--purple));
}

.hero-social-link-x::before {
	background: linear-gradient(135deg, #000000, #333333);
}

.hero-social-link-dex::before {
	background: linear-gradient(135deg, var(--blue), var(--purple));
}

.hero-social-link-instagram::before {
	background: linear-gradient(135deg, #E4405F, #FCAF45, #833AB4);
}

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

.hero-social-link:hover {
	border-color: var(--primary);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
	color: white;
}

.hero-social-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	transition: transform 0.3s ease;
	position: relative;
	z-index: 1;
	filter: brightness(0) saturate(100%);
}

.hero-social-link:hover .hero-social-icon {
	transform: scale(1.1);
	filter: brightness(0) invert(1);
}

.hero-social-link span {
	position: relative;
	z-index: 1;
}

.ca-label {
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--text-secondary);
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.ca-input-wrapper {
	display: flex;
	gap: 0;
	max-width: 100%;
	background: white;
	border: 3px solid rgba(255, 107, 157, 0.2);
	border-radius: 50px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
}

.ca-input-wrapper:focus-within {
	box-shadow: var(--shadow-colored);
	border-color: var(--primary);
	transform: translateY(-2px);
}

.ca-input {
	flex: 1;
	padding: 20px 28px;
	border: none;
	background: transparent;
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	outline: none;
	font-family: "Nunito", monospace;
	letter-spacing: 0.02em;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.copy-btn {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	border: none;
	padding: 20px 32px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border-radius: 0 50px 50px 0;
}

.copy-btn:hover {
	background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
	transform: scale(1.05);
}

.copy-btn:active {
	transform: scale(0.98);
}

.copy-icon {
	width: 20px;
	height: 20px;
	filter: brightness(0) invert(1);
}

/* Story Section */
.story {
	padding: 40px 0;
	background: var(--bg-warm);
	position: relative;
}

.story-content {
	max-width: 800px;
	margin: 0 auto;
}

.story-text {
	font-size: clamp(1rem, 2vw, 1.25rem);
	line-height: 1.8;
	color: var(--text-primary);
}

.story-paragraph {
	margin-bottom: 16px;
	font-weight: 400;
}

.story-paragraph:last-of-type {
	margin-bottom: 0;
}

.story-highlight {
	font-weight: 600;
	color: var(--primary);
	font-size: clamp(1.125rem, 2vw, 1.375rem);
	margin: 24px 0;
}

.story-signature {
	font-family: "Fredoka", "Nunito", sans-serif;
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: var(--text-primary);
	margin-top: 24px;
	text-align: center;
	letter-spacing: -0.01em;
}

/* Gallery Section */
.gallery {
	padding: 40px 0;
	background: white;
	position: relative;
}

.gallery::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-title {
	font-family: "Fredoka", "Nunito", sans-serif;
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	text-align: center;
	margin-bottom: 40px;
	color: var(--text-primary);
	font-weight: 700;
	letter-spacing: -0.01em;
	position: relative;
	display: inline-block;
	width: 100%;
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: -16px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 6px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	border-radius: 10px;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
}

.gallery-item {
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--bg-warm);
	box-shadow: var(--shadow-sm);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	aspect-ratio: 1;
	border: 4px solid transparent;
	position: relative;
	cursor: pointer;
}

.gallery-item::before {
	content: "";
	position: absolute;
	inset: -4px;
	border-radius: var(--radius-lg);
	padding: 4px;
	background: linear-gradient(135deg, var(--primary), var(--purple), var(--blue));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.gallery-item:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: var(--shadow-lg);
	border-radius: var(--radius-xl);
}

.gallery-item:hover::before {
	opacity: 1;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease, border-radius 0.3s ease;
	border-radius: var(--radius-lg);
}

.gallery-item:hover img {
	transform: scale(1.08);
	border-radius: var(--radius-xl);
}

/* Socials Section */

.social-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 24px 32px;
	background: white;
	border: 3px solid transparent;
	border-radius: var(--radius-lg);
	text-decoration: none;
	color: var(--text-primary);
	font-weight: 700;
	font-size: 1rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: var(--shadow-md);
	position: relative;
	overflow: hidden;
	width: 160px;
}

.social-link::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 0;
	border-radius: var(--radius-lg);
}

.social-link-pump::before {
	background: linear-gradient(135deg, var(--primary), var(--purple));
}

.social-link-x::before {
	background: linear-gradient(135deg, #000000, #333333);
}

.social-link-dex::before {
	background: linear-gradient(135deg, var(--blue), var(--purple));
}

.social-link-instagram::before {
	background: linear-gradient(135deg, #E4405F, #FCAF45, #833AB4);
}

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

.social-link:hover {
	border-color: var(--primary);
	box-shadow: var(--shadow-lg);
	transform: translateY(-8px) scale(1.05);
	color: white;
}

.social-icon-wrapper {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 107, 157, 0.1);
	border-radius: 50%;
	transition: all 0.4s ease;
	position: relative;
	z-index: 1;
}

.social-link:hover .social-icon-wrapper {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.1) rotate(5deg);
}

.social-icon {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	transition: transform 0.4s ease;
	position: relative;
	z-index: 1;
	filter: brightness(0) saturate(100%);
}

.social-link:hover .social-icon {
	transform: rotate(-5deg) scale(1.15);
	filter: brightness(0) invert(1);
}

.social-text {
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
}

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

/* Footer */
.footer {
	padding: 30px 0;
	background: white;
	border-top: 1px solid rgba(255, 107, 157, 0.1);
}

.footer-text {
	text-align: center;
	color: var(--text-secondary);
	font-size: 0.9375rem;
	font-weight: 500;
}

/* Toast Notification */
.toast {
	position: fixed;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%) translateY(100px);
	background: linear-gradient(135deg, var(--primary), var(--purple));
	color: white;
	padding: 18px 32px;
	border-radius: 50px;
	box-shadow: var(--shadow-colored);
	font-weight: 700;
	font-size: 0.9375rem;
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	z-index: 1000;
	pointer-events: none;
}

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

.toast-message {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Image Viewer Modal */
.image-viewer {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.image-viewer.active {
	display: flex;
}

.image-viewer-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(4px);
}

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

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

.image-viewer-close {
	position: fixed;
	top: 24px;
	right: 24px;
	background: linear-gradient(135deg, var(--primary), var(--purple));
	border: none;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: white;
	transition: all 0.3s ease;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
	z-index: 2001;
}

.image-viewer-close:hover {
	background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
	transform: scale(1.1) rotate(90deg);
	box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

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

.image-viewer-close svg {
	width: 20px;
	height: 20px;
	stroke-width: 2.5;
}

/* Responsive Design */

/* Tablet and below */
@media (max-width: 1024px) {
	.container {
		padding: 0 32px;
	}

	.hero-content {
		max-width: 100%;
	}

	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
		max-width: 100%;
	}
}

/* Mobile and small tablets */
@media (max-width: 768px) {
	.container {
		padding: 0 24px;
	}

	.hero {
		padding: 20px 0 30px;
	}

	.hero-socials {
		margin-top: 24px;
		gap: 12px;
	}

	.hero-social-link {
		padding: 8px 16px;
		font-size: 0.875rem;
	}

	.hero-social-icon {
		width: 18px;
		height: 18px;
	}

	.hero-title {
		margin-bottom: 20px;
	}

	.hero-title::after {
		width: 100px;
		height: 6px;
		bottom: -16px;
	}

	.hero-ticker {
		margin-bottom: 24px;
	}

	.hero-description {
		margin-bottom: 40px;
	}

	.ca-container {
		margin-top: 0;
	}

	.ca-label {
		font-size: 0.8125rem;
		margin-bottom: 10px;
	}

	.ca-input-wrapper {
		border-radius: var(--radius);
		border-width: 2px;
	}

	.ca-input {
		padding: 14px 16px;
		font-size: 0.8125rem;
	}

	.copy-btn {
		padding: 14px 20px;
		flex-shrink: 0;
	}

	.story {
		padding: 30px 0;
	}

	.story-content {
		max-width: 100%;
	}

	.story-paragraph {
		margin-bottom: 20px;
	}

	.story-highlight {
		margin: 28px 0;
	}

	.story-signature {
		margin-top: 32px;
	}

	.section-title {
		margin-bottom: 24px;
	}

	.section-title::after {
		width: 80px;
	}

	.gallery {
		padding: 30px 0;
	}

	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}

	.hero-socials {
		gap: 10px;
	}

	.hero-social-link {
		padding: 8px 14px;
		font-size: 0.8125rem;
	}

	.social-link {
		width: calc(50% - 10px);
		min-width: 140px;
		max-width: 180px;
		padding: 20px 20px;
	}

	.footer {
		padding: 50px 0;
	}
}

/* Small mobile */
@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}

	.hero {
		padding: 60px 0;
	}

	.hero-image {
		width: 130px;
		height: 130px;
	}

	.hero-image-wrapper {
		margin-bottom: 24px;
	}

	.hero-title {
		margin-bottom: 16px;
	}

	.hero-title::after {
		width: 80px;
		height: 5px;
		bottom: -14px;
	}

	.hero-ticker {
		margin-bottom: 20px;
		font-size: clamp(1.5rem, 5vw, 2rem);
	}

	.hero-description {
		margin-bottom: 36px;
		font-size: clamp(1rem, 3vw, 1.125rem);
	}

	.ca-label {
		font-size: 0.75rem;
		margin-bottom: 8px;
	}

	.ca-input {
		padding: 12px 14px;
		font-size: 0.75rem;
	}

	.copy-btn {
		padding: 12px 16px;
	}

	.copy-icon {
		width: 16px;
		height: 16px;
	}

	.copy-icon {
		width: 18px;
		height: 18px;
	}

	.story {
		padding: 24px 0;
	}

	.story-text {
		font-size: 0.9375rem;
		line-height: 1.7;
	}

	.story-paragraph {
		margin-bottom: 18px;
	}

	.story-highlight {
		margin: 24px 0;
		font-size: 1.0625rem;
		line-height: 1.6;
	}

	.story-signature {
		margin-top: 28px;
		font-size: 1.375rem;
	}

	.section-title {
		margin-bottom: 48px;
		font-size: clamp(2rem, 6vw, 2.5rem);
	}

	.section-title::after {
		width: 60px;
		height: 4px;
		bottom: -12px;
	}

	.gallery {
		padding: 24px 0;
	}

	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}

	.hero-socials {
		gap: 8px;
	}

	.hero-social-link {
		padding: 8px 12px;
		font-size: 0.75rem;
	}

	.hero-social-icon {
		width: 16px;
		height: 16px;
	}

	.social-link {
		width: 100%;
		max-width: 200px;
		padding: 18px 24px;
	}

	.social-icon-wrapper {
		width: 48px;
		height: 48px;
	}

	.social-icon {
		width: 24px;
		height: 24px;
	}

	.footer {
		padding: 24px 0;
	}

	.footer-text {
		font-size: 0.8125rem;
		padding: 0 16px;
	}

	.toast {
		bottom: 24px;
		left: 16px;
		right: 16px;
		transform: translateX(0) translateY(100px);
		padding: 14px 24px;
		font-size: 0.875rem;
	}

	.toast.show {
		transform: translateX(0) translateY(0);
	}

	.image-viewer-content {
		max-width: 95vw;
		max-height: 95vh;
	}

	.image-viewer-content img {
		max-height: 95vh;
	}

	.image-viewer-close {
		top: 16px;
		right: 16px;
		width: 44px;
		height: 44px;
	}

	.image-viewer-close svg {
		width: 18px;
		height: 18px;
	}
}

/* Extra small mobile */
@media (max-width: 360px) {
	.hero-image {
		width: 100px;
		height: 100px;
	}

	.hero-image-wrapper {
		margin-bottom: 20px;
	}

	.hero-title {
		font-size: clamp(2.5rem, 12vw, 4rem);
	}

	.hero-ticker {
		font-size: clamp(1.25rem, 6vw, 1.75rem);
	}

	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 8px;
	}

	.social-link {
		padding: 16px 20px;
		font-size: 0.9375rem;
	}

	.social-icon-wrapper {
		width: 44px;
		height: 44px;
	}

	.social-icon {
		width: 22px;
		height: 22px;
	}
}
