/* Critical CSS - Combined base and component styles */
/* Source: reset.css + variables.css + typography.css + container.css + buttons.css */

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

html, body {
	height: 100%;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
}

a {
	text-decoration: none;
	color: inherit;
}

ul, ol {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
}

/* === Variables === */
:root {
	--primary-color: #ff6b6b;
	--primary-hover: #ff5252;
	--text-color: #333;
	--text-light: #666;
	--text-lighter: #999;
	--bg-light: #f8f9fa;
	--bg-white: #ffffff;
	--border-color: #ddd;
	--bs-body-bg: #ffffff;
	--bs-body-color: #333;
	--container-max-width: 1300px;
	--container-padding: 20px;
	--font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	--font-size-base: 16px;
	--line-height-base: 1.6;
	--transition-base: all 0.3s ease;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
	margin-bottom: 1rem;
	line-height: 1.8;
}

@media (max-width: 768px) {
	h1 { font-size: 2rem; }
	h2 { font-size: 1.75rem; }
	h3 { font-size: 1.25rem; }
}

/* === Container === */
.page-container {
	width: 100%;
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.container {
	width: 100%;
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

@media (max-width: 768px) {
	.page-container,
	.container {
		padding: 0 15px;
	}
}

/* === Buttons === */
.btn {
	display: inline-block;
	padding: 12px 32px;
	border-radius: 25px;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: var(--transition-base);
	border: none;
	text-decoration: none;
	background-color: var(--primary-color);
	color: white;
}

.btn:hover {
	background-color: var(--primary-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

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

.btn-primary:hover {
	background-color: var(--primary-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.btn-outline {
	background-color: transparent;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
}

.btn-outline:hover {
	background-color: var(--primary-color);
	color: white;
}

.btn-large {
	padding: 14px 40px;
	font-size: 18px;
}

.btn-block {
	display: block;
	width: 100%;
}

.btn:hover,
button:hover,
a.btn:hover {
	text-decoration: none;
}

/* === Banner Buttons (shared across pages) === */
.banner-buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.desktop-buttons {
	display: flex;
	gap: 15px;
	align-items: center;
}

.mobile-buttons {
	display: none;
}

@media (max-width: 768px) {
	.desktop-buttons {
		display: none;
	}

	.mobile-buttons {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0;
		width: 100%;
	}

	.mobile-buttons .ios-only,
	.mobile-buttons .android-only {
		display: none;
		margin-bottom: 0;
	}

	.device-ios .mobile-buttons .ios-only {
		display: block;
	}

	.device-android .mobile-buttons .android-only {
		display: block;
	}

	.mobile-buttons .btn-signup {
		display: inline-block;
		color: #ff4757;
		font-size: 18px;
		font-weight: 700;
		text-align: center;
		text-decoration: none !important;
		transition: all 0.3s ease;
		padding: 0;
		margin-top: 8px;
		letter-spacing: 0.5px;
		background: transparent;
	}

	.mobile-buttons .btn-signup:hover {
		color: #ff6b7a;
		text-decoration: none !important;
		background: transparent;
	}

	.mobile-buttons a img {
		max-width: 234px;
		width: 234px;
		height: auto;
	}
}

/* === Footer === */
footer {
	color: #fff;
	background: #000;
	padding: 60px 0 30px 0;
	clear: both;
}

footer a {
	color: #ccc;
	transition: color 0.3s ease;
}

footer a:hover {
	color: #fff;
	text-decoration: none;
}

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

.footer-columns {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 40px;
	margin-bottom: 30px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-columns dl {
	margin: 0;
	flex: 1;
	min-width: 160px;
	max-width: 200px;
}

.footer-columns dt {
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	letter-spacing: 1px;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.footer-columns dd {
	margin: 0;
	padding: 6px 0;
	font-size: 14px;
}

.footer-columns dd a {
	color: #999;
}

.footer-columns dd a:hover {
	color: #fff;
}

.footer-download dd {
	padding: 4px 0;
}

.footer-download img {
	height: 50px;
	width: auto;
}

.footer-bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 40px;
}

.footer-copyright {
	font-size: 13px;
	color: #888;
}

.footer-app-buttons {
	display: flex;
	gap: 10px;
}

.footer-app-buttons img {
	height: 36px;
	width: auto;
}

@media (max-width: 768px) {
	footer {
		padding: 30px 0 20px 0;
	}

	.footer-columns {
		gap: 30px;
		padding-bottom: 30px;
		margin-bottom: 20px;
	}

	.footer-columns dl {
		min-width: 120px;
	}

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

	.footer-copyright {
		font-size: 12px;
		padding: 0 15px;
		line-height: 1.5;
	}
}

@media (max-width: 480px) {
	.footer-columns {
		flex-direction: column;
		gap: 25px;
	}

	.footer-columns dl {
		width: 100%;
	}

	.footer-app-buttons {
		justify-content: center;
	}

	.footer-app-buttons img {
		height: 32px;
	}
}