/* Custom Font */
@font-face {
	font-family: "Dreaming Christmas";
	src: url("../dreaming-christmas.regular.otf") format("opentype");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

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

:root {
	--primary-blue: #1177d9;
	--blue-dark: #0d5ba3;
	--blue-light: #5ba3e8;
	--blue-bright: #2d8ce5;
	--blue-luxury: #0a4d7a;
	--yellow-accent: #FFD700;
	--yellow-dark: #FFC107;
	--cream-bg: #faf5e2;
	--dark-gray: #2C2C2C;
	--metallic-blue: linear-gradient(135deg, #1177d9 0%, #5ba3e8 15%, #2d8ce5 30%, #1177d9 50%, #0a4d7a 70%, #0d5ba3 85%, #1177d9 100%);
	--metallic-blue-subtle: linear-gradient(135deg, #1177d9 0%, #5ba3e8 25%, #2d8ce5 50%, #0a4d7a 75%, #1177d9 100%);
	--metallic-blue-card: linear-gradient(145deg, rgba(17, 119, 217, 0.15) 0%, rgba(13, 91, 163, 0.08) 100%);
	--dark-bg: #faf5e2;
	--darker-bg: #f0ead6;
	--light-bg: #ffffff;
	--card-bg: rgba(17, 119, 217, 0.1);
	--text-primary: #1a1a1a;
	--text-secondary: #4a4a4a;
	--text-dark: #000000;
	--accent-glow: rgba(17, 119, 217, 0.4);
	--yellow-glow: rgba(255, 215, 0, 0.4);
	--shadow-glow: 0 0 30px rgba(17, 119, 217, 0.3);
	--metallic-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(17, 119, 217, 0.2);
	--border-radius: 12px;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
	font-family: "Nunito", sans-serif;
	background: var(--dark-bg);
	color: var(--text-primary);
	line-height: 1.7;
	overflow-x: hidden;
	transition: background-color 0.3s ease, color 0.3s ease;
	position: relative;
	font-size: 1rem;
	font-weight: 400;
}

/* Custom font for headings */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Dreaming Christmas", sans-serif;
	font-weight: normal;
	letter-spacing: 0.02em;
	line-height: 1.2;
}

/* Hero Section */
.hero {
	min-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem 1rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: var(--dark-bg);
	background-image: 
		radial-gradient(circle at 20% 30%, rgba(17, 119, 217, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(91, 163, 232, 0.06) 0%, transparent 50%);
}

.hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 150px;
	background: linear-gradient(to bottom, transparent 0%, var(--darker-bg) 100%);
	pointer-events: none;
	z-index: 1;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 20%, rgba(17, 119, 217, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(91, 163, 232, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 40% 60%, rgba(17, 119, 217, 0.03) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

.hero-particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

.hero-particle {
	position: absolute;
	width: 5px;
	height: 5px;
	background: radial-gradient(circle, rgba(17, 119, 217, 1) 0%, rgba(17, 119, 217, 0.7) 40%, rgba(17, 119, 217, 0.3) 70%, transparent 100%);
	border-radius: 50%;
	opacity: 0.7;
	box-shadow: 0 0 6px rgba(17, 119, 217, 0.5);
	animation: floatParticle 15s infinite ease-in-out;
}

@keyframes floatParticle {
	0% {
		transform: translate(0, 0) scale(0.5);
		opacity: 0;
	}

	10% {
		opacity: 0.7;
	}

	90% {
		opacity: 0.7;
	}

	100% {
		transform: translate(var(--particle-x, 100px), var(--particle-y, -100px)) scale(1);
		opacity: 0;
	}
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}


.hero-content {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	padding: 2rem 1rem;
}

.logo-section {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.safe-logo-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	position: relative;
}

.safe-logo-image {
	width: 80px;
	height: 80px;
	object-fit: contain;
	animation: safeFloat 3s ease-in-out infinite;
	filter: drop-shadow(0 4px 12px rgba(17, 119, 217, 0.3));
	transition: var(--transition);
}

.safe-logo-image:hover {
	transform: scale(1.1) rotate(5deg);
	filter: drop-shadow(0 6px 20px rgba(17, 119, 217, 0.5));
}

@keyframes safeFloat {
	0%, 100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-10px) rotate(2deg);
	}
}

.logo-text {
	font-family: "Dreaming Christmas", sans-serif;
	font-weight: normal;
	letter-spacing: 0.02em;
	background: var(--metallic-blue);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: var(--transition);
	line-height: 1.1;
}

.hero-logo {
	font-size: 4.5rem;
	line-height: 1.1;
}

.hero-logo:hover {
	transform: scale(1.02);
}

/* Safe Decorations */
.safe-decoration {
	position: absolute;
	opacity: 0.15;
	z-index: 1;
	pointer-events: none;
	animation: safeFloat 4s ease-in-out infinite;
}

.safe-decoration img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: blur(1px);
}

.safe-decoration-1 {
	width: 200px;
	height: 200px;
	top: 10%;
	left: 5%;
	animation-delay: 0s;
}

.safe-decoration-2 {
	width: 150px;
	height: 150px;
	bottom: 15%;
	right: 8%;
	animation-delay: 2s;
	animation-duration: 5s;
}

.tagline {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-top: 2rem;
	margin-bottom: 1rem;
	letter-spacing: 0.05em;
}

.description {
	font-size: 1.25rem;
	color: var(--text-primary);
	margin-bottom: 2rem;
	line-height: 2;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 400;
}

.cta-buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 0;
	max-width: 100%;
}

.btn {
	padding: 1rem 2rem;
	border: none;
	border-radius: var(--border-radius);
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
	display: inline-block;
	white-space: nowrap;
	width: 100%;
	max-width: 400px;
	box-sizing: border-box;
}

.btn-primary {
	background: var(--primary-blue);
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(17, 119, 217, 0.3);
	border: none;
	position: relative;
	overflow: hidden;
	font-weight: 700;
	transition: var(--transition);
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-primary:hover {
	background: var(--blue-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(17, 119, 217, 0.4);
}

.btn-secondary {
	background: transparent;
	color: var(--primary-blue);
	border: 2px solid var(--primary-blue);
	font-weight: 700;
}

.btn-secondary:hover {
	background: var(--primary-blue);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(17, 119, 217, 0.3);
}

.ca-section {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: rgba(255, 255, 255, 0.7);
	padding: 1rem 1.5rem;
	border-radius: var(--border-radius);
	border: 2px solid rgba(17, 119, 217, 0.2);
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	margin-bottom: 2rem;
	justify-content: space-between;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	flex-wrap: nowrap;
	box-sizing: border-box;
}

.ca-text {
	font-family: "Courier New", monospace;
	font-size: 0.9rem;
	color: var(--text-primary);
	letter-spacing: 0.05em;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	flex: 1;
	min-width: 0;
}

.copy-btn,
.explorer-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: var(--primary-blue);
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: var(--transition);
	box-shadow: 0 2px 6px rgba(17, 119, 217, 0.2);
	position: relative;
	flex-shrink: 0;
}

.copy-btn:hover,
.explorer-link:hover {
	background: var(--blue-dark);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(17, 119, 217, 0.3);
}

.copy-btn img,
.explorer-link img {
	width: 18px;
	height: 18px;
	filter: brightness(0) invert(1);
	transition: var(--transition);
}

.copy-btn:hover img,
.explorer-link:hover img {
	opacity: 0.9;
}

.status-badge {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: var(--metallic-blue);
	color: var(--text-dark);
	font-weight: 600;
	border-radius: var(--border-radius);
	font-size: 0.9rem;
}

/* Token Details Section */
.token-details {
	padding: 4rem 2rem;
	background: var(--darker-bg);
	position: relative;
	background-image: 
		radial-gradient(circle at 10% 20%, rgba(17, 119, 217, 0.05) 0%, transparent 40%),
		radial-gradient(circle at 90% 80%, rgba(91, 163, 232, 0.04) 0%, transparent 40%);
}


.token-details h2 {
	font-size: 2.5rem;
	font-weight: 400;
	text-align: center;
	margin-bottom: 3rem;
	color: var(--text-primary);
}

.safe-details-container {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3.5rem;
	padding: 4rem 2rem;
	position: relative;
}

.safe-icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 2rem;
	background: radial-gradient(circle, rgba(17, 119, 217, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	animation: safeGlow 3s ease-in-out infinite;
}

@keyframes safeGlow {
	0%, 100% {
		background: radial-gradient(circle, rgba(17, 119, 217, 0.08) 0%, transparent 70%);
	}
	50% {
		background: radial-gradient(circle, rgba(17, 119, 217, 0.15) 0%, transparent 70%);
	}
}

.safe-large-icon {
	width: 300px;
	height: 300px;
	object-fit: contain;
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25)) drop-shadow(0 0 35px rgba(17, 119, 217, 0.4));
	transition: transform 0.3s ease;
}

.safe-icon-wrapper:hover .safe-large-icon {
	transform: scale(1.05);
}

.safe-info {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	max-width: 700px;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 16px;
	border: 2px solid rgba(17, 119, 217, 0.15);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
	padding: 2rem;
	backdrop-filter: blur(10px);
}

.safe-info-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding: 1.75rem 1.5rem;
	border-bottom: 1px solid rgba(17, 119, 217, 0.12);
	position: relative;
	transition: background 0.2s ease;
}

.safe-info-item:hover {
	background: rgba(17, 119, 217, 0.03);
}

.safe-info-item:last-of-type {
	border-bottom: none;
}

.safe-info-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(to bottom, transparent, var(--primary-blue), transparent);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.safe-info-item:hover::before {
	opacity: 1;
}

.safe-info-left {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	flex: 1;
}

.safe-info-label {
	font-weight: 500;
	color: var(--text-secondary);
	font-size: 1.05rem;
	line-height: 1.4;
	letter-spacing: 0.02em;
}

.safe-info-value {
	font-weight: 700;
	color: var(--text-primary);
	font-size: 2rem;
	letter-spacing: -0.02em;
	line-height: 1.2;
	text-align: right;
	white-space: nowrap;
	background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-blue) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.safe-token-symbol {
	font-weight: 600;
	color: var(--primary-blue);
	font-size: 0.8em;
	margin-left: 0.3em;
}

.safe-info-desc {
	font-size: 0.9rem;
	color: var(--text-secondary);
	font-style: normal;
	line-height: 1.4;
	opacity: 0.8;
}

.safe-value-item {
	align-items: flex-start;
	padding-top: 2rem;
}

@media (max-width: 768px) {
	.safe-details-container {
		padding: 3rem 1.5rem;
		gap: 2.5rem;
	}

	.safe-icon-wrapper {
		padding: 1.5rem;
	}

	.safe-large-icon {
		width: 240px;
		height: 240px;
	}

	.safe-info {
		padding: 1.5rem;
	}

	.safe-info-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
		padding: 1.5rem 0;
	}

	.safe-info-left {
		width: 100%;
	}

	.safe-info-value {
		font-size: 1.65rem;
		text-align: left;
		width: 100%;
	}
}

.detail-card {
	background: rgba(255, 255, 255, 0.6);
	padding: 1.5rem;
	border-radius: var(--border-radius);
	border: 2px solid rgba(17, 119, 217, 0.2);
	transition: var(--transition);
	display: flex;
	align-items: center;
	gap: 1.5rem;
	position: relative;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.detail-card:hover {
	transform: translateY(-3px);
	border-color: var(--primary-blue);
	box-shadow: 0 4px 16px rgba(17, 119, 217, 0.2);
	background: rgba(255, 255, 255, 0.8);
}

.detail-card:hover .detail-icon {
	background: var(--blue-dark);
	transform: scale(1.05);
}

.locked-card:hover {
	border-color: var(--primary-blue);
	box-shadow: 0 6px 20px rgba(17, 119, 217, 0.3);
}

.detail-icon {
	width: 50px;
	height: 50px;
	background: var(--primary-blue);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(17, 119, 217, 0.2);
	position: relative;
	overflow: hidden;
}

.detail-icon i {
	font-size: 22px;
	color: #ffffff;
	z-index: 1;
	position: relative;
}

.locked-icon {
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--blue-dark) 100%);
	position: relative;
}

.locked-icon::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
	pointer-events: none;
}

.safe-icon-img {
	width: 32px;
	height: 32px;
	object-fit: contain;
	filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
	z-index: 1;
	position: relative;
}

.locked-card {
	position: relative;
}

.detail-content {
	text-align: left;
	flex: 1;
}

.detail-label {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.detail-value {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.detail-value sup {
	font-size: 0.55em;
	vertical-align: super;
	font-weight: 600;
	opacity: 0.85;
	margin-left: 0.05em;
}

.detail-desc {
	font-size: 0.85rem;
	color: var(--text-secondary);
}

/* Locked Supply Bar */
.burn-progress-container {
	max-width: 1200px;
	margin: 3rem auto 0;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.6);
	border-radius: var(--border-radius);
	border: 2px solid rgba(17, 119, 217, 0.2);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.burn-progress-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}

.burn-progress-header h3 {
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--text-primary);
}

.burn-progress-percentage {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary-blue);
}

.burn-progress-bar-wrapper {
	margin-bottom: 0.5rem;
}

.burn-progress-bar {
	width: 100%;
	height: 24px;
	background: rgba(17, 119, 217, 0.1);
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	border: 2px solid rgba(17, 119, 217, 0.3);
}

.burn-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--primary-blue) 0%, var(--blue-bright) 50%, var(--primary-blue) 100%);
	background-size: 200% 100%;
	border-radius: 10px;
	width: 0%;
	transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	animation: progressShine 3s ease-in-out infinite;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 10px rgba(17, 119, 217, 0.3);
}

@keyframes progressShine {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

.burn-progress-labels {
	display: flex;
	justify-content: space-between;
	font-size: 0.85rem;
	color: var(--text-secondary);
	padding: 0 0.25rem;
}

@media (max-width: 768px) {
	.burn-progress-container {
		padding: 1.5rem;
		margin-top: 2rem;
	}

	.burn-progress-header h3 {
		font-size: 1.2rem;
	}

	.burn-progress-percentage {
		font-size: 1.4rem;
	}

	.burn-progress-bar {
		height: 28px;
	}
}


/* Community Section */
.community {
	padding: 4rem 2rem;
	background: var(--dark-bg);
	text-align: center;
}

.community h2 {
	font-size: 2.5rem;
	font-weight: 400;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.community>p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	margin-bottom: 3rem;
}

.community-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	justify-content: center;
	gap: 2rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.community-card {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.6);
	border-radius: var(--border-radius);
	border: 2px solid rgba(17, 119, 217, 0.2);
	text-decoration: none;
	color: var(--text-primary);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	min-width: 280px;
	max-width: 100%;
	position: relative;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.community-card:hover {
	transform: translateY(-3px);
	border-color: var(--primary-blue);
	box-shadow: 0 4px 16px rgba(17, 119, 217, 0.2);
	background: rgba(255, 255, 255, 0.8);
}

.community-icon {
	width: 50px;
	height: 50px;
	background: var(--primary-blue);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(17, 119, 217, 0.2);
	position: relative;
}

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

.community-icon i {
	color: #ffffff;
	font-size: 22px;
}

.community-content {
	flex: 1;
	text-align: left;
}

.community-content h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.community-content p {
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.community-arrow {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.community-arrow img {
	width: 16px;
	height: 16px;
}

.cta-section {
	background: rgba(255, 255, 255, 0.6);
	padding: 2.5rem;
	border-radius: var(--border-radius);
	border: 2px solid rgba(17, 119, 217, 0.2);
	max-width: 600px;
	margin: 0 auto;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-section h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.cta-section p {
	font-size: 1rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

/* Chart Section */
.chart-section {
	padding: 4rem 2rem;
	background: var(--darker-bg);
}

.chart-section h2 {
	font-size: 2.5rem;
	font-weight: 400;
	text-align: center;
	margin-bottom: 2rem;
	color: var(--text-primary);
}

.chart-container {
	max-width: 1200px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.6);
	border-radius: var(--border-radius);
	border: 2px solid rgba(17, 119, 217, 0.2);
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chart-container iframe {
	display: block;
	width: 100%;
	height: 1200px;
	border: none;
}

/* Transparency Section */
.transparency {
	padding: 4rem 2rem;
	background: var(--darker-bg);
	position: relative;
	background-image: 
		radial-gradient(circle at 10% 20%, rgba(17, 119, 217, 0.05) 0%, transparent 40%),
		radial-gradient(circle at 90% 80%, rgba(91, 163, 232, 0.04) 0%, transparent 40%);
}

.transparency h2 {
	font-size: 2.5rem;
	font-weight: 400;
	text-align: center;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.transparency-intro {
	text-align: center;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	font-size: 1.1rem;
}

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

.transactions-table {
	background: rgba(255, 255, 255, 0.6);
	border-radius: var(--border-radius);
	border: 2px solid rgba(17, 119, 217, 0.2);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.transactions-header {
	display: grid;
	grid-template-columns: 1.5fr 1.5fr 1.5fr 1fr;
	background: rgba(17, 119, 217, 0.1);
	border-bottom: 2px solid rgba(17, 119, 217, 0.2);
	padding: 1rem 1.5rem;
	font-weight: 600;
	color: var(--text-primary);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.transaction-row {
	display: grid;
	grid-template-columns: 1.5fr 1.5fr 1.5fr 1fr;
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid rgba(17, 119, 217, 0.1);
	transition: var(--transition);
	align-items: center;
}

.transaction-row:last-child {
	border-bottom: none;
}

.transaction-row:hover {
	background: rgba(17, 119, 217, 0.05);
}

.tx-cell {
	display: flex;
	align-items: center;
}

.tx-value {
	font-weight: 700;
	color: var(--text-primary);
	font-size: 1.1rem;
}

.tx-link {
	color: var(--primary-blue);
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: var(--transition);
	font-size: 0.95rem;
}

.tx-link:hover {
	color: var(--blue-dark);
	text-decoration: underline;
}

.tx-link i {
	font-size: 0.8rem;
}

.tx-date {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.no-transactions {
	text-align: center;
	padding: 3rem;
	background: rgba(255, 255, 255, 0.6);
	border-radius: var(--border-radius);
	border: 2px solid rgba(17, 119, 217, 0.2);
	color: var(--text-secondary);
}

@media (max-width: 968px) {
	.transactions-container {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.transactions-table {
		min-width: 690px;
	}

	.transactions-header,
	.transaction-row {
		grid-template-columns: 150px 180px 180px 180px;
	}

	.transactions-header {
		padding: 1rem;
	}

	.tx-header-cell {
		font-size: 0.75rem;
		padding: 0.5rem;
		white-space: nowrap;
	}

	.transaction-row {
		padding: 1rem;
	}

	.tx-cell {
		padding: 0.75rem 0.5rem;
		white-space: nowrap;
	}

	.tx-value {
		font-size: 0.95rem;
	}

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

	.tx-date {
		font-size: 0.85rem;
	}
}

/* Footer */
.footer {
	padding: 3rem 2rem;
	background: var(--darker-bg);
	border-top: 2px solid rgba(17, 119, 217, 0.1);
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	gap: 2rem;
}

.footer-logo {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
}

.footer-logo-text {
	font-size: 1.8rem;
	font-weight: 400;
}

.footer-logo p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin: 0;
}

.footer-info {
	text-align: right;
}

.ca-info {
	font-family: monospace;
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin-bottom: 1rem;
}

.footer-meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8rem;
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
}

.footer-meta img {
	width: 16px;
	height: 16px;
}

.copyright {
	font-size: 0.8rem;
	color: var(--text-secondary);
}


/* Animations */
@keyframes float {

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

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


/* Toast Notification */
.toast {
	position: fixed;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.95);
	border: 2px solid var(--primary-blue);
	border-radius: var(--border-radius);
	padding: 1rem 1.5rem;
	box-shadow: var(--shadow-glow);
	transform: translateX(400px);
	opacity: 0;
	transition: all 0.3s ease;
	z-index: 10000;
	backdrop-filter: blur(10px);
}

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

.toast-content {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.toast-icon {
	width: 20px;
	height: 20px;
	background: var(--primary-blue);
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: bold;
}

.toast-message {
	color: var(--text-primary);
	font-weight: 600;
}

/* Responsive Design */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
	.safe-details-container {
		max-width: 1200px;
	}
	
	.transactions-container {
		max-width: 1400px;
	}
}

/* Tablet Styles */
@media (max-width: 1024px) {
	.hero {
		padding: 2rem 1.5rem;
		min-height: 80vh;
	}

	.hero-content {
		padding: 1.5rem;
	}

	.hero-logo {
		font-size: 4rem;
	}

	.token-details {
		padding: 3rem 1.5rem;
	}

	.token-details h2 {
		font-size: 2.2rem;
		margin-bottom: 2.5rem;
	}

	.safe-details-container {
		padding: 3rem 1.5rem;
		gap: 3rem;
	}

	.safe-large-icon {
		width: 260px;
		height: 260px;
	}

	.safe-info {
		max-width: 100%;
		padding: 1.75rem;
	}

	.transparency {
		padding: 3rem 1.5rem;
	}

	.transparency h2 {
		font-size: 2.2rem;
	}

	.chart-section {
		padding: 3rem 1.5rem;
	}

	.chart-section h2 {
		font-size: 2.2rem;
	}

	.chart-container iframe {
		height: 1000px;
	}

	.community {
		padding: 3rem 1.5rem;
	}

	.community h2 {
		font-size: 2.2rem;
	}

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

	.community-card {
		min-width: 250px;
	}
}

@media (max-width: 768px) {
	.social-links {
		top: 10px;
		left: 10px;
		gap: 8px;
	}

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

	.social-link img {
		width: 16px;
		height: 16px;
	}

	.hero {
		padding: 2.5rem 1rem 1.5rem;
		min-height: 70vh;
	}

	.hero-content {
		padding: 1rem;
	}

	.logo-section {
		margin-bottom: 1.5rem;
	}

	.hero-logo {
		font-size: 2.8rem;
	}

	.safe-logo-wrapper {
		gap: 0.8rem;
	}

	.safe-logo-image {
		width: 55px;
		height: 55px;
	}

	.safe-decoration-1,
	.safe-decoration-2 {
		display: none;
	}

	.tagline {
		font-size: 1.2rem;
		margin-bottom: 0.8rem;
	}

	.description {
		font-size: 1.1rem;
		margin-bottom: 1.5rem;
		max-width: 100%;
		line-height: 1.8;
		padding: 0;
	}

	.cta-buttons {
		gap: 1rem;
		margin-bottom: 2rem;
	}

	.ca-section {
		padding: 0.75rem 0.9rem;
		gap: 0.75rem;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.ca-text {
		font-size: 0.75rem;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.btn {
		padding: 0.75rem 1.25rem;
		font-size: 0.9rem;
		width: 100%;
		max-width: 100%;
	}

	/* Token Details Section */
	.token-details {
		padding: 2.5rem 1rem;
	}

	.token-details h2 {
		font-size: 2rem;
		margin-bottom: 2rem;
	}

	.safe-details-container {
		padding: 2.5rem 1rem;
		gap: 2.5rem;
	}

	.safe-icon-wrapper {
		padding: 1.5rem;
	}

	.safe-large-icon {
		width: 220px;
		height: 220px;
	}

	.safe-info {
		padding: 1.5rem;
	}

	.safe-info-item {
		padding: 1.25rem 1rem;
		gap: 1.5rem;
	}

	.safe-info-value {
		font-size: 1.5rem;
	}

	.safe-info-label {
		font-size: 0.95rem;
	}

	.safe-info-desc {
		font-size: 0.85rem;
	}

	/* Transparency Section */
	.transparency {
		padding: 2.5rem 1rem;
	}

	.transparency h2 {
		font-size: 2rem;
	}

	.transparency-intro {
		font-size: 1rem;
		margin-bottom: 2rem;
	}

	.transactions-container {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.transactions-table {
		min-width: 690px;
	}

	.transactions-header,
	.transaction-row {
		grid-template-columns: 150px 180px 180px 180px;
	}

	.transactions-header {
		padding: 1rem;
	}

	.tx-header-cell {
		font-size: 0.75rem;
		padding: 0.5rem;
		white-space: nowrap;
	}

	.transaction-row {
		padding: 1rem;
	}

	.tx-cell {
		padding: 0.75rem 0.5rem;
		white-space: nowrap;
	}

	.tx-value {
		font-size: 0.95rem;
	}

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

	.tx-date {
		font-size: 0.85rem;
	}

	/* Chart Section */
	.chart-section {
		padding: 2.5rem 1rem;
	}

	.chart-section h2 {
		font-size: 2rem;
	}

	.chart-container {
		height: 700px;
		margin: 0 auto;
		border-radius: var(--border-radius);
	}

	.chart-container iframe {
		height: 700px;
	}

	/* Community Section */
	.community {
		padding: 2.5rem 1rem;
	}

	.community h2 {
		font-size: 2rem;
	}

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

	.community-card {
		min-width: 100%;
		max-width: 100%;
		padding: 1rem;
	}

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

	.cta-section {
		padding: 2rem 1rem;
	}

	.cta-section h3 {
		font-size: 1.5rem;
	}

	/* Footer */
	.footer {
		padding: 2rem 1rem;
	}

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

	.footer-logo {
		align-items: center;
	}

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

	.footer-logo-text {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.hero {
		padding: 2rem 0.75rem 1rem;
		min-height: 65vh;
	}

	.hero-content {
		padding: 0.75rem;
	}

	.hero-logo {
		font-size: 2.2rem;
	}

	.safe-logo-image {
		width: 45px;
		height: 45px;
	}

	.tagline {
		font-size: 1.1rem;
		margin-bottom: 0.75rem;
	}

	.description {
		font-size: 1rem;
		line-height: 1.7;
	}

	.ca-section {
		padding: 0.7rem 0.8rem;
	}

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

	.btn {
		padding: 0.7rem 1.2rem;
		font-size: 0.85rem;
	}

	/* Token Details */
	.token-details {
		padding: 2rem 0.75rem;
	}

	.token-details h2 {
		font-size: 1.75rem;
		margin-bottom: 1.5rem;
	}

	.safe-details-container {
		padding: 2rem 0.75rem;
		gap: 2rem;
	}

	.safe-icon-wrapper {
		padding: 1rem;
	}

	.safe-large-icon {
		width: 180px;
		height: 180px;
	}

	.safe-info {
		padding: 1.25rem;
	}

	.safe-info-item {
		padding: 1rem 0.75rem;
		gap: 1rem;
		flex-direction: column;
		align-items: flex-start;
	}

	.safe-info-left {
		width: 100%;
	}

	.safe-info-value {
		font-size: 1.35rem;
		text-align: left;
		width: 100%;
	}

	.safe-info-label {
		font-size: 0.9rem;
	}

	.safe-info-desc {
		font-size: 0.8rem;
		text-align: left;
	}

	/* Transparency */
	.transparency {
		padding: 2rem 0.75rem;
	}

	.transparency h2 {
		font-size: 1.75rem;
	}

	.transparency-intro {
		font-size: 0.95rem;
		margin-bottom: 1.5rem;
	}

	.transactions-container {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.transactions-table {
		min-width: 610px;
	}

	.transactions-header,
	.transaction-row {
		grid-template-columns: 130px 160px 160px 160px;
	}

	.tx-header-cell {
		font-size: 0.7rem;
		padding: 0.5rem;
	}

	.transaction-row {
		padding: 0.75rem;
	}

	.tx-cell {
		padding: 0.5rem;
	}

	.tx-value {
		font-size: 0.9rem;
	}

	.tx-link {
		font-size: 0.8rem;
	}

	.tx-date {
		font-size: 0.8rem;
	}

	/* Chart */
	.chart-section {
		padding: 2rem 0.75rem;
	}

	.chart-section h2 {
		font-size: 1.75rem;
	}

	.chart-container {
		height: 650px;
	}

	.chart-container iframe {
		height: 650px;
	}

	/* Community */
	.community {
		padding: 2rem 0.75rem;
	}

	.community h2 {
		font-size: 1.75rem;
	}

	.community-card {
		padding: 0.9rem;
	}

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

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

	.cta-section {
		padding: 1.5rem 0.75rem;
	}

	.cta-section h3 {
		font-size: 1.3rem;
	}

	.cta-section p {
		font-size: 0.9rem;
	}

	/* Footer */
	.footer {
		padding: 1.5rem 0.75rem;
	}

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

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

	.ca-info {
		font-size: 0.8rem;
		word-break: break-all;
	}

	.copyright {
		font-size: 0.75rem;
	}
}

	.tagline {
		font-size: 1.1rem;
		margin-bottom: 0.8rem;
	}

	.description {
		font-size: 1.1rem;
		margin-bottom: 1.5rem;
		line-height: 1.8;
	}

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

	.ca-section {
		padding: 0.7rem 0.8rem;
		gap: 0.6rem;
		width: 100%;
		max-width: 280px;
		box-sizing: border-box;
	}

	.ca-text {
		font-size: 0.75rem;
		line-height: 1.3;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.ca-card-wrapper {
		max-width: 100%;
		overflow: hidden;
		gap: 0.75rem;
	}

	.ca-card .ca-text {
		font-size: 0.75rem;
	}

	.ca-card .copy-btn {
		width: 36px;
		height: 36px;
	}

	.ca-card .copy-btn img {
		width: 14px;
		height: 14px;
	}

	.btn {
		padding: 0.7rem 1.2rem;
		font-size: 0.8rem;
		max-width: 280px;
	}

	.detail-card {
		padding: 1rem;
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 0.8rem;
		overflow: hidden;
	}

	.detail-content {
		text-align: center;
		align-items: center;
		width: 100%;
		max-width: 100%;
		overflow: hidden;
	}

	.detail-icon {
		width: 45px;
		height: 45px;
	}

	.detail-icon i {
		font-size: 18px;
	}

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

	.detail-label {
		font-size: 0.7rem;
	}

	.detail-desc {
		font-size: 0.7rem;
	}

	.community-card {
		min-width: 100%;
		padding: 0.8rem;
		gap: 0.8rem;
	}

	.community-content h3 {
		font-size: 0.9rem;
	}

	.community-content p {
		font-size: 0.8rem;
	}

	.chart-container {
		height: 600px;
		margin: 0 auto;
	}

	.footer-content {
		padding: 1.5rem 0.5rem;
	}

	.footer-logo {
		align-items: center;
	}

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

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

	.ca-info {
		font-size: 0.7rem;
		word-break: break-all;
	}

	.copyright {
		font-size: 0.7rem;
	}
}
