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

body {
	font-family: "Inter", sans-serif;
	background: #f5f2e8;
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
}

.background-pattern {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		radial-gradient(circle at 25% 25%, rgba(139, 69, 19, 0.1) 2px, transparent 2px),
		radial-gradient(circle at 75% 75%, rgba(139, 69, 19, 0.1) 2px, transparent 2px);
	background-size: 60px 60px;
	background-position: 0 0, 30px 30px;
	z-index: -1;
}

.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 1rem;
}

.container {
	max-width: 1200px;
	width: 100%;
}

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

.logo-container {
	margin-bottom: 3rem;
	display: flex;
	justify-content: center;
}

.logo-image {
	width: 200px;
	height: 200px;
	object-fit: contain;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	border: 4px solid #000;
	transition: transform 0.3s ease;
}

.title {
	font-size: clamp(2.5rem, 8vw, 5rem);
	font-weight: 800;
	color: #8b4513;
	margin-bottom: 1.5rem;
	text-shadow: 3px 3px 0px #000;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.subtitle {
	font-size: clamp(1.1rem, 3vw, 1.5rem);
	color: #654321;
	margin-bottom: 3rem;
	font-weight: 600;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.4;
}

.stats-container {
	display: flex;
	justify-content: center;
	gap: 4rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.stat-item {
	text-align: center;
	background: rgba(255, 255, 255, 0.9);
	padding: 1.5rem 2rem;
	border-radius: 20px;
	border: 3px solid #000;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	min-width: 180px;
}

.stat-label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	color: #666;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.stat-value {
	display: block;
	font-size: 1.8rem;
	font-weight: 800;
	color: #000;
}

.socials-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

.contract-address {
	background: rgba(255, 255, 255, 0.95);
	padding: 1.5rem 2rem;
	border-radius: 15px;
	border: 3px solid #000;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	max-width: 600px;
	width: 100%;
}

.ca-label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	color: #666;
	margin-bottom: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.ca-wrapper {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: #f8f9fa;
	padding: 1rem;
	border-radius: 10px;
	border: 2px solid #000;
}

.ca-text {
	font-family: "Courier New", monospace;
	font-size: 0.9rem;
	font-weight: 600;
	color: #000;
	flex: 1;
	word-break: break-all;
}

.copy-btn {
	background: #000;
	border: none;
	padding: 0.8rem;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
}

.copy-btn:hover {
	background: #333;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

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

.social-links {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: #000;
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-link:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
	background: #333;
}

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

.toast {
	position: fixed;
	top: 2rem;
	right: 2rem;
	background: #000;
	color: white;
	padding: 1rem 2rem;
	border-radius: 10px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	transform: translateX(400px);
	transition: transform 0.3s ease;
	z-index: 1000;
	font-weight: 600;
}

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

.toast-message {
	font-size: 0.9rem;
}

/* Responsive Design */

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

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

	.title {
		font-size: clamp(2.2rem, 6vw, 4rem);
	}

	.subtitle {
		font-size: clamp(1rem, 2.5vw, 1.3rem);
	}

	.stats-container {
		gap: 3rem;
	}

	.stat-item {
		padding: 1.2rem 1.8rem;
		min-width: 160px;
	}

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

/* Tablets */
@media (max-width: 768px) {
	.hero-section {
		padding: 1.5rem 1rem;
		min-height: 100vh;
	}

	.container {
		padding: 0 1rem;
	}

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

	.title {
		font-size: clamp(2rem, 7vw, 3.5rem);
		margin-bottom: 1.2rem;
	}

	.subtitle {
		font-size: clamp(0.95rem, 3vw, 1.2rem);
		margin-bottom: 2.5rem;
		max-width: 500px;
	}

	.stats-container {
		gap: 2rem;
		margin-bottom: 2.5rem;
	}

	.stat-item {
		padding: 1rem 1.5rem;
		min-width: 140px;
	}

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

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

	.contract-address {
		padding: 1.2rem;
		max-width: 500px;
	}

	.ca-label {
		font-size: 0.8rem;
		margin-bottom: 0.6rem;
	}

	.ca-wrapper {
		flex-direction: column;
		gap: 0.8rem;
		text-align: center;
		padding: 0.8rem;
	}

	.ca-text {
		font-size: 0.75rem;
		word-break: break-all;
	}

	.copy-btn {
		width: 100%;
		max-width: 200px;
		height: 40px;
	}

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

	.social-links {
		gap: 1.2rem;
	}

	.social-link {
		width: 55px;
		height: 55px;
	}

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

	.toast {
		top: 1rem;
		right: 1rem;
		left: 1rem;
		transform: translateY(-100px);
		padding: 0.8rem 1.5rem;
	}

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

/* Mobile phones */
@media (max-width: 480px) {
	.hero-section {
		padding: 1rem 0.5rem;
	}

	.container {
		padding: 0 0.5rem;
	}

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

	.title {
		font-size: clamp(1.8rem, 8vw, 2.8rem);
		margin-bottom: 1rem;
		line-height: 1.2;
	}

	.subtitle {
		font-size: clamp(0.9rem, 4vw, 1.1rem);
		margin-bottom: 2rem;
		padding: 0 1rem;
	}

	.stats-container {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		margin-bottom: 2rem;
	}

	.stat-item {
		width: 100%;
		max-width: 280px;
		padding: 1rem 1.2rem;
	}

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

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

	.contract-address {
		padding: 1rem;
		margin: 0 0.5rem;
	}

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

	.ca-wrapper {
		padding: 0.6rem;
		gap: 0.6rem;
	}

	.ca-text {
		font-size: 0.7rem;
		line-height: 1.3;
	}

	.copy-btn {
		height: 36px;
		padding: 0.6rem;
	}

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

	.social-links {
		gap: 1rem;
	}

	.social-link {
		width: 50px;
		height: 50px;
	}

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

	.toast {
		top: 0.5rem;
		right: 0.5rem;
		left: 0.5rem;
		padding: 0.6rem 1rem;
		font-size: 0.8rem;
	}

	.toast-message {
		font-size: 0.8rem;
	}
}

/* Extra small phones */
@media (max-width: 360px) {
	.hero-section {
		padding: 0.8rem 0.3rem;
	}

	.container {
		padding: 0 0.3rem;
	}

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

	.title {
		font-size: clamp(1.6rem, 9vw, 2.4rem);
	}

	.subtitle {
		font-size: clamp(0.85rem, 4.5vw, 1rem);
		padding: 0 0.5rem;
	}

	.stat-item {
		max-width: 260px;
		padding: 0.8rem 1rem;
	}

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

	.contract-address {
		margin: 0 0.3rem;
		padding: 0.8rem;
	}

	.ca-text {
		font-size: 0.65rem;
	}

	.social-link {
		width: 45px;
		height: 45px;
	}

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

/* Landscape orientation adjustments */
@media (max-height: 600px) and (orientation: landscape) {
	.hero-section {
		padding: 1rem;
		min-height: auto;
	}

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

	.title {
		font-size: clamp(1.8rem, 6vw, 3rem);
		margin-bottom: 0.8rem;
	}

	.subtitle {
		font-size: clamp(0.9rem, 2.5vw, 1.1rem);
		margin-bottom: 1.5rem;
	}

	.stats-container {
		margin-bottom: 1.5rem;
	}

	.socials-container {
		gap: 1.5rem;
	}
}