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

:root {
	--primary: #ff6b6b;
	--primary-dark: #ee5a5a;
	--secondary: #4ecdc4;
	--accent: #ffe66d;
	--dark: #1a1a2e;
	--darker: #0f0f1e;
	--light: #f8f9fa;
	--text: #ffffff;
	--text-muted: #b8b8b8;
	--gradient-1: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
	--gradient-2: linear-gradient(135deg, #ffe66d 0%, #ff6b6b 100%);
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	background: var(--darker);
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 40px 20px;
	background: radial-gradient(ellipse at center, rgba(255, 107, 107, 0.1) 0%, var(--darker) 70%);
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 50%, rgba(78, 205, 196, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(255, 230, 109, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

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

.hero-title {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 30px;
}

.title-main {
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 900;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	animation: pulse 2s ease-in-out infinite;
}

.title-subtitle {
	font-size: clamp(1rem, 3vw, 1.5rem);
	color: var(--secondary);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 600;
}

.hero-tagline {
	font-size: clamp(1.1rem, 2.5vw, 1.5rem);
	color: var(--text-muted);
	margin-bottom: 40px;
	font-weight: 300;
}

.contract-address {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-bottom: 40px;
	flex-wrap: wrap;
	background: rgba(255, 255, 255, 0.05);
	padding: 20px 30px;
	border-radius: 12px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.contract-address code {
	font-family: "Courier New", monospace;
	font-size: clamp(0.85rem, 2vw, 1rem);
	color: var(--accent);
	word-break: break-all;
	user-select: all;
}

.copy-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: var(--gradient-1);
	border: none;
	border-radius: 8px;
	color: var(--text);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 0.9rem;
	min-height: 44px;
}

.copy-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

.copy-btn:active {
	transform: translateY(0);
}

.copy-btn.copied {
	background: var(--secondary);
}

.hero-cta {
	margin-top: 30px;
}

.btn-primary {
	padding: 18px 50px;
	font-size: 1.2rem;
	font-weight: 700;
	background: var(--gradient-2);
	border: none;
	border-radius: 50px;
	color: var(--dark);
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	box-shadow: 0 10px 30px rgba(255, 230, 109, 0.3);
	min-height: 44px;
}

.btn-primary:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 15px 40px rgba(255, 230, 109, 0.5);
}

.btn-primary:active {
	transform: translateY(-1px) scale(1.02);
}

.hero-visual {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.3;
	z-index: 0;
	pointer-events: none;
}

.shrimp-animation {
	position: absolute;
}

.shrimp-1 {
	font-size: 10rem;
	top: 50%;
	left: 50%;
	animation: float-centered 3s ease-in-out infinite;
}

.shrimp-2 {
	font-size: 6rem;
	top: 20%;
	left: 10%;
	animation: float-flipped 3.5s ease-in-out infinite 0.5s;
}

.shrimp-3 {
	font-size: 5rem;
	bottom: 15%;
	right: 15%;
	animation: float-flipped 4s ease-in-out infinite 1s;
}

.shrimp-4 {
	font-size: 4rem;
	top: 75%;
	left: 5%;
	animation: float 3.2s ease-in-out infinite 1.5s;
}

/* Bubbles */
.bubble {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	animation: bubble-float 8s ease-in-out infinite;
	pointer-events: none;
}

.bubble-1 {
	width: 20px;
	height: 20px;
	bottom: 10%;
	left: 20%;
	animation-delay: 0s;
}

.bubble-2 {
	width: 15px;
	height: 15px;
	bottom: 15%;
	left: 60%;
	animation-delay: 1s;
}

.bubble-3 {
	width: 25px;
	height: 25px;
	bottom: 5%;
	left: 80%;
	animation-delay: 2s;
}

.bubble-4 {
	width: 12px;
	height: 12px;
	bottom: 20%;
	left: 40%;
	animation-delay: 0.5s;
}

.bubble-5 {
	width: 18px;
	height: 18px;
	bottom: 8%;
	left: 70%;
	animation-delay: 1.5s;
}

.bubble-6 {
	width: 22px;
	height: 22px;
	bottom: 12%;
	left: 30%;
	animation-delay: 2.5s;
}

@keyframes bubble-float {
	0% {
		transform: translateY(0) translateX(0);
		opacity: 0.3;
	}
	50% {
		transform: translateX(20px);
		opacity: 0.6;
	}
	100% {
		transform: translateY(-100vh) translateX(-10px);
		opacity: 0;
	}
}

/* Lore Section */
.lore {
	padding: 100px 20px;
	background: var(--dark);
	position: relative;
}

.lore::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--gradient-1);
}

.section-title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	text-align: center;
	margin-bottom: 60px;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.lore-content {
	max-width: 900px;
	margin: 0 auto;
}

.lore-text {
	font-size: clamp(1rem, 2vw, 1.2rem);
	line-height: 1.8;
	color: var(--text-muted);
}

.lore-text p {
	margin-bottom: 25px;
}

.lore-text strong {
	color: var(--text);
	font-weight: 700;
}

.lore-intro {
	font-size: clamp(1.1rem, 2.5vw, 1.4rem);
	color: var(--secondary);
	font-weight: 500;
	margin-bottom: 30px;
}

.lore-highlight {
	background: rgba(255, 107, 107, 0.1);
	padding: 30px;
	border-radius: 12px;
	border-left: 4px solid var(--primary);
	font-size: clamp(1.1rem, 2.5vw, 1.3rem);
	color: var(--text);
	margin: 40px 0;
}

.lore-final {
	font-size: clamp(1.2rem, 3vw, 1.5rem);
	color: var(--accent);
	text-align: center;
	margin-top: 50px;
	padding: 30px;
	background: rgba(255, 230, 109, 0.1);
	border-radius: 12px;
	border: 2px solid var(--accent);
}

/* Meme Gallery Section */
.meme-gallery {
	padding: 100px 20px;
	background: var(--dark);
	position: relative;
}

.meme-gallery::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--gradient-1);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
	max-width: 1400px;
	margin: 0 auto;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	aspect-ratio: 1;
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	cursor: pointer;
}

.gallery-item:hover {
	transform: translateY(-5px) scale(1.02);
	border-color: var(--primary);
	box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.gallery-item:hover img {
	transform: scale(1.05);
}

/* Socials Section */
.socials {
	padding: 100px 20px;
	background: var(--darker);
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.social-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 30px 40px;
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: var(--text);
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	flex: 1;
	min-width: 200px;
	max-width: 300px;
}

.social-link:hover {
	background: rgba(255, 107, 107, 0.2);
	border-color: var(--primary);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.social-link svg {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.social-link svg path {
	fill: currentColor;
}

/* Image Viewer Modal */
.image-viewer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

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

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

.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: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-viewer-close {
	position: fixed;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text);
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	z-index: 10001;
}

.image-viewer-close:hover {
	background: rgba(255, 107, 107, 0.3);
	border-color: var(--primary);
	transform: rotate(90deg);
}

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

/* Footer */
.footer {
	padding: 60px 20px;
	background: var(--dark);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

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

.footer-text {
	font-size: 1.5rem;
	margin-bottom: 20px;
	color: var(--text);
}

.footer-text strong {
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-warning {
	color: var(--text-muted);
	margin-bottom: 20px;
	font-size: 0.9rem;
}

.footer-ca {
	color: var(--text-muted);
	font-size: 0.85rem;
	text-align: center;
	word-break: break-word;
	overflow-wrap: break-word;
}

.footer-ca code {
	color: var(--accent);
	font-family: "Courier New", monospace;
	display: inline-block;
	text-align: center;
	word-break: break-all;
	max-width: 100%;
}

/* Toast Notification */
.toast {
	position: fixed;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%) translateY(100px);
	background: var(--gradient-1);
	color: var(--text);
	padding: 16px 32px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	z-index: 10000;
	opacity: 0;
	box-shadow: 0 10px 40px rgba(255, 107, 107, 0.4);
	transition: all 0.3s ease;
	pointer-events: none;
}

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

/* Animations */
@keyframes pulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.9;
		transform: scale(1.02);
	}
}

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

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

@keyframes float-flipped {
	0%, 100% {
		transform: scaleX(-1) translateY(0) rotate(0deg);
	}
	50% {
		transform: scaleX(-1) translateY(-20px) rotate(5deg);
	}
}

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

	.hero {
		padding: 60px 20px;
	}

	.hero-visual {
		right: 5%;
	}

	.shrimp-animation {
		font-size: 8rem;
	}

	.lore,
	.meme-gallery,
	.socials {
		padding: 80px 20px;
	}

	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
		gap: 18px;
	}
}

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

	.hero {
		min-height: auto;
		padding: 60px 20px 40px;
		flex-direction: column;
		text-align: center;
	}

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

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

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

	.title-subtitle {
		font-size: clamp(0.9rem, 4vw, 1.2rem);
	}

	.hero-tagline {
		font-size: clamp(1rem, 4vw, 1.3rem);
		margin-bottom: 30px;
	}

	.hero-visual {
		position: relative;
		right: auto;
		top: auto;
		transform: none;
		margin-top: 30px;
		opacity: 0.5;
		width: 100%;
		height: 200px;
	}

	.shrimp-1 {
		font-size: 4rem;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.shrimp-2 {
		font-size: 2.5rem;
		top: 25%;
		right: 10%;
	}

	.shrimp-3 {
		font-size: 2rem;
		bottom: 20%;
		right: 5%;
	}

	.shrimp-4 {
		font-size: 1.5rem;
		top: 55%;
		right: 0;
	}

	.bubble {
		opacity: 0.2;
	}

	.bubble-1,
	.bubble-2,
	.bubble-3,
	.bubble-4,
	.bubble-5,
	.bubble-6 {
		width: 10px;
		height: 10px;
	}

	.contract-address {
		flex-direction: column;
		padding: 15px 20px;
		gap: 12px;
		margin-bottom: 30px;
	}

	.contract-address code {
		font-size: clamp(0.75rem, 3vw, 0.9rem);
		text-align: center;
	}

	.copy-btn {
		width: 100%;
		justify-content: center;
		padding: 12px 24px;
		font-size: 0.85rem;
	}

	.btn-primary {
		padding: 16px 40px;
		font-size: clamp(1rem, 4vw, 1.1rem);
		width: 100%;
		max-width: 300px;
	}

	.lore,
	.meme-gallery,
	.socials {
		padding: 60px 20px;
	}

	.section-title {
		font-size: clamp(1.8rem, 8vw, 2.5rem);
		margin-bottom: 40px;
	}

	.lore-text {
		font-size: clamp(0.95rem, 3vw, 1.1rem);
	}

	.lore-text p {
		margin-bottom: 20px;
	}

	.lore-intro {
		font-size: clamp(1rem, 4vw, 1.2rem);
		margin-bottom: 25px;
	}

	.lore-highlight {
		padding: 20px;
		margin: 30px 0;
		font-size: clamp(1rem, 4vw, 1.2rem);
	}

	.lore-final {
		padding: 20px;
		margin-top: 40px;
		font-size: clamp(1.1rem, 4vw, 1.3rem);
	}

	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.gallery-item {
		border-radius: 8px;
	}

	.social-links {
		gap: 15px;
	}

	.social-link {
		width: 100%;
		max-width: 100%;
		padding: 25px 30px;
		font-size: clamp(0.95rem, 3vw, 1rem);
	}

	.footer {
		padding: 40px 20px;
	}

	.footer-text {
		font-size: clamp(1.2rem, 5vw, 1.4rem);
	}

	.footer-warning {
		font-size: clamp(0.8rem, 2.5vw, 0.9rem);
	}

	.footer-ca {
		font-size: clamp(0.75rem, 2.5vw, 0.85rem);
		text-align: center;
	}

	.footer-ca code {
		display: inline-block;
		text-align: center;
		word-break: break-all;
	}

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

	.image-viewer-content img {
		max-height: 95vh;
		border-radius: 8px;
	}

	.image-viewer-close {
		top: 15px;
		right: 15px;
		width: 40px;
		height: 40px;
	}

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

	.toast {
		bottom: 20px;
		padding: 14px 28px;
		font-size: 0.9rem;
	}
}

/* Small Mobile */
@media (max-width: 480px) {
	.hero {
		padding: 40px 15px 30px;
	}

	.title-main {
		font-size: clamp(2rem, 12vw, 3rem);
	}

	.contract-address {
		padding: 12px 15px;
	}

	.contract-address code {
		font-size: 0.7rem;
	}

	.copy-btn {
		padding: 10px 20px;
		font-size: 0.8rem;
	}

	.btn-primary {
		padding: 14px 35px;
		font-size: 0.95rem;
	}

	.lore,
	.meme-gallery,
	.socials {
		padding: 50px 15px;
	}

	.section-title {
		font-size: clamp(1.5rem, 10vw, 2rem);
		margin-bottom: 30px;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.social-link {
		padding: 20px 25px;
	}

	.footer {
		padding: 30px 15px;
	}
}

/* Very Small Screens */
@media (max-width: 360px) {
	.hero {
		padding: 30px 10px 20px;
	}

	.title-main {
		font-size: clamp(1.8rem, 14vw, 2.5rem);
	}

	.contract-address {
		padding: 10px 12px;
	}

	.contract-address code {
		font-size: 0.65rem;
	}

	.copy-btn {
		padding: 8px 16px;
		font-size: 0.75rem;
	}

	.btn-primary {
		padding: 12px 30px;
		font-size: 0.9rem;
		max-width: 100%;
	}

	.lore,
	.meme-gallery,
	.socials {
		padding: 40px 10px;
	}

	.section-title {
		font-size: clamp(1.3rem, 12vw, 1.8rem);
		margin-bottom: 25px;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.social-link {
		padding: 18px 20px;
		font-size: 0.9rem;
	}

	.footer {
		padding: 25px 10px;
	}

	.footer-text {
		font-size: clamp(1rem, 6vw, 1.2rem);
	}

	.footer-ca {
		text-align: center;
	}

	.footer-ca code {
		display: inline-block;
		text-align: center;
		word-break: break-all;
	}

	.image-viewer-close {
		top: 10px;
		right: 10px;
		width: 36px;
		height: 36px;
	}

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