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

:root {
	--color-black: #000000;
	--color-white: #ffffff;
	--color-gray: #666666;
	--color-light-gray: #f5f5f5;
	--color-border: #e5e5e5;
	--font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	--transition-default: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
	font-family: var(--font-primary);
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-black);
	background-color: var(--color-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

.header {
	background-color: var(--color-black);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	z-index: 100;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
}

.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: var(--transition-default);
}

.logo:hover {
	opacity: 0.8;
}

.logo-img {
	height: 40px;
	width: auto;
}

.logo-text {
	margin-left: 12px;
	font-size: 22px;
	font-weight: 700;
	color: var(--color-white);
	letter-spacing: -0.5px;
}

.nav {
	display: flex;
	align-items: center;
	gap: 40px;
}

.nav-link {
	color: var(--color-white);
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	position: relative;
	transition: var(--transition-default);
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--color-white);
	transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-link:hover {
	opacity: 0.8;
}

.ticker-wrapper {
	background-color: transparent;
	position: relative;
	z-index: 90;
	padding: 5px 0;
}

.ticker-wrapper .container {
	max-width: 1600px;
	padding: 0 20px;
}

.ticker-grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 40px;
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
	gap: 5px;
}

.ticker-grid::-webkit-scrollbar {
	display: none;
}

.ticker-item {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 0 12px;
	height: 100%;
	background-color: var(--color-black);
	border-radius: 4px;
	white-space: nowrap;
	flex: 1;
	transition: background-color 0.2s ease;
	min-width: 0;
	justify-content: center;
}

.ticker-symbol {
	color: var(--color-white);
	font-size: 14px;
	font-weight: 600;
}

.ticker-change {
	font-size: 14px;
	font-weight: 500;
}

.ticker-up {
	color: #22c55e;
}

.ticker-down {
	color: #ef4444;
}

.main {
	min-height: 100vh;
}

.hero {
	padding: 80px 0;
	background-color: var(--color-white);
}

.hero-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

.hero-video {
	flex: 0 0 500px;
	height: 500px;
	background-color: var(--color-black);
	overflow: hidden;
	position: relative;
}

.hero-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-content {
	flex: 1;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-badges {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 24px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background-color: var(--color-black);
	border-radius: 4px;
	margin-bottom: 0;
}

.hero-badge-text {
	color: var(--color-white);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.hero-badge-icon {
	display: flex;
	align-items: center;
	color: var(--color-white);
}

.hero-live {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background-color: #ef4444;
	border-radius: 4px;
	margin-bottom: 0;
	margin-left: 0;
}

.hero-live-dot {
	width: 8px;
	height: 8px;
	background-color: var(--color-white);
	border-radius: 50%;
	animation: pulse-dot 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-dot {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

.hero-live-text {
	color: var(--color-white);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.hero-title {
	font-size: 56px;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 20px;
	letter-spacing: -2px;
	text-align: center;
	width: 100%;
}

.hero-title-main {
	color: var(--color-black);
}

.hero-title-accent {
	color: var(--color-black);
}

.hero-subtitle {
	font-size: 18px;
	color: var(--color-gray);
	font-weight: 400;
	max-width: 600px;
	margin: 0 auto 32px;
	line-height: 1.6;
	text-align: center;
	width: 100%;
}

.hero-stats {
	display: inline-flex;
	gap: 21px;
	margin: 0 auto 32px;
	padding: 24px 0;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	position: relative;
}

.hero-stat {
	position: relative;
	text-align: center;
	min-width: 120px;
}

.hero-stat:not(:last-child)::after {
	content: '';
	position: absolute;
	right: -11px;
	top: 0;
	bottom: 0;
	width: 1px;
	background-color: var(--color-border);
}

.hero-stat-value {
	font-size: 32px;
	font-weight: 700;
	color: var(--color-black);
	margin-bottom: 4px;
}

.hero-stat-label {
	font-size: 14px;
	color: var(--color-gray);
	font-weight: 400;
}

.hero-actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 20px;
}

.hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	border: 2px solid var(--color-black);
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: var(--font-primary);
}

.hero-btn-primary {
	background-color: var(--color-black);
	color: var(--color-white);
}

.hero-btn-primary:hover {
	background-color: #1a1a1a;
}

.hero-btn-secondary {
	background-color: transparent;
	color: var(--color-black);
}

.hero-btn-secondary:hover {
	background-color: var(--color-black);
	color: var(--color-white);
}

.hero-trust {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: var(--color-gray);
	font-size: 14px;
}

.hero-trust svg {
	color: var(--color-black);
}

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

.airdrop {
	padding: 100px 0;
	background-color: #f8f8f8;
}

.airdrop-wrapper {
	display: flex;
	align-items: center;
	gap: 80px;
}

.airdrop-content {
	flex: 1;
}

.airdrop-title {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 24px;
	letter-spacing: -1px;
	color: var(--color-black);
}

.airdrop-description {
	font-size: 18px;
	color: var(--color-gray);
	line-height: 1.6;
	margin-bottom: 48px;
	max-width: 600px;
}

.airdrop-features {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.airdrop-feature {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.airdrop-feature-icon {
	width: 48px;
	height: 48px;
	background-color: var(--color-black);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.airdrop-feature-icon svg {
	color: var(--color-white);
}

.airdrop-feature-content {
	flex: 1;
	padding-top: 2px;
}

.airdrop-feature-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 4px;
	color: var(--color-black);
	line-height: 1.2;
}

.airdrop-feature-text {
	font-size: 16px;
	color: var(--color-gray);
	line-height: 1.4;
}

.airdrop-image {
	flex: 0 0 500px;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.airdrop-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.transactions {
	padding: 100px 0;
	background-color: var(--color-white);
}

.transactions-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 48px;
}

.transactions-title {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -1px;
	color: var(--color-black);
}

.transactions-live {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background-color: var(--color-black);
	border-radius: 4px;
}

.transactions-live-dot {
	width: 8px;
	height: 8px;
	background-color: #22c55e;
	border-radius: 50%;
	animation: pulse-live 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-live {
	0% {
		box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
	}
}

.transactions-live-text {
	color: var(--color-white);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.transactions-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid var(--color-border);
	border-radius: 0;
	overflow: hidden;
}

.transaction-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	background-color: var(--color-white);
	border-bottom: 1px solid var(--color-border);
	transition: background-color 0.2s ease;
}

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

.transaction-item:hover {
	background-color: #f8f8f8;
}

.transaction-item.transaction-new {
	animation: slideInFade 0.5s ease-out;
	background-color: #f0fdf4;
}

@keyframes slideInFade {
	0% {
		opacity: 0;
		transform: translateY(-20px);
		background-color: #dcfce7;
	}
	50% {
		background-color: #dcfce7;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
		background-color: #f0fdf4;
	}
}

.transaction-user {
	display: flex;
	align-items: center;
	gap: 12px;
}

.transaction-avatar {
	width: 40px;
	height: 40px;
	background-color: var(--color-black);
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 600;
}

.transaction-address {
	font-size: 16px;
	font-weight: 500;
	color: var(--color-black);
	font-family: monospace;
}

.transaction-amount {
	font-size: 16px;
	font-weight: 700;
	color: #22c55e;
	font-family: monospace;
}

.transaction-time {
	font-size: 14px;
	color: var(--color-gray);
	min-width: 120px;
	text-align: right;
	transition: opacity 0.3s ease;
}

.transactions-footer {
	margin-top: 32px;
	text-align: center;
}

.transactions-footer-text {
	font-size: 16px;
	color: var(--color-gray);
	text-align: center;
}

.transactions-counter {
	font-weight: 700;
	color: var(--color-black);
	transition: all 0.3s ease;
}

.transactions-counter.updating {
	transform: scale(1.1);
	color: #22c55e;
}

@media (max-width: 768px) {
	.header-content {
		height: 70px;
	}

	.logo-img {
		height: 32px;
	}

	.logo-text {
		font-size: 18px;
	}

	.ticker-grid {
		height: 36px;
	}

	.ticker-item {
		padding: 0 10px;
		gap: 5px;
	}

	.ticker-symbol,
	.ticker-change {
		font-size: 13px;
	}

	.main {
		min-height: 100vh;
	}

	.hero {
		padding: 60px 0;
	}

	.hero-wrapper {
		flex-direction: column;
		gap: 40px;
	}

	.hero-video {
		flex: 0 0 auto;
		width: 100%;
		max-width: 500px;
		height: 200px;
	}

	.hero-content {
		text-align: center;
	}

	.hero-badges {
		justify-content: center;
		flex-wrap: wrap;
	}

	.hero-title {
		font-size: 48px;
		letter-spacing: -1px;
	}

	.hero-subtitle {
		font-size: 16px;
	}

	.hero-stats {
		display: inline-flex;
		gap: 21px;
		padding: 24px 0;
		flex-wrap: wrap;
		margin-left: auto;
		margin-right: auto;
	}

	.hero-stat:not(:last-child)::after {
		display: none;
	}

	.hero-stat-value {
		font-size: 28px;
	}

	.hero-actions {
		flex-direction: column;
		width: 100%;
	}

	.hero-btn {
		width: 100%;
		justify-content: center;
	}

	.hero-trust {
		justify-content: center;
	}

	.nav {
		gap: 24px;
	}

	.nav-link {
		font-size: 14px;
	}

	.airdrop {
		padding: 60px 0;
	}

	.airdrop-wrapper {
		flex-direction: column-reverse;
		gap: 40px;
	}

	.airdrop-image {
		flex: 0 0 auto;
		width: 100%;
		max-width: 400px;
		height: 300px;
		margin: 0 auto;
	}

	.airdrop-title {
		font-size: 36px;
	}

	.airdrop-description {
		font-size: 16px;
		margin-bottom: 32px;
	}

	.airdrop-feature-icon {
		width: 40px;
		height: 40px;
	}

	.airdrop-feature-title {
		font-size: 18px;
	}

	.airdrop-feature-text {
		font-size: 14px;
	}

	.transactions {
		padding: 60px 0;
		text-align: center;
	}

	.transactions-header {
		flex-direction: column;
		gap: 16px;
		align-items: center;
		margin-bottom: 32px;
	}

	.transactions-title {
		font-size: 36px;
		text-align: center;
	}

	.transactions-live {
		margin: 0 auto;
	}

	.transaction-item {
		flex-direction: column;
		align-items: center;
		gap: 12px;
		padding: 16px;
		text-align: center;
	}

	.transaction-user {
		width: 100%;
		justify-content: center;
	}

	.transaction-amount {
		width: 100%;
		text-align: center;
	}

	.transaction-time {
		width: 100%;
		text-align: center;
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.nav {
		gap: 16px;
	}

	.nav-link {
		font-size: 13px;
	}

	.logo-text {
		font-size: 16px;
	}

	.ticker-item {
		padding: 0 8px;
		gap: 4px;
		min-width: 110px;
	}

	.ticker-symbol,
	.ticker-change {
		font-size: 12px;
	}

	.hero {
		padding: 40px 0;
	}

	.hero-video {
		height: 200px;
	}

	.hero-title {
		font-size: 36px;
	}

	.hero-subtitle {
		font-size: 16px;
	}

	.hero-stats {
		display: inline-flex;
		flex-direction: column;
		gap: 16px;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}

	.hero-stat:not(:last-child)::after {
		display: none;
	}

	.hero-stat-value {
		font-size: 28px;
	}

	.hero-btn {
		padding: 14px 32px;
		font-size: 15px;
	}

	.airdrop {
		padding: 40px 0;
	}

	.airdrop-image {
		height: 250px;
		max-width: 300px;
	}

	.airdrop-title {
		font-size: 28px;
		margin-bottom: 16px;
	}

	.airdrop-features {
		gap: 20px;
	}

	.airdrop-feature {
		gap: 12px;
	}

	.transactions {
		padding: 40px 0;
	}

	.transactions-title {
		font-size: 28px;
		margin-bottom: 16px;
	}

	.transactions-list {
		margin: 0 -20px;
		border-left: none;
		border-right: none;
		border-radius: 0;
	}

	.transaction-avatar {
		width: 36px;
		height: 36px;
		font-size: 12px;
	}

	.transaction-address {
		font-size: 14px;
	}

	.transaction-amount {
		font-size: 14px;
	}

	.transactions-footer-text {
		font-size: 14px;
		padding: 0 20px;
		text-align: center;
	}
}

/* FAQ Section */
.faq {
	padding: 80px 0;
	background: #ffffff;
}

.faq-title {
	font-size: 48px;
	font-weight: 800;
	color: #000;
	text-align: center;
	margin-bottom: 60px;
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	border-top: 1px solid #e5e5e5;
}

.faq-item:last-child {
	border-bottom: 1px solid #e5e5e5;
}

.faq-question {
	width: 100%;
	padding: 24px 0;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-align: left;
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #000;
	transition: all 0.2s ease;
}

.faq-question:hover {
	color: #666;
}

.faq-question span {
	flex: 1;
	padding-right: 20px;
}

.faq-icon {
	flex-shrink: 0;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
}

.faq-answer {
	height: 0;
	overflow: hidden;
	transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
	padding: 0 0 24px 0;
	font-size: 16px;
	line-height: 1.6;
	color: #666;
}

/* Responsive */
@media (max-width: 768px) {
	.faq {
		padding: 60px 0;
	}

	.faq-title {
		font-size: 32px;
		margin-bottom: 40px;
	}

	.faq-question {
		font-size: 16px;
		padding: 20px 0;
	}

	.faq-answer p {
		font-size: 14px;
		padding-bottom: 20px;
	}
}

@media (max-width: 480px) {
	.faq {
		padding: 40px 0;
	}

	.faq-title {
		font-size: 28px;
		margin-bottom: 32px;
	}

	.faq-question {
		font-size: 15px;
		padding: 16px 0;
	}

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

/* Footer */
.footer {
	background: #000;
	color: #fff;
	padding: 80px 0 40px;
	margin-top: 100px;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 80px;
	margin-bottom: 60px;
}

.footer-section {
	position: relative;
}

.footer-section:not(:first-child) {
	padding-left: 80px;
}

.footer-section:not(:first-child)::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 1px;
	background: rgba(255, 255, 255, 0.1);
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.footer-logo-img {
	height: 32px;
	width: auto;
}

.footer-logo-text {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
}

.footer-description {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 24px;
}

.footer-socials {
	display: flex;
	gap: 16px;
}

.footer-social {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: #fff;
	transition: all 0.3s ease;
}

.footer-social:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.footer-heading {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #fff;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-link {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 16px;
	transition: all 0.2s ease;
	display: inline-block;
}

.footer-link:hover {
	color: #fff;
	transform: translateX(4px);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-copyright {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
}

.footer-disclaimer {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.4);
}

/* Responsive Footer */
@media (max-width: 1024px) {
	.footer-content {
		grid-template-columns: 1fr 1fr;
		gap: 60px;
	}

	.footer-section:nth-child(2) {
		padding-left: 60px;
	}

	.footer-section:nth-child(3) {
		padding-left: 0;
		border-left: none;
	}

	.footer-section:nth-child(3)::before {
		display: none;
	}

	.footer-section:nth-child(4) {
		padding-left: 60px;
	}
}

@media (max-width: 768px) {
	.footer {
		padding: 60px 0 30px;
		margin-top: 60px;
		text-align: center;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

	.footer-section:not(:first-child) {
		padding-left: 0;
		padding-top: 40px;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}

	.footer-section:not(:first-child)::before {
		display: none;
	}

	.footer-logo {
		justify-content: center;
	}

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

	.footer-socials {
		justify-content: center;
	}

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

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

	.footer-link:hover {
		transform: none;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.footer {
		padding: 40px 0 20px;
	}

	.footer-logo-text {
		font-size: 18px;
	}

	.footer-description {
		font-size: 14px;
		padding: 0 20px;
	}

	.footer-heading {
		font-size: 16px;
		margin-bottom: 16px;
	}

	.footer-link {
		font-size: 14px;
	}

	.footer-copyright,
	.footer-disclaimer {
		font-size: 12px;
	}
}
