* {
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
	color: #2a1f1a;
	font-family: "Palatino Linotype", Palatino, Georgia, serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background:
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 32%),
		radial-gradient(circle at 85% 10%, rgba(255, 216, 230, 0.5), transparent 28%),
		linear-gradient(135deg, #fff7f2 0%, #ffe3ef 48%, #f6f0ff 100%);
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.32) 1px, transparent 1px);
	background-size: 28px 28px;
	opacity: 0.22;
}

.balloon-field {
	position: fixed;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}

.balloon {
	position: absolute;
	left: var(--x);
	bottom: -18vh;
	width: var(--size);
	height: calc(var(--size) * 1.28);
	border-radius: 50% 50% 46% 46% / 54% 54% 46% 46%;
	background: linear-gradient(145deg, color-mix(in srgb, var(--color) 82%, white 18%), var(--color));
	box-shadow:
		inset -0.35rem -0.65rem 0 rgba(0, 0, 0, 0.08),
		0 16px 22px rgba(80, 40, 68, 0.1);
	opacity: 0.92;
	transform: translate3d(0, 0, 0);
	animation:
		balloon-rise var(--duration) linear var(--delay) infinite,
		balloon-sway calc(var(--duration) / 3) ease-in-out var(--delay) infinite alternate;
}

.balloon::before {
	content: "";
	position: absolute;
	top: 16%;
	left: 18%;
	width: 28%;
	height: 24%;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.34);
	filter: blur(1px);
}

.balloon::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -34%;
	width: 1px;
	height: 42%;
	background: rgba(98, 67, 86, 0.42);
	transform: translateX(-50%) rotate(var(--string-tilt));
	transform-origin: top;
}

@keyframes balloon-rise {
	0% {
		transform: translate3d(0, 0, 0) scale(0.9);
		opacity: 0;
	}

	8% {
		opacity: 0.92;
	}

	100% {
		transform: translate3d(var(--drift), -125vh, 0) scale(1.06);
		opacity: 0;
	}
}

@keyframes balloon-sway {
	from {
		margin-left: -8px;
	}

	to {
		margin-left: 8px;
	}
}

main {
	min-height: 100vh;
	padding: 20px 10px 20px;
	display: grid;
	place-items: center;
	position: relative;
	z-index: 1;
}

.hero {
	width: min(1100px, 100%);
	padding: clamp(28px, 4vw, 48px);
	border: 1px solid rgba(88, 51, 44, 0.12);
	border-radius: 32px;
	background: rgba(255, 250, 247, 0.8);
	box-shadow: 0 24px 70px rgba(82, 42, 58, 0.14);
	backdrop-filter: blur(12px);
}

.hero h1 {
	margin: 0;
	font-size: clamp(2rem, 4vw, 6.25rem);
	line-height: 0.8;
	letter-spacing: -0.05em;
	color: #271a18;
}

.hero__intro {
	max-width: 42rem;
	margin: 30px 0 0;
	font-family: "Trebuchet MS", "Segoe UI", sans-serif;
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	line-height: 1.6;
	color: rgba(39, 26, 24, 0.82);
}

.page-header {
	padding: 24px 20px;
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: flex-start;
	position: relative;
	z-index: 2;
	background: transparent;
}

.page-header__eyebrow {
	margin: 0;
	font-family: "Trebuchet MS", "Segoe UI", sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #a25568;
}

.page-header__back {
	margin: 0;
	padding: 6px 12px;
	font-family: "Trebuchet MS", "Segoe UI", sans-serif;
	font-size: 0.85rem;
	color: #a25568;
	text-decoration: none;
	border: 1px solid rgba(162, 85, 104, 0.3);
	border-radius: 6px;
	transition: all 140ms ease;
	cursor: pointer;
	min-height: 44px;
	min-width: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	-webkit-user-select: none;
	user-select: none;
}

.page-header__back:hover {
	background: rgba(162, 85, 104, 0.08);
	border-color: rgba(162, 85, 104, 0.5);
}

.gf-photo {
	width: 300px;
	height: 300px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.8);
	box-shadow: 0 8px 24px rgba(82, 42, 58, 0.2);
}

.hero__grid {
	margin-top: 28px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.hero-card {
	position: relative;
	overflow: hidden;
	min-height: 180px;
	padding: 24px;
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	box-shadow: 0 16px 40px rgba(61, 36, 53, 0.12);
	color: #2b1c1a;
	transform: translateY(0);
	transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
	cursor: pointer;
	-webkit-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(162, 85, 104, 0.1);
	touch-action: manipulation;
	display: block;
}

/* Ensure anchor cards inherit styles and remove default link styling */
.hero-card[href] {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

.hero-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 48px rgba(61, 36, 53, 0.18);
}

.hero-card::after {
	content: "";
	position: absolute;
	inset: auto -18% -34% auto;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.28);
	filter: blur(1px);
}

.hero-card h2 {
	position: relative;
	z-index: 1;
	margin: 0 0 10px;
	font-size: clamp(1.5rem, 2vw, 2rem);
}

.hero-card p {
	position: relative;
	z-index: 1;
	max-width: 28ch;
	margin: 0;
	font-family: "Trebuchet MS", "Segoe UI", sans-serif;
	font-size: 1rem;
	line-height: 1.55;
}

.hero-card--julie {
	background: linear-gradient(135deg, #ffd9e6 0%, #ffc2d1 100%);
}

.hero-card--collage {
	background: linear-gradient(135deg, #fff0c8 0%, #ffe29c 100%);
}

.hero-card--playlist {
	background: linear-gradient(135deg, #d7efff 0%, #b6dbff 100%);
}

.hero-card--secret {
	background: linear-gradient(135deg, #ddcfff 0%, #c1b1ff 100%);
}

@media (max-width: 720px) {
	main {
		padding: 16px;
	}

	.hero {
		padding: 22px;
		border-radius: 24px;
	}

	.hero__grid {
		grid-template-columns: 1fr;
	}

	.gf-photo {
		width: 68px;
		height: 68px;
	}

	.hero-card {
		min-height: 160px;
		padding: 20px;
	}

	.balloon {
		bottom: -22vh;
	}
}

@media (prefers-reduced-motion: reduce) {
	.balloon {
		animation: none;
		opacity: 0.3;
	}
}

/* Collage Page Styles */
.collage-container {
	width: min(1100px, 100%);
	padding: clamp(28px, 4vw, 48px);
	border: 1px solid rgba(88, 51, 44, 0.12);
	border-radius: 32px;
	background: rgba(255, 250, 247, 0.8);
	box-shadow: 0 24px 70px rgba(82, 42, 58, 0.14);
	backdrop-filter: blur(12px);
}

.collage-container h1 {
	margin: 0 0 32px;
	font-size: clamp(2rem, 4vw, 3rem);
	color: #271a18;
}

.collage-container h2 {
	margin: 32px 0 20px;
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: #271a18;
}

.photo-gallery {
	margin-bottom: 40px;
}

.photo-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 20px;
}

.photo-item {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.photo-thumbnail {
	width: 100%;
	height: 200px;
	background-color: #e8d4c8;
	border-radius: 12px;
	border: 2px solid rgba(162, 85, 104, 0.2);
	object-fit: cover;
	cursor: pointer;
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.photo-thumbnail:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 24px rgba(82, 42, 58, 0.2);
}

.photo-caption {
	font-size: 0.9rem;
	color: #a25568;
	margin: 0;
	min-height: 40px;
	padding: 8px;
	background: rgba(162, 85, 104, 0.05);
	border-radius: 6px;
	line-height: 1.4;
}

.photo-caption:focus {
	outline: none;
	background: rgba(162, 85, 104, 0.1);
	border: 1px solid rgba(162, 85, 104, 0.3);
}

/* Lightbox Modal */
.lightbox {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	animation: fadeIn 200ms ease;
}

.lightbox.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-image {
	max-width: 90%;
	max-height: 90vh;
	object-fit: contain;
	border-radius: 8px;
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 35px;
	z-index: 3;
	color: white;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	background: transparent;
	border: 0;
	line-height: 1;
	padding: 8px;
	min-width: 44px;
	min-height: 44px;
	pointer-events: auto;
	transition: 200ms ease;
}

.lightbox-body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	max-width: 92%;
	padding: 20px;
}

.lightbox-caption {
	color: #fff;
	background: rgba(0,0,0,0.45);
	padding: 10px 14px;
	border-radius: 8px;
	max-width: 90%;
	text-align: center;
	font-size: 1rem;
	line-height: 1.4;
	display: none;
}

.lightbox.active .lightbox-caption {
	display: block;
}

.lightbox-close:hover {
	color: #d9d9d9;
}

.lightbox-close:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Songs Table */
.songs-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 16px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(82, 42, 58, 0.1);
}

.songs-table thead {
	background: linear-gradient(135deg, #d7efff 0%, #b6dbff 100%);
}

.songs-table th {
	padding: 16px;
	text-align: left;
	font-weight: 700;
	color: #2a1f1a;
	border-bottom: 2px solid rgba(162, 85, 104, 0.2);
}

.songs-table td {
	padding: 14px 16px;
	border-bottom: 1px solid rgba(162, 85, 104, 0.1);
	color: #2a1f1a;
}

.songs-table tbody tr:hover {
	background-color: rgba(162, 85, 104, 0.05);
}

.songs-table td[contenteditable="true"]:focus {
	outline: 2px solid rgba(162, 85, 104, 0.5);
	background-color: rgba(162, 85, 104, 0.1);
	border-radius: 4px;
}

.songs-table a {
	color: #a25568;
	text-decoration: none;
	border-bottom: 1px solid #a25568;
	transition: color 200ms ease;
}

.songs-table a:hover {
	color: #d7628f;
}

/* Letter Card */
.letter-container {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 20px;
	min-height: 100vh;
}

.letter-card {
	width: 612px;
	height: 792px;
	background: white;
	box-shadow: 
		0 20px 60px rgba(82, 42, 58, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
	border-radius: 2px;
	transform: perspective(1000px) rotateY(-8deg);
	position: relative;
	overflow: hidden;
}

.letter-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 2px;
	height: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent);
}

.letter-inner {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 60px 50px;
	box-sizing: border-box;
}

.letter-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.letter-title {
	margin: 0 0 24px;
	font-size: 1.8rem;
	color: #2a1f1a;
	font-family: "Palatino Linotype", Palatino, Georgia, serif;
}

.letter-body {
	flex: 1;
	font-size: 1.1rem;
	line-height: 1.8;
	color: #3a2f2d;
	font-family: "Palatino Linotype", Palatino, Georgia, serif;
	outline: none;
	resize: none;
	White-space: pre-wrap;
	word-wrap: break-word;
}

.letter-body:focus {
	background-color: rgba(162, 85, 104, 0.03);
}

.letter-body p {
	margin: 0 0 12px;
	min-height: 1.8em;
}

@media (max-width: 720px) {
	.photo-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.photo-thumbnail {
		height: 150px;
	}

	.letter-card {
		width: 90vw;
		height: auto;
		aspect-ratio: 8.5 / 11;
		transform: none;
		padding: 30px 25px;
	}

	.letter-inner {
		padding: 30px 25px;
	}

	.songs-table th,
	.songs-table td {
		padding: 12px 8px;
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.photo-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.photo-thumbnail {
		height: 120px;
	}

	.collage-container {
		padding: 16px;
	}

	.songs-table {
		font-size: 0.8rem;
	}

	.songs-table th,
	.songs-table td {
		padding: 8px 4px;
	}
}

/* Playlist Container */
.playlist-container {
	width: min(1100px, 100%);
	padding: clamp(28px, 4vw, 48px);
	border: 1px solid rgba(88, 51, 44, 0.12);
	border-radius: 32px;
	background: rgba(255, 250, 247, 0.8);
	box-shadow: 0 24px 70px rgba(82, 42, 58, 0.14);
	backdrop-filter: blur(12px);
}

.playlist-container h1 {
	margin: 0 0 32px;
	font-size: clamp(2rem, 4vw, 3rem);
	color: #271a18;
}

/* Secret Container */
.secret-container {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 20px;
	min-height: 100vh;
}

.secret-content {
	text-align: center;
	padding: 60px 40px;
	border: 2px solid rgba(162, 85, 104, 0.3);
	border-radius: 24px;
	background: rgba(255, 240, 200, 0.6);
	box-shadow: 0 16px 40px rgba(82, 42, 58, 0.15);
	max-width: 600px;
}

.secret-content h1 {
	margin: 0 0 40px;
	font-size: clamp(2rem, 4vw, 2.5rem);
	color: #271a18;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.7;
	}
}

.reveal-button {
	padding: 20px 40px;
	font-size: 1.3rem;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(135deg, #a25568 0%, #d7628f 100%);
	border: none;
	border-radius: 12px;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(162, 85, 104, 0.3);
	transition: all 200ms ease;
	font-family: "Trebuchet MS", "Segoe UI", sans-serif;
	-webkit-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	min-height: 44px;
}

.reveal-button:hover {
	transform: scale(1.08);
	box-shadow: 0 12px 32px rgba(162, 85, 104, 0.4);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
}

.reveal-button:active {
	transform: scale(0.98);
}

.secret-message {
	margin-top: 40px;
	padding: 30px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 12px;
	border: 1px solid rgba(162, 85, 104, 0.2);
	animation: slideIn 400ms ease;
}

.secret-message.hidden {
	display: none;
}

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

.secret-message p {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.8;
	color: #2a1f1a;
	font-family: "Palatino Linotype", Palatino, Georgia, serif;
}

/* Time Together Timer */
.timer-section {
	margin-top: 40px;
	padding: 32px;
	background: linear-gradient(135deg, rgba(255, 216, 230, 0.4) 0%, rgba(215, 198, 255, 0.4) 100%);
	border: 2px solid rgba(162, 85, 104, 0.2);
	border-radius: 20px;
}

.timer-section h2 {
	margin: 0 0 24px;
	text-align: center;
	font-size: 1.8rem;
	color: #271a18;
}

.time-together-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.time-display {
	display: flex;
	align-items: center;
	gap: 32px;
	padding: 28px 40px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(82, 42, 58, 0.1);
}

.time-value {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	min-width: 100px;
}

.time-value span:first-child {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	color: #a25568;
	line-height: 1;
}

.time-label {
	font-size: 0.95rem;
	font-weight: 600;
	color: #2a1f1a;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.time-divider {
	font-size: 2rem;
	color: #a25568;
	opacity: 0.5;
}

@media (max-width: 720px) {
	.secret-content {
		padding: 40px 24px;
	}

	.reveal-button {
		padding: 16px 32px;
		font-size: 1.1rem;
	}

	.time-display {
		gap: 20px;
		padding: 20px 28px;
	}

	.time-value {
		min-width: 80px;
	}

	.time-divider {
		font-size: 1.5rem;
	}

	.playlist-container {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	html {
		font-size: 14px;
	}

	main {
		padding: 12px 0;
	}

	.page-header {
		padding: 16px 12px;
		gap: 12px;
	}

	.page-header__eyebrow {
		font-size: 0.7rem;
	}

	.page-header__back {
		padding: 5px 10px;
		font-size: 0.75rem;
	}

	.hero {
		padding: 16px;
		border-radius: 16px;
		margin: 12px;
	}

	.hero h1 {
		font-size: clamp(1.5rem, 5vw, 2.5rem);
		margin-bottom: 16px;
	}

	.hero__intro {
		font-size: 0.95rem;
		margin-top: 16px;
	}

	.hero__grid {
		gap: 12px;
		margin-top: 16px;
	}

	.gf-photo {
		width: 120px;
		height: 120px;
	}

	.hero-card {
		min-height: 140px;
		padding: 16px;
		border-radius: 16px;
	}

	.hero-card h2 {
		font-size: 1.3rem;
		margin-bottom: 8px;
	}

	.hero-card p {
		font-size: 0.9rem;
		line-height: 1.4;
	}

	/* Collage Mobile Optimizations */
	.collage-container {
		padding: 12px;
		margin: 0 12px;
		border-radius: 16px;
	}

	.collage-container h1 {
		font-size: 1.8rem;
		margin-bottom: 20px;
	}

	.collage-container h2 {
		font-size: 1.3rem;
		margin: 24px 0 16px;
	}

	.photo-gallery {
		margin-bottom: 24px;
	}

	.photo-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
		margin-bottom: 12px;
	}

	.photo-item {
		gap: 8px;
	}

	.photo-thumbnail {
		height: 140px;
		border-radius: 8px;
	}

	.photo-caption {
		font-size: 0.8rem;
		min-height: 32px;
		padding: 6px;
		line-height: 1.3;
	}

	.lightbox-close {
		top: 12px;
		right: 12px;
		font-size: 32px;
		width: 44px;
		height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.songs-table {
		font-size: 0.75rem;
		margin-top: 12px;
	}

	.songs-table th,
	.songs-table td {
		padding: 6px 4px;
	}

	.songs-table th {
		font-size: 0.7rem;
	}

	.songs-table a {
		font-size: 0.75rem;
	}

	/* Letter Card Mobile */
	.letter-container {
		padding: 12px;
	}

	.letter-card {
		width: 95vw;
		max-width: 400px;
		padding: 0;
		transform: none;
		box-shadow: 0 8px 24px rgba(82, 42, 58, 0.2);
	}

	.letter-inner {
		padding: 20px 16px;
	}

	.letter-title {
		font-size: 1.4rem;
		margin-bottom: 16px;
	}

	.letter-body {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.letter-body p {
		margin-bottom: 8px;
	}

	/* Playlist Mobile */
	.playlist-container {
		padding: 12px;
		margin: 0 12px;
	}

	.playlist-container h1 {
		font-size: 1.8rem;
	}

	/* Secret Mobile */
	.secret-container {
		padding: 16px 12px;
		min-height: auto;
	}

	.secret-content {
		padding: 24px 16px;
		margin: 20px auto;
	}

	.secret-content h1 {
		font-size: 1.6rem;
		margin-bottom: 28px;
	}

	.reveal-button {
		padding: 16px 20px;
		font-size: 1rem;
		width: 100%;
		min-height: 44px;
		border-radius: 10px;
		font-weight: 700;
	}

	.reveal-button:active {
		transform: scale(0.95);
	}

	.secret-message {
		margin-top: 24px;
		padding: 20px;
		border-radius: 10px;
	}

	.secret-message p {
		font-size: 1rem;
		line-height: 1.6;
	}

	/* Timer Mobile */
	.timer-section {
		margin-top: 24px;
		padding: 20px;
		border-radius: 16px;
		margin-left: 12px;
		margin-right: 12px;
	}

	.timer-section h2 {
		font-size: 1.3rem;
		margin-bottom: 16px;
	}

	.time-display {
		flex-direction: row;
		gap: 12px;
		padding: 16px;
		flex-wrap: wrap;
	}

	.time-value {
		min-width: 70px;
		gap: 4px;
	}

	.time-value span:first-child {
		font-size: 1.8rem;
	}

	.time-label {
		font-size: 0.75rem;
		letter-spacing: 0.05em;
	}

	.time-divider {
		font-size: 1.4rem;
		padding: 0 8px;
	}
}

/* Extra small screens (iPhone SE, etc.) */
@media (max-width: 380px) {
	html {
		font-size: 13px;
	}

	.hero {
		padding: 12px;
		margin: 8px;
	}

	.hero h1 {
		font-size: 1.3rem;
	}

	.gf-photo {
		width: 100px;
		height: 100px;
	}

	.hero-card {
		padding: 12px;
	}

	.collage-container {
		margin: 0 8px;
		padding: 8px;
	}

	.photo-grid {
		gap: 6px;
	}

	.photo-thumbnail {
		height: 120px;
	}

	.letter-card {
		width: 98vw;
	}

	.reveal-button {
		padding: 14px 16px;
		font-size: 0.9rem;
	}

	.songs-table {
		font-size: 0.7rem;
	}

	.songs-table th,
	.songs-table td {
		padding: 4px 2px;
	}

	.time-display {
		gap: 8px;
		padding: 12px;
	}
}
