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

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	line-height: 1.6;
	color: #ffffff;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
	min-height: 100vh;
	overflow-x: hidden;
}

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	z-index: 1000;
	padding: 1rem 0;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-logo h2 {
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: -0.5rem;
}

.ticker {
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 600;
	font-size: 1.2rem;
}

.nav-links {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.nav-links a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.nav-links a:hover {
	color: #4ecdc4;
}

.nav-links a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	transition: width 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-buy-btn {
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	border-radius: 8px;
	padding: 0.5rem 1rem;
	font-weight: 600;
	box-shadow: 0 2px 8px rgba(78, 205, 196, 0.3);
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.nav-buy-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(78, 205, 196, 0.5);
	background: linear-gradient(45deg, #ff5252, #26a69a);
}

.nav-buy-btn::after {
	display: none;
}

/* Hero Section */
.hero {
	padding: 120px 0 80px;
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

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

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-content {
	animation: slideInLeft 1s ease-out;
	padding-top: 2rem;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.gradient-text {
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: block;
}

.ticker-large {
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 2.5rem;
	display: block;
	margin-top: 0.2rem;
}

.hero-subtitle {
	font-size: 1.2rem;
	color: #b0b0b0;
	margin-bottom: 2.5rem;
	line-height: 1.7;
}

.learn-more-link {
	color: #4ecdc4;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
}

.learn-more-link:hover {
	color: #ff6b6b;
	transform: translateY(-1px);
}

.learn-more-link::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	transition: width 0.3s ease;
}

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

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.stat-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 1.5rem;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
}

.stat-label {
	display: block;
	font-size: 0.9rem;
	color: #888;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.stat-value {
	display: block;
	font-size: 1.4rem;
	font-weight: 700;
	color: #ffffff;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	margin-top: 2rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.hero-btn {
	padding: 1rem 2rem;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 140px;
	text-align: center;
}

.about-btn {
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: #ffffff;
	backdrop-filter: blur(10px);
}

.about-btn:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.buy-btn {
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	border: 2px solid transparent;
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.buy-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(78, 205, 196, 0.5);
	background: linear-gradient(45deg, #ff5252, #26a69a);
}

.hero-image {
	display: flex;
	justify-content: center;
	align-items: center;
	animation: slideInRight 1s ease-out;
}

.token-symbol {
	position: relative;
}

.symbol-circle {
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	animation: pulse 2s infinite;
}

.symbol-circle::before {
	content: "";
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	border-radius: 50%;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
	opacity: 0.3;
	animation: rotate 3s linear infinite;
}

.token-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 1;
	border-radius: 50%;
}

/* About Section */
.about {
	padding: 80px 0;
	background: rgba(255, 255, 255, 0.02);
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 3rem;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.about-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-text p {
	font-size: 1.1rem;
	color: #d0d0d0;
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.contract-section {
	margin-top: 2rem;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.contract-section h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #ffffff;
}

.contract-address {
	display: flex;
	align-items: center;
	gap: 1rem;
}

#contractAddress {
	width: 100%;
	padding: 1rem;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	color: #ffffff;
	font-family: "Courier New", monospace;
	font-size: 0.9rem;
}

.copy-btn {
	padding: 1rem;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.copy-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
}

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

.about-image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.about-matt-image {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 400px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border: 3px solid rgba(255, 255, 255, 0.2);
}

.matt-about-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.about-matt-image:hover .matt-about-img {
	transform: scale(1.05);
}

/* Stats Section */
.stats {
	padding: 80px 0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.stat-item {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 2rem;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
}

.stat-icon {
	font-size: 2.5rem;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	border-radius: 12px;
}

.stat-info h3 {
	font-size: 1.1rem;
	color: #888;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.stat-number {
	font-size: 1.8rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.5rem;
}

.stat-change {
	font-size: 0.9rem;
	font-weight: 600;
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
}

.stat-change.positive {
	color: #4ecdc4;
	background: rgba(78, 205, 196, 0.1);
}

.stat-change.negative {
	color: #ff6b6b;
	background: rgba(255, 107, 107, 0.1);
}

/* Community Section */
.community {
	padding: 80px 0;
	background: rgba(255, 255, 255, 0.02);
}

.community-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.community-link {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem 2rem;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	border-radius: 12px;
	text-decoration: none;
	color: #ffffff;
	font-weight: 600;
	font-size: 1.1rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-link:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);
}

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

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

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
}

.footer-logo h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-logo p {
	color: #888;
}

.footer-disclaimer {
	max-width: 400px;
}

.footer-disclaimer p {
	color: #666;
	font-size: 0.9rem;
	line-height: 1.6;
}

.footer-disclaimer a {
	color: #4ecdc4;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
}

.footer-disclaimer a:hover {
	color: #ff6b6b;
	transform: translateY(-1px);
}

.footer-disclaimer a::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	transition: width 0.3s ease;
}

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

/* Toast Notification */
.toast {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	color: #ffffff;
	padding: 1rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
	transform: translateX(400px);
	transition: transform 0.3s ease;
	z-index: 10000;
}

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

/* Animations */
@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
	.container {
		padding: 0 15px;
	}

	.hero-container {
		gap: 3rem;
	}

	.hero-title {
		font-size: 3rem;
	}

	.ticker-large {
		font-size: 2.2rem;
	}

	.symbol-circle {
		width: 360px;
		height: 360px;
	}
}

/* Small screens - hide nav buy button */
@media (max-width: 530px) {
	.nav-buy-btn {
		display: none;
	}
}

/* Tablets */
@media (max-width: 768px) {
	.nav-links {
		display: flex;
		gap: 1rem;
		align-items: center;
	}

	.nav-links a:not(.nav-buy-btn) {
		display: none;
	}

	.nav-buy-btn {
		padding: 0.4rem 0.8rem;
		font-size: 0.9rem;
	}

	.hero-image {
		display: none;
	}

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

	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2.5rem;
	}

	.hero-title {
		font-size: 2.5rem;
		line-height: 1.2;
	}

	.ticker-large {
		font-size: 2rem;
	}

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

	.hero-stats {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-top: 2rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		margin-top: 2rem;
		margin-bottom: 2rem;
	}

	.hero-btn {
		width: 100%;
		max-width: 250px;
		padding: 1.2rem 2rem;
		font-size: 1.1rem;
	}

	.about {
		padding: 60px 0;
	}

	.about-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.about-matt-image {
		min-height: 300px;
	}

	.section-title {
		font-size: 2rem;
		margin-bottom: 2rem;
	}

	.community {
		padding: 60px 0;
	}

	.community-links {
		flex-direction: column;
		align-items: center;
		gap: 1.5rem;
	}

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

	.footer {
		padding: 30px 0;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
		gap: 1.5rem;
	}

	.symbol-circle {
		width: 150px;
		height: 150px;
	}

	.contract-section {
		padding: 1.5rem;
	}

	.contract-address {
		flex-direction: column;
		gap: 1rem;
	}

	#contractAddress {
		font-size: 0.9rem;
		padding: 0.8rem;
	}
}

/* Mobile devices */
@media (max-width: 480px) {
	.container {
		padding: 0 10px;
	}

	.navbar {
		padding: 0.8rem 0;
	}

	.nav-logo h2 {
		font-size: 1.3rem;
	}

	.ticker {
		font-size: 0.8rem;
	}

	.nav-buy-btn {
		padding: 0.4rem 0.7rem;
		font-size: 0.8rem;
	}

	.hero {
		padding: 80px 0 40px;
		min-height: 90vh;
	}

	.hero-container {
		gap: 2rem;
	}

	.hero-title {
		font-size: 2rem;
		line-height: 1.1;
	}

	.ticker-large {
		font-size: 1.5rem;
	}

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

	.hero-stats {
		gap: 0.8rem;
		margin-top: 1.5rem;
	}

	.stat-card {
		padding: 1rem;
	}

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

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

	.hero-buttons {
		gap: 0.8rem;
		margin-top: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.hero-btn {
		padding: 1rem 1.5rem;
		font-size: 1rem;
		min-width: 120px;
	}

	.about {
		padding: 40px 0;
	}

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

	.about-text p {
		font-size: 1rem;
		line-height: 1.7;
	}

	.contract-section {
		padding: 1rem;
		margin-top: 1.5rem;
	}

	.contract-section h3 {
		font-size: 1.1rem;
		margin-bottom: 0.8rem;
	}

	#contractAddress {
		font-size: 0.8rem;
		padding: 0.7rem;
	}

	.copy-btn {
		padding: 0.7rem;
	}

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

	.community {
		padding: 40px 0;
	}

	.community-link {
		padding: 1.2rem 1.5rem;
		font-size: 1rem;
	}

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

	.footer {
		padding: 20px 0;
	}

	.footer-logo h3 {
		font-size: 1.3rem;
	}

	.footer-logo p {
		font-size: 0.9rem;
	}

	.footer-disclaimer p {
		font-size: 0.8rem;
	}

	.footer-disclaimer a {
		font-size: 0.8rem;
	}

	.symbol-circle {
		width: 120px;
		height: 120px;
	}

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

	.about-matt-image {
		min-height: 250px;
	}
}

/* Extra small devices */
@media (max-width: 320px) {
	.container {
		padding: 0 8px;
	}

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

	.ticker-large {
		font-size: 1.3rem;
	}

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

	.stat-card {
		padding: 0.8rem;
	}

	.hero-btn {
		padding: 0.8rem 1.2rem;
		font-size: 0.9rem;
	}

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

	.symbol-circle {
		width: 100px;
		height: 100px;
	}

	.token-image {
		width: 70px;
		height: 70px;
	}
}

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

	.hero-container {
		gap: 1.5rem;
	}

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

	.ticker-large {
		font-size: 1.5rem;
	}

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

	.hero-buttons {
		margin-top: 1rem;
		margin-bottom: 1rem;
	}

	.symbol-circle {
		width: 100px;
		height: 100px;
	}

	.token-image {
		width: 70px;
		height: 70px;
	}
}