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

img {
	max-width: 100%;
	height: auto;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800;900&display=swap");

:root {
	--red-primary: #d5351d;
	--red-secondary: #b02a16;
	--red-light: #e85a45;
	--red-lighter: #ff6b5a;
	--red-dark: #8b1f0f;
	--orange-accent: #ff8800;
	--bg-dark: #0a0505;
	--bg-darker: #050202;
	--bg-card: rgba(10, 5, 5, 0.6);
	--border-subtle: rgba(213, 53, 29, 0.2);
	--text-light: #ffffff;
	--text-muted: #cccccc;
}

body {
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	background: var(--bg-dark);
	color: var(--text-light);
	line-height: 1.6;
	overflow-x: hidden;
	position: relative;
	min-height: 100vh;
	width: 100%;
	max-width: 100vw;
}

/* Animated Background Particles */
body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 20% 30%, rgba(213, 53, 29, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(255, 136, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 50% 50%, rgba(213, 53, 29, 0.1) 0%, transparent 50%),
		linear-gradient(180deg, #0a0505 0%, #1a0a0a 50%, #0a0505 100%);
	background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
	z-index: -1;
	animation: particleMove 20s ease-in-out infinite;
}

@keyframes particleMove {

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

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

/* Navigation */
.navbar {
	background: rgba(10, 5, 5, 0.8);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(213, 53, 29, 0.2);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 1rem 0;
	width: 100%;
	max-width: 100vw;
	box-sizing: border-box;
	overflow-x: hidden;
}

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
}

.nav-logo {
	background: none;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
	display: flex;
	align-items: center;
}

.nav-logo-text {
	height: 32px;
	width: auto;
	object-fit: contain;
	filter: drop-shadow(0 0 10px rgba(213, 53, 29, 0.8));
	transition: all 0.3s ease;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	image-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.nav-logo:hover .nav-logo-text {
	transform: scale(1.05);
	filter: drop-shadow(0 0 15px rgba(213, 53, 29, 1));
}

.burger-btn {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 30px;
	height: 30px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
	position: relative;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.mobile-menu {
	display: none;
}

.burger-btn span {
	width: 100%;
	height: 3px;
	background: var(--text-light);
	border-radius: 3px;
	transition: all 0.3s ease;
	transform-origin: center;
}

.burger-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.burger-btn.active span:nth-child(2) {
	opacity: 0;
}

.burger-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

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

.nav-link {
	background: none;
	border: none;
	color: var(--text-light);
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
}

.nav-link:hover {
	color: var(--red-light);
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--red-primary);
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 80%;
}

.buy-now-btn {
	background: var(--red-primary);
	color: var(--text-light);
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	font-family: "Poppins", sans-serif;
	transition: all 0.3s ease;
	box-shadow: 0 0 20px rgba(213, 53, 29, 0.5);
	border: none;
	cursor: pointer;
}

.buy-now-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 30px rgba(213, 53, 29, 0.8);
	background: var(--red-light);
}

/* Hero Section */
.hero-section {
	padding: 4rem 2rem;
	text-align: center;
	min-height: 85vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.hero-content {
	max-width: 900px;
	width: 100%;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.logo-text {
	max-width: 400px;
	width: 100%;
	height: auto;
	margin-bottom: 4.5rem;
	object-fit: contain;
	filter: drop-shadow(0 0 30px rgba(213, 53, 29, 0.8));
	animation: fadeInDown 0.8s ease-out;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	image-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: translateZ(0);
	backface-visibility: hidden;
}

.bear-logo {
	background: none;
	border: none;
	cursor: pointer;
	margin-bottom: 2rem;
	display: inline-block;
	position: relative;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: transparent;
}

.bear-logo::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(213, 53, 29, 0.8) 0%, rgba(213, 53, 29, 0.4) 30%, transparent 70%);
	border-radius: 50%;
	animation: blinkGlow 0.25s ease-in-out infinite;
	z-index: -1;
}

@keyframes blinkGlow {

	0%,
	100% {
		opacity: 0.3;
		transform: translate(-50%, -50%) scale(1);
	}

	50% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.05);
	}
}

.bear-logo img {
	width: 350px;
	height: 350px;
	object-fit: contain;
	filter: drop-shadow(0 0 50px var(--red-primary));
	transition: transform 0.2s ease, filter 0.2s ease;
	position: relative;
	z-index: 1;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-touch-callout: none;
	pointer-events: none;
}

.bear-logo:hover img {
	transform: scale(1.05);
	filter: drop-shadow(0 0 60px var(--red-primary));
}

.bear-logo:active img {
	transform: scale(0.95);
}


.pops-counter {
	margin-bottom: 2.5rem;
	background: rgba(10, 5, 5, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	padding: 1.5rem 2.5rem;
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	display: inline-block;
	margin-top: 0;
}

.pops-header {
	margin-bottom: 0;
}

.pops-header p:first-child {
	font-size: 0.75rem;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 800;
	font-family: "Poppins", sans-serif;
	color: var(--text-light);
	display: block;
}

.pops-count {
	font-size: 4rem;
	font-weight: 800;
	font-family: "Poppins", sans-serif;
	display: block;
	line-height: 1;
}

.pops-count .digit-group {
	display: inline-block;
}

.pops-count .digit-group-1 {
	background: linear-gradient(90deg, var(--red-primary) 0%, #ff6b9d 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.pops-count .digit-group-2 {
	background: linear-gradient(90deg, var(--orange-accent) 0%, #ffd700 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.pops-count .digit-group-3 {
	background: linear-gradient(90deg, #ff6b9d 0%, var(--red-primary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}


.pops-description {
	color: var(--text-light);
	font-size: 0.95rem;
	margin-top: 1.5rem;
	opacity: 0.85;
	font-weight: 300;
	font-family: "Poppins", sans-serif;
}

.creator-rewards-notice {
	margin-top: 2rem;
	margin-bottom: 1rem;
	padding: 1.5rem 2rem;
	background: linear-gradient(135deg, rgba(213, 53, 29, 0.25) 0%, rgba(255, 136, 0, 0.2) 100%);
	border: 2px solid rgba(213, 53, 29, 0.6);
	border-radius: 16px;
	backdrop-filter: blur(15px);
	box-shadow: 
		0 8px 32px rgba(213, 53, 29, 0.4),
		0 0 40px rgba(213, 53, 29, 0.3),
		inset 0 0 20px rgba(255, 136, 0, 0.1);
	animation: fadeInUp 0.6s ease-out;
}

.creator-rewards-text {
	color: var(--text-light);
	font-size: 1.1rem;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
	margin: 0;
	text-align: center;
	background: linear-gradient(135deg, #ffffff 0%, #ff8800 50%, #d5351d 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 20px rgba(255, 136, 0, 0.5);
	position: relative;
	z-index: 1;
	letter-spacing: 0.5px;
}


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

.btn {
	padding: 0.75rem 2.5rem;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	cursor: pointer;
	border: none;
	line-height: 1;
}

.btn-primary {
	background: var(--red-primary);
	color: var(--text-light);
	box-shadow: 0 0 25px rgba(213, 53, 29, 0.6);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 0 40px rgba(213, 53, 29, 0.9);
	background: var(--red-light);
}

.btn-secondary {
	background: transparent;
	color: var(--text-light);
	border: 2px solid var(--red-primary);
	box-shadow: 0 0 15px rgba(213, 53, 29, 0.3);
}

.btn-secondary:hover {
	background: rgba(213, 53, 29, 0.1);
	border-color: var(--red-light);
	box-shadow: 0 0 25px rgba(213, 53, 29, 0.5);
	transform: translateY(-3px);
}

/* Particles */
.particles-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: var(--red-primary);
	border-radius: 50%;
	opacity: 0.6;
	animation: floatParticle 15s infinite linear;
	box-shadow: 0 0 6px var(--red-primary);
}

.particle:nth-child(2n) {
	background: var(--orange-accent);
	box-shadow: 0 0 6px var(--orange-accent);
	animation-duration: 20s;
}

.particle:nth-child(3n) {
	width: 3px;
	height: 3px;
	opacity: 0.4;
	animation-duration: 25s;
}

.particle:nth-child(4n) {
	width: 5px;
	height: 5px;
	opacity: 0.8;
	animation-duration: 18s;
}

@keyframes floatParticle {
	0% {
		transform: translateY(100vh) translateX(0) rotate(0deg);
		opacity: 0;
	}

	10% {
		opacity: 0.6;
	}

	90% {
		opacity: 0.6;
	}

	100% {
		transform: translateY(-100px) translateX(100px) rotate(360deg);
		opacity: 0;
	}
}

.particle:nth-child(1) {
	left: 10%;
	animation-delay: 0s;
}

.particle:nth-child(2) {
	left: 20%;
	animation-delay: 1s;
}

.particle:nth-child(3) {
	left: 30%;
	animation-delay: 2s;
}

.particle:nth-child(4) {
	left: 40%;
	animation-delay: 0.5s;
}

.particle:nth-child(5) {
	left: 50%;
	animation-delay: 1.5s;
}

.particle:nth-child(6) {
	left: 60%;
	animation-delay: 2.5s;
}

.particle:nth-child(7) {
	left: 70%;
	animation-delay: 0.8s;
}

.particle:nth-child(8) {
	left: 80%;
	animation-delay: 1.8s;
}

.particle:nth-child(9) {
	left: 15%;
	animation-delay: 3s;
}

.particle:nth-child(10) {
	left: 25%;
	animation-delay: 0.3s;
}

.particle:nth-child(11) {
	left: 35%;
	animation-delay: 1.3s;
}

.particle:nth-child(12) {
	left: 45%;
	animation-delay: 2.3s;
}

.particle:nth-child(13) {
	left: 55%;
	animation-delay: 0.7s;
}

.particle:nth-child(14) {
	left: 65%;
	animation-delay: 1.7s;
}

.particle:nth-child(15) {
	left: 75%;
	animation-delay: 2.7s;
}

/* Section Styles */
section {
	padding: 5rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	width: 100%;
	box-sizing: border-box;
}

section.hero-section {
	opacity: 1;
	transform: translateY(0);
}

section.visible {
	opacity: 1;
	transform: translateY(0);
}

section h2 {
	font-size: 3rem;
	margin-bottom: 1rem;
	text-align: center;
	position: relative;
	display: block;
	width: 100%;
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	margin-bottom: 3rem;
	letter-spacing: -0.5px;
}

.contract-title-part:first-child {
	color: #ff6b9d;
	filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.5));
}

.contract-title-part:last-child {
	color: var(--orange-accent);
	filter: drop-shadow(0 0 10px rgba(255, 136, 0, 0.5));
}

.about-title-part {
	color: #ff6b9d;
	filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.5));
}

.about-title-popbear {
	background: linear-gradient(90deg, var(--orange-accent), #ffd700);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 0 10px rgba(255, 136, 0, 0.5));
}

section h2::after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 4px;
	background: linear-gradient(90deg, #ff6b9d, var(--orange-accent));
	border-radius: 2px;
	box-shadow: 0 0 10px rgba(255, 107, 157, 0.5);
}

section h3 {
	color: var(--text-light);
	margin-bottom: 1rem;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
}

/* Contract Section */
.contract-content {
	background: var(--bg-card);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border-subtle);
	border-radius: 16px;
	padding: 2.5rem;
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.token-badge {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.token-icon-wrapper {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	background: rgba(255, 107, 157, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
}

.token-icon {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 8px;
}

.token-info p {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-bottom: 0.25rem;
	font-family: "Poppins", sans-serif;
}

.token-info h3 {
	color: var(--text-light);
	font-size: 1.3rem;
	font-weight: 700;
	margin: 0;
	font-family: "Poppins", sans-serif;
}

.contract-address {
	text-align: center;
}

.contract-address>p:first-child {
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 1rem;
	font-size: 0.85rem;
	font-family: "Poppins", sans-serif;
}

.address-container {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.address-container code,
.copy-btn {
	padding: 1rem 1.5rem;
	border: 1px solid var(--border-subtle);
	border-radius: 8px;
	box-sizing: border-box;
	line-height: 1.5;
	font-size: 1rem;
	margin: 0;
	display: flex;
	align-items: center;
	height: 100%;
}

.address-container code {
	background: rgba(255, 255, 255, 0.05);
	color: var(--text-light);
	font-family: "Courier New", monospace;
	flex: 1;
	min-width: 200px;
}

.copy-btn {
	background: rgba(0, 0, 0, 0.4);
	color: var(--text-light);
	cursor: pointer;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	transition: all 0.3s ease;
	justify-content: center;
	gap: 0.5rem;
	white-space: nowrap;
}

.copy-btn:hover {
	background: rgba(0, 0, 0, 0.6);
	transform: translateY(-2px);
}

/* Toast Notification */
.toast {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background: var(--red-primary);
	color: var(--text-light);
	padding: 1rem 1.5rem;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(213, 53, 29, 0.4);
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	z-index: 10000;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	pointer-events: none;
}

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

.toast.toast-error {
	background: #dc3545;
	box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
}

.warning-box {
	background: rgba(255, 136, 0, 0.15);
	border: 1px solid rgba(255, 136, 0, 0.3);
	border-radius: 8px;
	padding: 1rem 1.5rem;
	margin-top: 1rem;
}

.warning {
	color: var(--text-light);
	font-size: 0.9rem;
	margin: 0;
	font-family: "Poppins", sans-serif;
}

.warning strong {
	color: var(--orange-accent);
	font-weight: 700;
}

/* About Section */
.about-section {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.about-text {
	text-align: center;
	max-width: 800px;
	margin-bottom: 3rem;
}

.about-text p {
	color: var(--text-light);
	font-size: 1.1rem;
	line-height: 1.8;
	font-family: "Poppins", sans-serif;
}

.token-stats {
	background: var(--bg-card);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border-subtle);
	border-radius: 16px;
	padding: 2.5rem;
	width: 100%;
	max-width: 800px;
}

.token-stats h3 {
	color: #ff6b9d;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 2rem;
	font-family: "Poppins", sans-serif;
}

.stats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.stat-item {
	text-align: center;
	padding: 1.5rem 1rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 8px;
	border: 1px solid var(--border-subtle);
}

.stat-item p:first-child {
	color: var(--text-muted);
	margin-bottom: 0.75rem;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
}

.stat-item p:last-child {
	color: #ff6b9d;
	font-size: 1.5rem;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
}

.stat-item:nth-child(3) p:last-child {
	background: linear-gradient(90deg, var(--orange-accent), #ffd700);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Burn stat item styling */
.stat-item-burn {
	position: relative;
	overflow: hidden;
	background: rgba(213, 53, 29, 0.1);
	border: 1px solid rgba(213, 53, 29, 0.3);
	grid-column: 1 / -1; /* Span full width */
}

.stat-item-burn::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(255, 136, 0, 0.15) 0%,
		transparent 70%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.stat-item-burn:hover::before {
	opacity: 1;
}

.burn-value {
	background: linear-gradient(135deg, #ff8800 0%, #d5351d 50%, #ff6b9d 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
	position: relative;
	transition: all 0.3s ease;
}

.burn-value.burn-updated {
	animation: burnPulse 0.6s ease-out;
}

.burn-value.burn-error {
	color: var(--text-muted);
	background: none;
	-webkit-text-fill-color: var(--text-muted);
}

@keyframes burnPulse {
	0% {
		transform: scale(1);
		filter: brightness(1);
	}
	50% {
		transform: scale(1.15);
		filter: brightness(1.3);
	}
	100% {
		transform: scale(1);
		filter: brightness(1);
	}
}

/* Roadmap Section */
.roadmap-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 4rem 2rem;
}

.roadmap-title-part {
	color: #ff6b9d;
	filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.5));
	animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

	0%,
	100% {
		filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.5));
	}

	50% {
		filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.8));
	}
}

#roadmap h2::after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 4px;
	background: linear-gradient(90deg, #ff6b9d, var(--orange-accent));
	border-radius: 2px;
	box-shadow: 0 0 10px rgba(255, 107, 157, 0.5);
	animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

	0%,
	100% {
		box-shadow: 0 0 10px rgba(255, 107, 157, 0.5);
	}

	50% {
		box-shadow: 0 0 20px rgba(255, 107, 157, 0.8), 0 0 30px rgba(255, 136, 0, 0.6);
	}
}

.roadmap-content {
	width: 100%;
	max-width: 1000px;
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 3rem;
	position: relative;
	padding-left: 2rem;
}

.roadmap-item {
	position: relative;
	padding-left: 3rem;
	opacity: 0;
	transform: translateX(-30px);
	animation: fadeInRoadmap 0.8s ease-out forwards;
	transition: all 0.3s ease;
}

.roadmap-item:nth-child(1) {
	animation-delay: 0.1s;
}

.roadmap-item:nth-child(2) {
	animation-delay: 0.3s;
}

.roadmap-item:nth-child(3) {
	animation-delay: 0.5s;
}

.roadmap-item:hover {
	transform: translateX(-10px);
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

.roadmap-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--red-primary), var(--orange-accent));
	border: 4px solid var(--bg-dark);
	box-shadow:
		0 0 20px rgba(213, 53, 29, 0.8),
		0 0 40px rgba(255, 136, 0, 0.4),
		inset 0 0 10px rgba(255, 255, 255, 0.2);
	z-index: 2;
	animation: pulseMarker 2s ease-in-out infinite;
	transition: all 0.3s ease;
}

.roadmap-item:hover::before {
	transform: scale(1.2);
	box-shadow:
		0 0 30px rgba(213, 53, 29, 1),
		0 0 60px rgba(255, 136, 0, 0.6),
		inset 0 0 15px rgba(255, 255, 255, 0.3);
}

@keyframes pulseMarker {

	0%,
	100% {
		box-shadow:
			0 0 20px rgba(213, 53, 29, 0.8),
			0 0 40px rgba(255, 136, 0, 0.4),
			inset 0 0 10px rgba(255, 255, 255, 0.2);
	}

	50% {
		box-shadow:
			0 0 30px rgba(213, 53, 29, 1),
			0 0 60px rgba(255, 136, 0, 0.6),
			inset 0 0 15px rgba(255, 255, 255, 0.3);
	}
}

.roadmap-item::after {
	content: "";
	position: absolute;
	left: 11px;
	top: 24px;
	width: 3px;
	height: calc(100% + 3rem);
	background: linear-gradient(180deg, var(--red-primary) 0%, var(--orange-accent) 50%, transparent 100%);
	z-index: 1;
	animation: flowLine 3s ease-in-out infinite;
}

@keyframes flowLine {

	0%,
	100% {
		opacity: 0.6;
		box-shadow: 0 0 5px rgba(213, 53, 29, 0.5);
	}

	50% {
		opacity: 1;
		box-shadow: 0 0 15px rgba(213, 53, 29, 0.8);
	}
}

.roadmap-item:last-child::after {
	display: none;
}

.roadmap-phase {
	background: linear-gradient(135deg, rgba(213, 53, 29, 0.1) 0%, rgba(255, 136, 0, 0.05) 100%);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border-subtle);
	border-radius: 16px;
	padding: 1.5rem;
	margin-bottom: 1rem;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.roadmap-phase::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;
}

.roadmap-item:hover .roadmap-phase::before {
	left: 100%;
}

.roadmap-item:hover .roadmap-phase {
	border-color: var(--orange-accent);
	box-shadow:
		0 4px 30px rgba(213, 53, 29, 0.4),
		0 0 20px rgba(255, 136, 0, 0.2);
	transform: translateY(-2px);
}

.roadmap-phase h3 {
	color: var(--orange-accent);
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	font-family: "Poppins", sans-serif;
	text-shadow: 0 0 10px rgba(255, 136, 0, 0.5);
	position: relative;
	z-index: 1;
}

.roadmap-phase p {
	color: var(--text-light);
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
	font-family: "Poppins", sans-serif;
	position: relative;
	z-index: 1;
}

.roadmap-description {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid var(--border-subtle);
	border-radius: 12px;
	padding: 1.5rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.roadmap-item:hover .roadmap-description {
	border-color: rgba(255, 136, 0, 0.4);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.roadmap-description p {
	color: var(--text-muted);
	font-size: 1rem;
	line-height: 1.7;
	margin: 0;
	font-family: "Poppins", sans-serif;
}

.roadmap-description ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.roadmap-description li {
	color: var(--text-muted);
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 0.5rem;
	padding-left: 1.5rem;
	position: relative;
	font-family: "Poppins", sans-serif;
	transition: all 0.3s ease;
	opacity: 0.9;
}

.roadmap-item:hover .roadmap-description li {
	opacity: 1;
	color: var(--text-light);
	transform: translateX(5px);
}

.roadmap-description li::before {
	content: "▶";
	color: var(--orange-accent);
	font-size: 0.8rem;
	position: absolute;
	left: 0;
	top: 0.2rem;
	transition: all 0.3s ease;
	text-shadow: 0 0 8px rgba(255, 136, 0, 0.6);
}

.roadmap-item:hover .roadmap-description li::before {
	transform: translateX(3px);
	text-shadow: 0 0 12px rgba(255, 136, 0, 0.9);
}

/* How to Buy Section */
.how-to-buy-section {
	padding: 4rem 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
}

.how-to-buy-title-part {
	color: var(--orange-accent);
	font-family: "Poppins", sans-serif;
	filter: drop-shadow(0 0 10px rgba(255, 136, 0, 0.5));
}

#how-to-buy h2::after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 4px;
	background: linear-gradient(90deg, #ff6b9d, var(--orange-accent));
	border-radius: 2px;
	box-shadow: 0 0 10px rgba(255, 107, 157, 0.5);
}

.how-to-buy-subtitle {
	color: var(--text-light);
	font-size: 1.1rem;
	font-family: "Poppins", sans-serif;
	text-align: center;
	margin-top: 2rem;
	margin-bottom: 3rem;
	font-weight: 400;
}

.steps-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	width: 100%;
	margin-bottom: 3rem;
}

.step-card {
	background: linear-gradient(135deg, rgba(213, 53, 29, 0.1) 0%, rgba(255, 136, 0, 0.05) 100%);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 2rem;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	min-height: 280px;
}

.step-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 136, 0, 0.4);
	box-shadow:
		0 8px 30px rgba(213, 53, 29, 0.4),
		0 0 20px rgba(255, 136, 0, 0.2);
}

.step-number {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 4rem;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.1);
	font-family: "Poppins", sans-serif;
	line-height: 1;
	z-index: 0;
}

.step-icon {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.step-icon svg {
	width: 28px;
	height: 28px;
	color: var(--text-light);
	stroke: var(--text-light);
}

.step-icon-wallet {
	background: linear-gradient(135deg, #ff6b9d, #c44569);
}

.step-icon-dollar {
	background: linear-gradient(135deg, var(--orange-accent), #ff6b00);
}

.step-icon-send {
	background: linear-gradient(135deg, #ff6b9d, #ff8fab);
}

.step-icon-swap {
	background: linear-gradient(135deg, #ff6b9d, #c44569);
}

.step-card h3 {
	color: var(--text-light);
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	font-family: "Poppins", sans-serif;
	position: relative;
	z-index: 1;
}

.step-card p {
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.6;
	font-family: "Poppins", sans-serif;
	position: relative;
	z-index: 1;
	margin: 0;
}

.how-to-buy-help {
	color: var(--text-light);
	font-size: 1rem;
	font-family: "Poppins", sans-serif;
	text-align: center;
	margin-top: 2rem;
	font-weight: 400;
}

/* Animations */

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

	.nav-links {
		gap: 0.8rem;
		font-size: 0.9rem;
	}

	.nav-link {
		padding: 0.5rem 1rem;
	}

	.hero-section {
		padding: 3rem 1.5rem;
		min-height: 80vh;
	}

	.hero-content {
		padding-top: 2rem;
	}

	.logo-text {
		max-width: 320px;
		margin-bottom: 3.5rem;
	}

	.bear-logo img {
		width: 300px;
		height: 300px;
	}

	.bear-logo::before {
		width: 350px;
		height: 350px;
	}

	.pops-count {
		font-size: 3.5rem;
	}

	.contract-content {
		padding: 2rem;
	}

	.community-cards {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}

	.steps-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	section {
		padding: 4rem 1.5rem;
	}

	section h2 {
		font-size: 2.5rem;
	}
}

/* Mobile */
@media (max-width: 768px) {
	html {
		overflow-x: hidden;
		width: 100%;
	}

	body {
		width: 100%;
		max-width: 100vw;
		overflow-x: hidden;
	}

	body.nav-open {
		overflow: hidden;
	}

	.navbar {
		width: 100%;
		max-width: 100vw;
		overflow-x: hidden;
		z-index: 10000;
	}

	body.nav-open .navbar {
		z-index: 10000;
	}

	.nav-container {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 1rem;
		padding: 0 1rem;
		width: 100%;
		max-width: 100%;
	}

	.burger-btn {
		display: flex;
		width: 40px;
		height: 40px;
		padding: 5px;
		min-width: 44px;
		min-height: 44px;
		z-index: 10000;
		position: relative;
	}

	.nav-logo-text {
		height: 28px;
	}

	.nav-links {
		display: none;
	}

	/* Mobile Menu - Separate from desktop nav */
	.mobile-menu {
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(10, 5, 5, 0.98);
		backdrop-filter: blur(20px);
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding: 2rem 1rem;
		gap: 1rem;
		z-index: 9999;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
		overflow-y: auto;
	}

	.mobile-menu.active {
		display: flex;
	}

	.mobile-nav-link {
		background: none;
		border: none;
		color: var(--text-light);
		cursor: pointer;
		font-size: 1rem;
		font-weight: 600;
		font-family: "Poppins", sans-serif;
		padding: 1rem;
		text-align: center;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		width: 100%;
		transition: all 0.3s ease;
	}

	.mobile-nav-link:hover {
		color: var(--red-light);
		background: rgba(213, 53, 29, 0.1);
	}

	.mobile-nav-link:last-of-type {
		border-bottom: none;
	}

	.mobile-buy-now-btn {
		width: 100%;
		padding: 1rem;
		font-size: 1rem;
		text-align: center;
		margin-top: 0.5rem;
		background: linear-gradient(135deg, var(--red-primary) 0%, var(--orange-accent) 100%);
		color: white;
		text-decoration: none;
		border-radius: 8px;
		font-weight: 600;
		transition: all 0.3s ease;
	}

	.mobile-buy-now-btn:hover {
		transform: scale(1.05);
		box-shadow: 0 4px 15px rgba(213, 53, 29, 0.5);
	}

	.hero-section {
		padding: 2rem 1rem;
		min-height: auto;
	}

	.hero-content {
		width: 100%;
	}

	.hero-content {
		padding-top: 1.5rem;
	}

	.logo-text {
		max-width: 280px;
		margin-bottom: 3rem;
	}

	.bear-logo img {
		width: 250px;
		height: 250px;
	}

	.bear-logo::before {
		width: 300px;
		height: 300px;
	}

	.pops-count {
		font-size: 2.8rem;
	}

	.pops-header p:first-child {
		font-size: 0.7rem;
	}

	.pops-description {
		font-size: 0.85rem;
	}

	.creator-rewards-notice {
		padding: 1.25rem 1.5rem;
		margin-top: 1.5rem;
	}

	.creator-rewards-text {
		font-size: 1rem;
	}

	.nav-link {
		font-size: 0.85rem;
	}

	.pops-counter {
		padding: 1rem 1.5rem;
	}

	.btn {
		padding: 0.65rem 2rem;
		font-size: 0.9rem;
		width: 100%;
		max-width: 280px;
	}

	.contract-section,
	.about-section,
	.roadmap-section,
	.how-to-buy-section,
	.community-section {
		padding: 3rem 1rem;
		width: 100%;
		max-width: 100vw;
		box-sizing: border-box;
		overflow-x: hidden;
	}

	.contract-content {
		padding: 1.5rem;
	}

	.token-badge {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.token-icon-wrapper {
		width: 50px;
		height: 50px;
	}

	.token-info h3 {
		font-size: 1.1rem;
	}

	.stats-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.address-container {
		flex-direction: column;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.address-container code {
		font-size: 0.85rem;
		word-break: break-all;
		width: 100%;
		max-width: 100%;
		padding: 0.8rem 1rem;
		box-sizing: border-box;
		overflow-wrap: break-word;
	}

	.copy-btn {
		width: 100%;
		max-width: 100%;
		padding: 0.8rem 1rem;
		box-sizing: border-box;
	}

	.about-text {
		padding: 0 1rem;
	}

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

	.token-stats {
		padding: 1.5rem;
		margin: 0 1rem;
	}

	.token-stats h3 {
		font-size: 1.5rem;
	}

	section h2 {
		font-size: 2rem;
	}

	.roadmap-content {
		padding-left: 1.5rem;
	}

	.roadmap-item {
		padding-left: 2.5rem;
	}

	.roadmap-item::before {
		width: 16px;
		height: 16px;
		left: -8px;
	}

	.roadmap-item::after {
		left: 0px;
	}

	.roadmap-phase {
		padding: 1rem;
	}

	.roadmap-phase h3 {
		font-size: 1.2rem;
	}

	.roadmap-description {
		padding: 1rem;
	}

	.roadmap-description p {
		font-size: 0.9rem;
	}

	.roadmap-description li {
		font-size: 0.9rem;
	}

	.steps-container {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		width: 100%;
		max-width: 100%;
		padding: 0;
	}

	.step-card {
		min-height: auto;
		padding: 1.5rem;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		overflow-wrap: break-word;
	}

	.step-number {
		font-size: 3rem;
	}

	.step-icon {
		width: 50px;
		height: 50px;
		font-size: 1.5rem;
	}

	.step-icon svg {
		width: 24px;
		height: 24px;
	}

	.step-card h3 {
		font-size: 1.1rem;
	}

	.step-card p {
		font-size: 0.9rem;
	}

	.how-to-buy-subtitle {
		font-size: 1rem;
		margin-bottom: 2rem;
	}

	.how-to-buy-help {
		font-size: 0.9rem;
	}

	.community-cards {
		grid-template-columns: 1fr !important;
		gap: 1.5rem;
		width: 100%;
		max-width: 100%;
		padding: 0;
		display: grid !important;
	}

	.community-card {
		padding: 1.5rem;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		overflow-wrap: break-word;
		word-wrap: break-word;
	}

	.community-card h3,
	.community-card p,
	.community-link {
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
	}

	.community-icon {
		width: 70px;
		height: 70px;
	}

	.community-icon img {
		width: 45px;
		height: 45px;
	}

	.community-card h3 {
		font-size: 1.1rem;
	}

	.community-card p {
		font-size: 0.9rem;
	}

	.community-subtitle {
		font-size: 1rem;
		margin-bottom: 2rem;
	}

	.footer {
		padding: 1.5rem 0;
		margin-top: 2rem;
	}

	.footer-content {
		padding: 0 1rem;
		grid-template-columns: 1fr !important;
		gap: 2rem;
		display: grid !important;
	}

	.footer-links {
		grid-template-columns: 1fr !important;
		gap: 2rem;
		display: grid !important;
		width: 100%;
	}

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

	.footer-logo-text {
		max-width: 180px;
	}

	.footer-bottom {
		padding: 1.5rem 1rem 0;
	}

	.toast {
		bottom: 1rem;
		right: 1rem;
		left: 1rem;
		width: auto;
		font-size: 0.85rem;
		padding: 0.8rem 1rem;
	}

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

	.warning-box {
		padding: 1rem;
	}

	.warning {
		font-size: 0.85rem;
	}
}

/* Small Mobile */
@media (max-width: 480px) {
	.nav-logo-text {
		height: 24px;
	}

	.footer-logo-text {
		max-width: 150px;
	}

	.nav-link {
		font-size: 0.75rem;
		padding: 0.3rem 0.6rem;
	}

	.buy-now-btn {
		font-size: 0.75rem;
		padding: 0.4rem 1rem;
	}

	.hero-content {
		padding-top: 1rem;
	}

	.logo-text {
		max-width: 240px;
		margin-bottom: 2.5rem;
	}

	.bear-logo img {
		width: 200px;
		height: 200px;
	}

	.bear-logo::before {
		width: 250px;
		height: 250px;
	}

	.pops-count {
		font-size: 2.2rem;
	}

	.pops-header p:first-child {
		font-size: 0.65rem;
	}

	.pops-counter {
		padding: 0.8rem 1rem;
	}

	.creator-rewards-notice {
		padding: 1rem 1.25rem;
		margin-top: 1.25rem;
	}

	.creator-rewards-text {
		font-size: 0.9rem;
	}

	section h2 {
		font-size: 1.5rem;
	}

	.contract-content {
		padding: 1rem;
	}

	.token-stats {
		padding: 1rem;
	}

	.token-stats h3 {
		font-size: 1.2rem;
	}

	.roadmap-content {
		padding-left: 1rem;
	}

	.roadmap-item {
		padding-left: 2rem;
	}

	.roadmap-item::before {
		width: 14px;
		height: 14px;
		left: -7px;
	}

	.step-card {
		padding: 1rem;
	}

	.community-card {
		padding: 1rem;
	}

	.community-icon {
		width: 60px;
		height: 60px;
	}

	.community-icon img {
		width: 35px;
		height: 35px;
	}

	.particle {
		width: 3px;
		height: 3px;
	}

	.particle:nth-child(4n) {
		width: 4px;
		height: 4px;
	}

	section {
		padding: 3rem 1rem;
		width: 100%;
		max-width: 100vw;
		box-sizing: border-box;
		overflow-x: hidden;
	}

	section h2 {
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
	}

	.contract-content,
	.token-stats,
	.about-text {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		overflow-wrap: break-word;
	}

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

	.pops-counter {
		width: auto;
		max-width: 100%;
		box-sizing: border-box;
	}

	img {
		max-width: 100%;
		height: auto;
	}

	.hero-content {
		padding-top: 1rem;
	}

	.logo-text {
		max-width: 85%;
		margin-bottom: 2rem;
	}

	.bear-logo img {
		max-width: 100%;
		height: auto;
	}

	.community-icon img,
	.token-icon,
	.step-icon svg {
		max-width: 100%;
		height: auto;
	}

	.footer {
		width: 100%;
		max-width: 100vw;
		box-sizing: border-box;
		overflow-x: hidden;
	}

	.footer-content {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.roadmap-content {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}
}

/* Community Section */
.community-section {
	padding: 4rem 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	box-sizing: border-box;
}

.community-title-part-1 {
	color: #ff6b9d;
	font-family: "Poppins", sans-serif;
	filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.5));
}

.community-title-part-2 {
	color: var(--orange-accent);
	font-family: "Poppins", sans-serif;
	filter: drop-shadow(0 0 10px rgba(255, 136, 0, 0.5));
}

#links h2::after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 4px;
	background: linear-gradient(90deg, #ff6b9d, var(--orange-accent));
	border-radius: 2px;
	box-shadow: 0 0 10px rgba(255, 107, 157, 0.5);
}

.community-subtitle {
	color: var(--text-light);
	font-size: 1.1rem;
	font-family: "Poppins", sans-serif;
	text-align: center;
	margin-top: 2rem;
	margin-bottom: 3rem;
	font-weight: 400;
}

.community-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	width: 100%;
	max-width: 1200px;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.community-cards {
		grid-template-columns: 1fr !important;
	}
}

.community-card {
	background: linear-gradient(135deg, rgba(213, 53, 29, 0.1) 0%, rgba(255, 136, 0, 0.05) 100%);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	width: 100%;
	box-sizing: border-box;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

.community-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 136, 0, 0.4);
	box-shadow:
		0 8px 30px rgba(213, 53, 29, 0.4),
		0 0 20px rgba(255, 136, 0, 0.2);
}

.community-icon {
	width: 80px;
	height: 80px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.community-icon img {
	width: 50px;
	height: 50px;
	object-fit: contain;
}

.community-icon-twitter {
	background: #1da1f2;
}

.community-icon-x-community {
	background: #000000;
}

.community-icon-x-community img {
	filter: brightness(0) invert(1);
	opacity: 0.8;
}

.community-icon-dexscreener {
	background: #000000;
}

.community-card h3 {
	color: var(--text-light);
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	font-family: "Poppins", sans-serif;
	word-wrap: break-word;
	overflow-wrap: break-word;
	max-width: 100%;
}

.community-card p {
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.6;
	font-family: "Poppins", sans-serif;
	margin-bottom: 1.5rem;
	flex-grow: 1;
	word-wrap: break-word;
	overflow-wrap: break-word;
	max-width: 100%;
}

.community-link {
	color: #ff6b9d;
	font-size: 1rem;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.community-link:hover {
	color: var(--orange-accent);
	transform: translateX(5px);
	filter: drop-shadow(0 0 8px rgba(255, 107, 157, 0.6));
}

/* Footer */
.footer {
	background: rgba(10, 5, 5, 0.95);
	backdrop-filter: blur(10px);
	border-top: 1px solid rgba(213, 53, 29, 0.2);
	padding: 3rem 0 1.5rem;
	margin-top: 4rem;
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 3rem;
	margin-bottom: 2rem;
}

.footer-brand h3 {
	color: var(--text-light);
	font-size: 1.5rem;
	font-weight: 800;
	font-family: "Poppins", sans-serif;
	margin-bottom: 0.5rem;
	background: linear-gradient(90deg, var(--red-primary) 0%, #ff6b9d 50%, var(--orange-accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-logo-text {
	max-width: 200px;
	width: 100%;
	height: auto;
	margin-bottom: 0.5rem;
	object-fit: contain;
	filter: drop-shadow(0 0 15px rgba(213, 53, 29, 0.6));
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	image-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.footer-brand p {
	color: var(--text-muted);
	font-size: 0.9rem;
	font-family: "Poppins", sans-serif;
	margin: 0;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

@media (max-width: 768px) {
	.footer-content {
		grid-template-columns: 1fr !important;
	}

	.footer-links {
		grid-template-columns: 1fr !important;
	}
}

.footer-column h4 {
	color: var(--text-light);
	font-size: 1rem;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
	margin-bottom: 1rem;
}

.footer-column a {
	display: block;
	color: var(--text-muted);
	font-size: 0.9rem;
	font-family: "Poppins", sans-serif;
	text-decoration: none;
	margin-bottom: 0.5rem;
	transition: all 0.3s ease;
}

.footer-column a:hover {
	color: var(--orange-accent);
	transform: translateX(5px);
}

.footer-bottom {
	max-width: 1400px;
	margin: 0 auto;
	padding: 1.5rem 2rem 0;
	border-top: 1px solid rgba(213, 53, 29, 0.1);
	text-align: center;
}

.footer-bottom p {
	color: var(--text-muted);
	font-size: 0.85rem;
	font-family: "Poppins", sans-serif;
	margin: 0.5rem 0;
}

.footer-disclaimer {
	opacity: 0.7;
	font-size: 0.8rem !important;
}