﻿.stars {
	position: fixed;
	inset: 0;
	background-image: radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, .8), transparent), radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, .5), transparent), radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, .6), transparent), radial-gradient(2px 2px at 130px 80px, rgba(255, 255, 255, .4), transparent), radial-gradient(1px 1px at 160px 120px, rgba(255, 255, 255, .7), transparent), radial-gradient(2px 2px at 200px 60px, rgba(0, 229, 204, .6), transparent), radial-gradient(1px 1px at 250px 150px, rgba(255, 255, 255, .5), transparent), radial-gradient(2px 2px at 300px 40px, rgba(255, 77, 77, .4), transparent);
	background-size: 350px 200px;
	animation: twinkle 8s ease-in-out infinite alternate;
	pointer-events: none;
	z-index: 0
}

@keyframes twinkle {
	0% {
		opacity: .4
	}

	to {
		opacity: .7
	}
}

.nebula {
	position: fixed;
	inset: 0;
	background: radial-gradient(ellipse 80% 50% at 20% 20%, rgba(255, 77, 77, .12), transparent 50%), radial-gradient(ellipse 60% 60% at 80% 30%, rgba(0, 229, 204, .08), transparent 50%), radial-gradient(ellipse 90% 70% at 50% 90%, rgba(255, 77, 77, .06), transparent 50%);
	pointer-events: none;
	z-index: 0
}

.container {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 24px;
	min-height: 100vh;
	display: flex;
	flex-direction: column
}

.header {
	text-align: center;
	margin-bottom: 48px;
	animation: fadeInUp .6s ease-out
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.back-link {
	display: inline-block;
	margin-bottom: 24px;
	color: var(--text-muted);
	text-decoration: none;
	font-size: .9rem;
	transition: color .2s ease
}

.back-link:hover {
	color: var(--coral-bright)
}

.title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 6vw, 3rem);
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--text-primary)
}

.claw-accent {
	color: var(--coral-bright)
}

.subtitle {
	color: var(--text-secondary);
	font-size: 1.1rem
}

.showcase-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 20px;
	margin-bottom: 56px
}

.showcase-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 24px;
	border-radius: 16px;
	border: 1px solid var(--border-subtle);
	background: #0a0f1ab3;
	backdrop-filter: blur(8px);
	text-decoration: none;
	color: var(--text-primary);
	transition: all .25s cubic-bezier(.4, 0, .2, 1)
}

.showcase-card:hover {
	border-color: var(--coral-bright);
	transform: translateY(-4px);
	box-shadow: 0 16px 48px #ff4d4d26
}

.card-header {
	display: flex;
	align-items: center;
	gap: 12px
}

.avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	flex-shrink: 0;
	border: 2px solid var(--border-subtle);
	background: var(--bg-elevated);
	object-fit: cover
}

.author-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1
}

.author-name {
	font-weight: 600;
	color: var(--coral-bright);
	font-size: .95rem
}

.category-tag {
	font-size: .75rem;
	color: var(--text-muted)
}

.likes {
	font-size: .85rem;
	color: var(--text-muted)
}

.quote {
	font-size: .9rem;
	line-height: 1.6;
	color: var(--text-secondary);
	white-space: pre-line
}

.images {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 8px;
	margin-top: 12px
}

.tweet-image {
	width: 100%;
	height: auto;
	border-radius: 8px;
	border: 1px solid var(--border-subtle);
	object-fit: cover;
	max-height: 200px
}

.view-link {
	font-size: .85rem;
	color: var(--text-muted);
	padding-top: 12px;
	border-top: 1px solid var(--border-subtle);
	transition: color .2s ease
}

.showcase-card:hover .view-link {
	color: var(--coral-bright)
}

.cta-section {
	text-align: center;
	padding: 48px 24px;
	border-radius: 20px;
	border: 1px solid var(--border-subtle);
	background: #0a0f1a99;
	backdrop-filter: blur(12px);
	margin-bottom: 40px
}

.cta-title {
	font-family: var(--font-display);
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 8px
}

.cta-desc {
	color: var(--text-muted);
	margin-bottom: 24px
}

.cta-button {
	display: inline-block;
	padding: 14px 32px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--coral-bright), var(--coral-dark));
	color: #fff;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all .25s ease;
	box-shadow: 0 4px 16px #ff4d4d4d
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px #ff4d4d66
}

.cta-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap
}

.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 10px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: .95rem;
	text-decoration: none;
	transition: all .25s ease
}

.cta-primary {
	background: linear-gradient(135deg, var(--coral-bright) 0%, var(--coral-dark) 100%);
	color: #fff;
	box-shadow: 0 4px 20px #ff4d4d4d
}

.cta-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px #ff4d4d66
}

.cta-hub {
	background: #00e5cc26;
	border: 1px solid var(--cyan-bright);
	color: var(--cyan-bright)
}

.cta-hub:hover {
	background: #00e5cc40;
	transform: translateY(-2px)
}

.cta-secondary {
	background: #5865f226;
	border: 1px solid #5865F2;
	color: #5865f2
}

.cta-secondary:hover {
	background: #5865f240;
	transform: translateY(-2px)
}

.more-examples {
	text-align: center;
	color: var(--text-muted);
	font-size: .95rem;
	margin-bottom: 32px
}

.more-examples a {
	color: var(--cyan-bright);
	text-decoration: none
}

.more-examples a:hover {
	text-decoration: underline
}

.footer {
	margin-top: auto;
	padding-top: 48px;
	text-align: center;
	font-size: .9rem;
	color: var(--text-muted)
}

.footer-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px
}

.footer-separator {
	color: var(--text-muted)
}

.footer a {
	color: var(--coral-bright);
	text-decoration: none
}

.footer a:hover {
	color: var(--cyan-bright)
}

@media(max-width:480px) {
	.container {
		padding: 24px 16px
	}

	.showcase-grid {
		grid-template-columns: 1fr
	}

	.showcase-card {
		padding: 20px
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center
	}

	.cta-btn {
		width: 100%;
		max-width: 280px;
		justify-content: center
	}
}
