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

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	color: #ffffff;
	overflow-x: hidden;
}

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

/* Hero Section */
.hero {
	padding: 80px 0 120px;
	text-align: center;
	position: relative;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.coin-logo {
	margin-bottom: 40px;
	animation: float 3s ease-in-out infinite;
}

.logo-image {
	width: 140px;
	height: 140px;
	object-fit: cover;
	border-radius: 50%;
	animation: bounce 2s ease-in-out infinite;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.title-main {
	display: block;
	font-size: 4rem;
	font-weight: 900;
	background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
	background-size: 400% 400%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradientShift 3s ease infinite;
	margin-bottom: 10px;
}

.title-japanese {
	display: block;
	font-size: 2rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 15px;
}

.title-ticker {
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
	color: #feca57;
	background: rgba(254, 202, 87, 0.1);
	padding: 8px 24px;
	border-radius: 50px;
	border: 2px solid rgba(254, 202, 87, 0.3);
	display: inline-block;
}

.hero-subtitle {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.8);
	max-width: 600px;
	margin: 0 auto 50px;
	line-height: 1.6;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	max-width: 600px;
	margin: 0 auto;
}

.stat-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	padding: 30px 20px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

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

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

.stat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-label {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 10px;
	font-weight: 500;
}

.stat-value {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 8px;
	color: #ffffff;
}

.stat-change {
	font-size: 0.9rem;
	font-weight: 600;
}

.stat-change.positive {
	color: #4ade80;
}

.stat-change.negative {
	color: #f87171;
}

/* Meme Section */
.meme-section {
	background: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 20px;
}

.meme-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	padding: 20px;
}

.section-title {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 40px;
	background: linear-gradient(45deg, #ff6b6b, #feca57);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.meme-story p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 25px;
}

.meme-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-top: 40px;
}

.feature {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.feature:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

.feature-icon {
	font-size: 1.5rem;
}

.feature-text {
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
}

/* Social Section */
.social-section {
	padding: 80px 0;
}

.social-content {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

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

.social-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px 30px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	text-decoration: none;
	color: #ffffff;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

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

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

.social-link:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
	background: rgba(255, 255, 255, 0.15);
}

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

.contract-section {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 20px;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.contract-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #feca57;
}

.contract-address-container {
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 15px;
	padding: 5px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.contract-input {
	flex: 1;
	background: transparent;
	border: none;
	color: #ffffff;
	font-size: 0.9rem;
	padding: 15px 20px;
	outline: none;
	font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
}

.contract-input::selection {
	background: rgba(254, 202, 87, 0.3);
}

.copy-button {
	background: linear-gradient(45deg, #ff6b6b, #feca57);
	border: none;
	border-radius: 10px;
	padding: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.copy-button:hover {
	transform: scale(1.05);
	box-shadow: 0 5px 15px rgba(254, 202, 87, 0.3);
}

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

/* Toast Notification */
.toast {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: linear-gradient(45deg, #4ade80, #22c55e);
	color: white;
	padding: 15px 25px;
	border-radius: 10px;
	font-weight: 600;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	transform: translateX(400px);
	transition: transform 0.3s ease;
	z-index: 1000;
}

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

/* Footer */
.footer {
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 30px 0;
	margin-top: 60px;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
}

.footer-content p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	margin: 0;
}

.footer-link {
	color: #feca57;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
}

.footer-link:hover {
	color: #ffffff;
	text-shadow: 0 0 10px rgba(254, 202, 87, 0.5);
}

.footer-link::after {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -2px;
	left: 50%;
	background: linear-gradient(45deg, #feca57, #ff6b6b);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

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

/* Animations */
@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-20px);
	}
}

@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-10px);
	}

	60% {
		transform: translateY(-5px);
	}
}

/* Responsive Design */

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
	.container {
		max-width: 1400px;
	}

	.hero {
		padding: 100px 0 140px;
	}

	.title-main {
		font-size: 5rem;
	}

	.hero-subtitle {
		font-size: 1.4rem;
	}
}

/* Tablets and small laptops (768px to 1199px) */
@media (max-width: 1199px) and (min-width: 769px) {
	.container {
		max-width: 900px;
		padding: 0 30px;
	}

	.title-main {
		font-size: 3.5rem;
	}

	.title-japanese {
		font-size: 1.8rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}

	.section-title {
		font-size: 2.5rem;
	}

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

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

	.hero {
		padding: 60px 0 80px;
	}

	.title-main {
		font-size: 2.8rem;
		line-height: 1.1;
	}

	.title-japanese {
		font-size: 1.6rem;
		margin: 10px 0;
	}

	.title-ticker {
		font-size: 1.3rem;
		padding: 6px 20px;
	}

	.hero-subtitle {
		font-size: 1.1rem;
		margin-bottom: 40px;
	}

	.section-title {
		font-size: 2.2rem;
		margin-bottom: 30px;
	}

	.logo-image {
		width: 120px;
		height: 120px;
	}

	.stats-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		max-width: 400px;
	}

	.stat-card {
		padding: 25px 15px;
	}

	.stat-value {
		font-size: 1.8rem;
	}

	.meme-story p {
		font-size: 1rem;
		line-height: 1.7;
	}

	.meme-features {
		grid-template-columns: 1fr;
		gap: 15px;
		margin-top: 30px;
	}

	.feature {
		padding: 15px;
	}

	.social-links {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.social-link {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}

	.contract-section {
		padding: 25px;
	}

	.contract-title {
		font-size: 1.3rem;
		margin-bottom: 15px;
	}

	.contract-address-container {
		flex-direction: column;
		gap: 15px;
	}

	.contract-input {
		text-align: center;
		font-size: 0.85rem;
		padding: 12px 15px;
	}

	.copy-button {
		padding: 10px;
		align-self: center;
	}
}

/* Mobile portrait (320px to 480px) */
@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.hero {
		padding: 50px 0 70px;
	}

	.title-main {
		font-size: 2.2rem;
		line-height: 1.1;
	}

	.title-japanese {
		font-size: 1.4rem;
		margin: 8px 0;
	}

	.title-ticker {
		font-size: 1.1rem;
		padding: 5px 18px;
	}

	.hero-subtitle {
		font-size: 1rem;
		margin-bottom: 35px;
		line-height: 1.5;
	}

	.section-title {
		font-size: 1.8rem;
		margin-bottom: 25px;
	}

	.logo-image {
		width: 100px;
		height: 100px;
	}

	.stats-grid {
		gap: 15px;
	}

	.stat-card {
		padding: 20px 12px;
	}

	.stat-label {
		font-size: 0.85rem;
	}

	.stat-value {
		font-size: 1.6rem;
	}

	.stat-change {
		font-size: 0.8rem;
	}

	.meme-story p {
		font-size: 0.95rem;
		line-height: 1.6;
		margin-bottom: 20px;
	}

	.feature {
		padding: 12px;
		flex-direction: column;
		text-align: center;
		gap: 8px;
	}

	.feature-icon {
		font-size: 1.3rem;
	}

	.feature-text {
		font-size: 0.9rem;
	}

	.social-link {
		padding: 12px 25px;
		font-size: 0.9rem;
	}

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

	.contract-section {
		padding: 20px;
	}

	.contract-title {
		font-size: 1.2rem;
	}

	.contract-input {
		font-size: 0.75rem;
		padding: 10px 12px;
	}

	.copy-button {
		padding: 8px;
	}

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

	.toast {
		bottom: 20px;
		right: 20px;
		left: 20px;
		text-align: center;
		font-size: 0.9rem;
		padding: 12px 20px;
	}

	.footer {
		padding: 20px 0;
		margin-top: 40px;
	}

	.footer-content {
		padding: 0 15px;
	}

	.footer-content p {
		font-size: 0.85rem;
	}
}

/* Extra small screens (320px and below) */
@media (max-width: 320px) {
	.container {
		padding: 0 10px;
	}

	.title-main {
		font-size: 1.8rem;
	}

	.title-japanese {
		font-size: 1.2rem;
	}

	.title-ticker {
		font-size: 1rem;
		padding: 4px 15px;
	}

	.hero-subtitle {
		font-size: 0.9rem;
	}

	.section-title {
		font-size: 1.6rem;
	}

	.logo-image {
		width: 90px;
		height: 90px;
	}

	.stat-card {
		padding: 15px 10px;
	}

	.stat-value {
		font-size: 1.4rem;
	}

	.meme-story p {
		font-size: 0.9rem;
	}

	.contract-section {
		padding: 15px;
	}

	.contract-input {
		font-size: 0.7rem;
		padding: 8px 10px;
	}
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
	.hero {
		padding: 30px 0 50px;
	}

	.logo-image {
		width: 80px;
		height: 80px;
	}

	.title-main {
		font-size: 2rem;
	}

	.title-japanese {
		font-size: 1.2rem;
	}

	.hero-subtitle {
		font-size: 0.9rem;
		margin-bottom: 20px;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
		max-width: 500px;
	}

	.stat-card {
		padding: 15px 10px;
	}

	.stat-value {
		font-size: 1.4rem;
	}
}