* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 16px;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.5rem;
	background: transparent;
}

.logo{
	display: flex;
	align-items: center;
	color: #fff;
}

.tinder-logo {
	height: 2.5rem;
	width: auto;
}

.menu-btn {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 1.5rem;
	height: 1.25rem;
	background: none;
	border: none;
	cursor: pointer;
}

.menu-btn span {
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
}

.main {
	min-height: 100vh;
	background: url('bg.webp') center/cover no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	padding: 2rem;
	padding-bottom: 4rem;
	color: #fff;
	position: relative;
}

.main-zc{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.3);
}

.main-content{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
}

.main-content h1 {
	font-size: 2.5rem;
	font-weight: 700;
}

.buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
	max-width: 300px;
	margin-bottom: 2rem;
}

.btn-primary {
	background: #000;
	color: #fff;
	border: none;
	padding: 1rem;
	border-radius: 2rem;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
}

.btn-secondary {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
	padding: 1rem;
	border-radius: 2rem;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
}

.main .app-store img {
	height: 3rem;
	width: auto;
}

.list {
	padding: 2rem 1.5rem;
	background: #fff;
}

.story-card {
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
	border-bottom: 1px solid #eee;
	padding: 1.5rem 0;
}

.story-card:last-child {
	border-bottom: none;
}

.story-content h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: #1a1a1a;
}

.story-content p {
	font-size: 0.95rem;
	color: #666;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.read-more {
	display: inline-flex;
	align-items: center;
	font-size: 0.95rem;
	font-weight: 600;
	color: #1a1a1a;
	text-decoration: none;
}

.read-more span {
	margin-left: 0.5rem;
}

.story-image {
	width: 183px;
	height: 230px;
	flex-shrink: 0;
}

.story-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}

.text-1 {
	padding: 2rem 1.5rem;
	background: #fff;
}

.text-1 h2 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #1a1a1a;
}

.text-1 .app-store {
	margin-bottom: 1.5rem;
}

.text-1 .app-store img {
	height: 3rem;
	width: auto;
}

.text-1 p {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.7;
	margin-bottom: 1rem;
}

.text-1 p:last-child {
	margin-bottom: 0;
}

.text-2 {
	padding: 2rem 1.5rem;
	background: #fff;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.links-column h4 {
	font-size: 0.9rem;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.links-column ul {
	list-style: none;
}

.links-column ul li {
	margin-bottom: 0.75rem;
}

.links-column ul li a {
	font-size: 0.85rem;
	color: #666;
	text-decoration: none;
}

.links-column ul li a:hover {
	text-decoration: underline;
}

.social-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.social-icon {
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1a1a1a;
	color: #fff;
	border-radius: 50%;
	font-size: 0.75rem;
	text-decoration: none;
}

.footer {
	padding: 1.5rem;
	background: #fff;
	color: #333;
}

.footer-links-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.footer-links-row a {
	font-size: 0.75rem;
	color: #999;
	text-decoration: none;
}

.footer-links-row span {
	color: #999;
}

.footer p {
	font-size: 0.75rem;
	color: #999;
}

@media (min-width: 768px) {
	.main h1 {
		font-size: 3.5rem;
	}

	.buttons {
		flex-direction: row;
		max-width: 500px;
	}

	.btn-primary,
	.btn-secondary {
		flex: 1;
	}

	.story-card {
		flex-direction: row;
		gap: 2rem;
	}

	.story-content {
		flex: 1;
	}

	.story-image {
		flex: 1;
		margin-top: 0;
	}

	.footer-links {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (min-width: 1024px) {
	.nav {
		padding: 1rem 3rem;
	}

	.main {
		padding: 3rem;
	}

	.list,
	.text-1,
	.text-2 {
		padding: 3rem;
		max-width: 1200px;
		margin: 0 auto;
	}

	.footer {
		padding: 2rem 3rem;
	}
}