:root {
		--bg: #0b0b0f;
		--card: rgba(255, 255, 255, 0.06);
		--border: rgba(255, 255, 255, 0.12);
		--text: #f9fafb;
		--muted: #9ca3af;
		--accent1: #6ee7f9;
		--accent2: #a78bfa;
	}
	
	* {
		box-sizing: border-box;
	}
	
	html,
	body {
		overflow-x: hidden;
	}
	
	body {
		margin: 0;
		font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
		background: radial-gradient(1200px 600px at 10% -10%, rgba(167, 139, 250, 0.15), transparent), radial-gradient(800px 500px at 90% 10%, rgba(110, 231, 249, 0.15), transparent), var(--bg);
		color: var(--text);
		line-height: 1.6;
	}
	
	.container {
		max-width: 900px;
		margin: 0 auto;
		padding: 60px 20px 80px;
	}
	/* HERO */
	
	.hero {
		text-align: center;
		margin-bottom: 80px;
	}
	
	.hero h1 {
		font-size: clamp(2.4rem, 5vw, 3.4rem);
		line-height: 1.1;
		margin-bottom: 16px;
		background: linear-gradient(90deg, var(--accent1), var(--accent2));
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
	
	.hero p {
		color: var(--muted);
		font-size: 1.2rem;
		max-width: 640px;
		margin: 0 auto 36px;
	}
	
	.hero-buttons {
		display: flex;
		justify-content: center;
		gap: 16px;
		flex-wrap: wrap;
	}
	
	.btn {
		padding: 14px 26px;
		border-radius: 999px;
		font-weight: 600;
		text-decoration: none;
		border: 1px solid var(--border);
		background: var(--card);
		color: var(--text);
		backdrop-filter: blur(10px);
		transition: transform .2s ease, background .2s ease;
	}
	
	.btn.primary {
		background: linear-gradient(90deg, var(--accent1), var(--accent2));
		color: #000;
		border: none;
	}
	
	.btn:hover {
		transform: translateY(-2px);
	}
	/* SECTIONS */
	
	.section {
		margin-bottom: 80px;
	}
	
	.section h2 {
		font-size: 2rem;
		margin-bottom: 24px;
	}
	/* CARDS */
	
	.grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
		gap: 20px;
	}
	
	.card {
		background: var(--card);
		border: 1px solid var(--border);
		border-radius: 20px;
		padding: 24px;
		backdrop-filter: blur(14px);
	}
	
	.card span {
		font-size: 1.8rem;
	}
	
	.card h3 {
		margin: 12px 0 8px;
	}
	
	.card p {
		color: var(--muted);
		font-size: 0.95rem;
	}
	/* BOOSTY & BANK */
	
	.support-box {
		background: linear-gradient( 180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
		border: 1px solid var(--border);
		border-radius: 24px;
		padding: 32px;
		text-align: center;
	}
	
	.support-box p {
		color: var(--muted);
		max-width: 520px;
		margin: 0 auto 24px;
	}
	/* CRYPTO */
	
	.wallet {
		background: rgba(0, 0, 0, 0.4);
		border: 1px solid var(--border);
		border-radius: 16px;
		padding: 16px 18px;
		font-family: monospace;
		font-size: 0.95rem;
		word-break: break-all;
		margin-bottom: 12px;
	}
	
	.badge {
		display: inline-block;
		font-size: 0.75rem;
		padding: 4px 10px;
		border-radius: 999px;
		margin-bottom: 8px;
		background: rgba(110, 231, 249, 0.15);
		color: var(--accent1);
	}
	/* VIDEO */
	
	.videos {
		display: flex;
		gap: 20px;
		justify-content: center;
		flex-wrap: wrap;
	}
	
	.video {
		width: 300px;
		aspect-ratio: 9 / 16;
		border-radius: 22px;
		overflow: hidden;
		border: 1px solid var(--border);
		background: #000;
	}
	
	.video video {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	/* FOOTER */
	
	.footer {
		text-align: center;
		color: var(--muted);
		font-size: 0.9rem;
	}
	/* SOCIALS */
	
	.socials {
		margin-top: 50px;
		margin-bottom: 50px;
		display: flex;
		justify-content: center;
		gap: 28px;
		flex-wrap: wrap;
	}
	
	.socials a {
		width: 52px;
		height: 52px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.08);
		border: 1px solid var(--border);
		display: flex;
		align-items: center;
		justify-content: center;
		backdrop-filter: blur(10px);
		transition: transform .25s ease, background .25s ease;
	}
	
	.socials a:hover {
		transform: translateY(-4px) scale(1.08);
		background: linear-gradient(135deg, var(--accent1), var(--accent2));
	}
	
	.socials img {
		width: 22px;
		height: 22px;
		filter: invert(1);
	}
	/* WEBSITE LINK */
	
	.socials a.site {
		width: auto;
		padding: 0 22px;
		gap: 10px;
		border-radius: 999px;
	}
	
	.socials a.site span {
		font-size: 0.85rem;
		font-weight: 600;
		color: var(--text);
		white-space: nowrap;
	}
	
	.socials a.site img {
		width: 18px;
		height: 18px;
	}
	
	.socials a {
		text-decoration: none;
	}
	/* CRYPTO LIST */
	
	.crypto-list {
		display: grid;
		gap: 16px;
	}
	
	.crypto-item {
		display: flex;
		align-items: center;
		gap: 16px;
		background: rgba(0, 0, 0, 0.45);
		border: 1px solid var(--border);
		border-radius: 16px;
		padding: 14px 18px;
		cursor: pointer;
		transition: transform .15s ease, background .15s ease;
	}
	
	.crypto-item:hover {
		transform: translateY(-2px);
		background: rgba(255, 255, 255, 0.08);
	}
	
	.crypto-icon {
		width: 42px;
		height: 42px;
		border-radius: 12px;
		background: rgba(255, 255, 255, 0.1);
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
	}
	
	.crypto-icon img {
		width: 22px;
		height: 22px;
	}
	
	.crypto-info {
		flex: 1;
		overflow: hidden;
	}
	
	.crypto-name {
		font-weight: 600;
		font-size: 0.95rem;
	}
	
	.crypto-address {
		font-family: monospace;
		font-size: 0.85rem;
		color: var(--muted);
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	
	.copy-btn {
		font-size: 0.8rem;
		padding: 6px 12px;
		border-radius: 999px;
		border: 1px solid var(--border);
		background: rgba(255, 255, 255, 0.08);
		color: var(--text);
	}
	
	.crypto-item {
		display: flex;
		align-items: center;
		gap: 12px;
		width: 100%;
		box-sizing: border-box;
		overflow: hidden;
	}
	
	.crypto-info {
		flex: 1;
		min-width: 0;
		/* 🔥 КЛЮЧЕВАЯ СТРОКА */
	}
	
	.crypto-address {
		font-size: 0.85rem;
		opacity: 0.75;
		overflow-wrap: anywhere;
		word-break: break-all;
	}
	
	.copy-btn {
		flex-shrink: 0;
		padding: 6px 10px;
		font-size: 0.75rem;
		white-space: nowrap;
	}
	
	@media (max-width: 520px) {
		.crypto-item {
			flex-wrap: wrap;
			gap: 8px;
		}
		.crypto-icon {
			width: 36px;
			height: 36px;
		}
		.crypto-info {
			width: calc(100% - 44px);
		}
		.copy-btn {
			width: 100%;
			text-align: center;
			margin-top: 6px;
		}
	}
	/* TOAST */
	
	.toast {
		position: fixed;
		bottom: 24px;
		left: 50%;
		transform: translateX(-50%);
		background: linear-gradient(90deg, var(--accent1), var(--accent2));
		color: #000;
		padding: 10px 18px;
		border-radius: 999px;
		font-weight: 600;
		font-size: 0.9rem;
		opacity: 0;
		pointer-events: none;
		transition: opacity .25s ease, transform .25s ease;
	}
	
	.toast.show {
		opacity: 1;
		transform: translateX(-50%) translateY(-6px);
	}
	/* COPY CHECKMARK */
	
	.copy-btn {
		min-width: 64px;
		text-align: center;
		transition: all .2s ease;
	}
	
	.copy-btn.copied {
		background: linear-gradient(90deg, var(--accent1), var(--accent2));
		color: #000;
		border: none;
	}
	
	.copy-btn.copied::before {
		content: "✓";
		font-weight: 700;
	}
	
	.lang-switch {
		position: fixed;
		top: 14px;
		right: 12px;
		display: flex;
		gap: 4px;
		z-index: 1000;
		max-width: calc(100vw - 24px);
		box-sizing: border-box;
	}
	
	.lang-btn {
		padding: 6px 12px;
		border-radius: 999px;
		border: 1px solid var(--border);
		background: rgba(255, 255, 255, 0.08);
		color: var(--text);
		font-size: 0.75rem;
		font-weight: 600;
		cursor: pointer;
		transition: background .2s ease;
	}
	
	.lang-btn.active {
		background: linear-gradient(90deg, var(--accent1), var(--accent2));
		color: #000;
		border: none;
	}
	
	@media (max-width: 480px) {
		.lang-btn {
			padding: 4px 8px;
			font-size: 0.7rem;
		}
	}
	
	.support-box {
		background: linear-gradient(180deg, #0f0f0f, #141414);
		border-radius: 18px;
		padding: 28px;
		text-align: center;
		max-width: 520px;
		margin: 0 auto;
		box-sizing: border-box;
	}
	
	.support-box h2 {
		margin-bottom: 10px;
	}
	
	.support-box p {
		color: var(--muted);
		font-size: 0.95rem;
		margin-bottom: 22px;
	}
	
	.btn.primary {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 14px 26px;
		border-radius: 14px;
		font-weight: 600;
		font-size: 0.95rem;
		background: linear-gradient(90deg, var(--accent1), var(--accent2));
		color: #000;
		text-decoration: none;
		white-space: nowrap;
		transition: transform .2s ease, box-shadow .2s ease;
	}
	
	.btn.primary:hover {
		transform: translateY(-2px);
		box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
	}
	
	@media (max-width: 520px) {
		.support-box {
			padding: 22px 18px;
		}
		.btn.primary {
			width: 100%;
			padding: 16px;
			font-size: 1rem;
		}
	}
	
	.footer .analytics-note a {
	    color:#fff;
	    text-decoration: none;
	}