/* Base Styles */
html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
	color: #1a202c;
	background: linear-gradient(135deg, #ecfdf5 0%, #f5f5f5 50%, #d1fae5 100%);
	margin: 0px;
	padding: 0;
	line-height: 1.7;
	min-height: 100vh;
	font-size: 17px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: -0.01em;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

#mainTable {
	width: 100%;
	border-collapse: collapse;
	margin: 0 auto;
}

#middleTable {
	border: none;
	background: white;
	box-shadow: 0 2px 20px rgba(0,0,0,0.08);
	border-radius: 16px;
	margin: 20px 0;
	padding: 50px 30px;
	font-size: 17px;
}

#bottomThreeM {
	border-right-style: dashed;
	border-left-style: dashed;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
}

#bottomThree {
	border: none;
	background: white;
	padding: 20px 30px;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	margin: 20px 0;
	display: block;
}

#header {
	background: white;
	border: none;
	border-radius: 16px 16px 0 0;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	padding: 20px 30px;
}

#header table {
	width: 100%;
}

#footer {
	background: white;
	border: none;
	border-radius: 0 0 16px 16px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
	margin-top: 40px;
}

#mainTable tr #footer a {
	font-size: 14px;
	text-decoration: none;
	color: #333;
	padding: 0 10px;
}

#mainTable tr #footer a:hover {
	color: #7EBE5D;
}

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

#logo {
	max-width: 100%;
	height: auto;
}

a {
    text-decoration: none;
	color: #047857;
	font-weight: 500;
	transition: color 0.2s ease;
}

a:hover {
	color: #065f46;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

h1, h2, h3, h4, h5, h6 {
	color: #1a202c;
	margin-top: 32px;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.3;
}

h1 {
	font-size: 48px;
	margin-top: 0;
	font-weight: 800;
	letter-spacing: -0.03em;
}

h2 {
	font-size: 36px;
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 20px;
	font-weight: 700;
}

h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 16px;
}

h4 {
	font-size: 20px;
	font-weight: 600;
}

p {
	margin: 16px 0;
	line-height: 1.8;
	color: #4a5568;
	font-size: 17px;
}

strong, b {
	font-weight: 600;
	color: #1a202c;
}

ul, ol {
	margin: 20px 0;
	padding-left: 32px;
	line-height: 1.8;
}

li {
	margin: 12px 0;
	color: #4a5568;
	font-size: 17px;
}

.note {
	background: #fff3cd;
	border: 1px solid #ffc107;
	border-radius: 5px;
	padding: 12px;
	margin: 15px 0;
	font-size: 14px;
}

/* Upload Section */
.upload-section {
	background: #f8f9fa;
	border: 2px dashed #7EBE5D;
	border-radius: 10px;
	padding: 30px;
	margin: 20px 0;
	text-align: center;
}

.file-input-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.file-label {
	display: inline-block;
	padding: 15px 30px;
	background: #fff;
	border: 2px solid #7EBE5D;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
	min-width: 300px;
	text-align: center;
}

.file-label:hover {
	background: #7EBE5D;
	color: white;
}

#fileInput {
	display: none;
}

.upload-button {
	padding: 18px 48px;
	background: linear-gradient(135deg, #047857 0%, #059669 100%);
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 240px;
	letter-spacing: -0.01em;
	box-shadow: 0 4px 16px rgba(4, 120, 87, 0.3);
}

.upload-button:hover:not(:disabled) {
	background: linear-gradient(135deg, #065f46 0%, #047857 100%);
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(4, 120, 87, 0.4);
}

.upload-button:disabled {
	background: #ccc;
	cursor: not-allowed;
}

.spinner {
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 2px solid #ffffff;
	border-top: 2px solid transparent;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

#progressContainer {
	margin-top: 20px;
	width: 100%;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.progress-bar {
	width: 100%;
	height: 30px;
	background: #e0e0e0;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #4CAF50, #7EBE5D);
	transition: width 0.3s ease;
	width: 0%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 600;
}

.progress-text {
	margin-top: 10px;
	font-size: 14px;
	color: #666;
}

.file-info {
	margin-top: 15px;
	font-size: 13px;
	color: #666;
}

/* FAQ Section */
.faq-item {
	margin: 20px 0;
	padding: 15px;
	background: #f8f9fa;
	border-left: 4px solid #7EBE5D;
	border-radius: 4px;
}

.faq-item h3 {
	margin-top: 0;
	color: #2c3e50;
}

.faq-item p {
	margin-bottom: 0;
}

/* Results Page */
.results-container {
	max-width: 800px;
	margin: 0 auto;
}

.shutter-count-box {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	margin: 20px 0;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.shutter-count-box h3 {
	margin-top: 0;
	color: white;
	font-size: 18px;
}

.shutter-count-value {
	font-size: 48px;
	font-weight: bold;
	margin: 20px 0;
}

.count-number {
	display: inline-block;
	animation: countUp 0.5s ease-out;
}

@keyframes countUp {
	from { transform: scale(0.5); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}

.error-text {
	color: #ffeb3b;
	font-size: 24px;
}

.help-text {
	font-size: 14px;
	margin-top: 15px;
	opacity: 0.9;
}

.info-table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.info-table tr {
	border-bottom: 1px solid #e0e0e0;
}

.info-table tr:last-child {
	border-bottom: none;
}

.info-table td {
	padding: 12px 15px;
}

.info-table td.label {
	font-weight: 600;
	color: #555;
	width: 200px;
}

/* Share Section */
.share-section {
	background: #f8f9fa;
	padding: 20px;
	border-radius: 8px;
	margin: 20px 0;
}

.url-share {
	margin-bottom: 15px;
}

.url-share label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #555;
}

.share-url-input {
	width: calc(100% - 120px);
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px 0 0 4px;
	font-size: 14px;
	font-family: monospace;
}

.copy-button {
	padding: 10px 20px;
	background: #2196F3;
	color: white;
	border: none;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: background 0.3s ease;
	margin-left: -4px;
}

.copy-button:hover {
	background: #1976D2;
}

.social-share {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 15px;
}

.share-btn {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 5px;
	color: white;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.share-btn.facebook {
	background: #1877F2;
}

.share-btn.facebook:hover {
	background: #166fe5;
}

.share-btn.twitter {
	background: #1DA1F2;
}

.share-btn.twitter:hover {
	background: #1a91da;
}

.back-link {
	display: inline-block;
	padding: 10px 20px;
	background: #f0f0f0;
	color: #333;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.back-link:hover {
	background: #e0e0e0;
	transform: translateX(-5px);
}

/* Error Container */
.error-container {
	background: #fff3cd;
	border: 1px solid #ffc107;
	border-radius: 8px;
	padding: 30px;
	text-align: center;
}

.error-container h2 {
	color: #856404;
	border-bottom: none;
}

.error-container p {
	color: #856404;
	font-size: 16px;
}

.error-icon {
	font-size: 64px;
	margin-bottom: 20px;
}

/* Modern Results Page Styles */
.results-container-modern {
	max-width: 900px;
	margin: 0 auto;
}

.results-hero {
	text-align: center;
	padding: 40px 20px 30px;
}

.results-title {
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 10px 0;
	color: #2c3e50;
}

.results-subtitle {
	font-size: 16px;
	color: #7f8c8d;
	margin: 0;
}

/* Card Styles */
.card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	margin-bottom: 24px;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.card-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px 24px;
	border-bottom: 1px solid #f0f0f0;
	background: #fafafa;
}

.card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: white;
	border-radius: 10px;
	color: #047857;
	flex-shrink: 0;
}

.card-header h2,
.card-header h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	color: #2c3e50;
	border: none;
	padding: 0;
}

.card-body {
	padding: 24px;
}

/* Shutter Count Card */
.card-shutter {
	background: linear-gradient(135deg, #047857 0%, #065f46 100%);
	color: white;
	border: none;
	box-shadow: 0 8px 24px rgba(4, 120, 87, 0.3);
}

.card-shutter .card-header {
	background: rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.card-shutter .card-header h2 {
	color: white;
}

.card-shutter .card-icon {
	background: rgba(255, 255, 255, 0.2);
	color: white;
}

.shutter-count-display {
	text-align: center;
	padding: 30px 0;
}

.count-number {
	font-size: 64px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 10px;
	display: block;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.count-label {
	font-size: 18px;
	opacity: 0.9;
	font-weight: 500;
}

.shutter-health {
	margin-top: 30px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
}

.health-label {
	font-size: 18px;
	margin-bottom: 12px;
	font-weight: 600;
	color: white;
}

.health-bar {
	height: 12px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 12px;
}

.health-fill {
	height: 100%;
	border-radius: 6px;
	transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
	background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
	box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.health-note {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.5;
	margin: 0;
}

/* No Count Message */
.no-count-message {
	text-align: center;
	padding: 40px 20px;
}

.no-count-icon {
	font-size: 64px;
	margin-bottom: 20px;
}

.no-count-message h3 {
	margin: 0 0 10px 0;
	color: white;
	font-size: 24px;
}

.no-count-message p {
	margin: 0 0 20px 0;
	opacity: 0.9;
}

.info-box {
	background: rgba(255, 255, 255, 0.15);
	border-left: 4px solid rgba(255, 255, 255, 0.5);
	padding: 16px;
	border-radius: 6px;
	text-align: left;
	max-width: 500px;
	margin: 0 auto;
	font-size: 14px;
}

.info-box strong {
	display: block;
	margin-bottom: 8px;
}

/* Info Grid */
.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-bottom: 24px;
}

.info-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.info-label {
	font-weight: 600;
	color: #7f8c8d;
	font-size: 14px;
}

.info-value {
	font-weight: 500;
	color: #2c3e50;
	text-align: right;
	font-size: 14px;
}

/* Share Card */
.card-share {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	color: white;
}

.card-share .card-header {
	background: rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.card-share .card-header h3 {
	color: white;
}

.card-share .card-icon {
	background: rgba(255, 255, 255, 0.2);
	color: white;
}

.share-description {
	margin: 0 0 20px 0;
	opacity: 0.95;
	font-size: 14px;
}

.url-input-group {
	display: flex;
	gap: 8px;
	margin-bottom: 20px;
}

.url-input {
	flex: 1;
	padding: 12px 16px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	font-size: 14px;
	font-family: 'Monaco', 'Courier New', monospace;
	background: rgba(255, 255, 255, 0.15);
	color: white;
	transition: all 0.3s ease;
}

.url-input:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.2);
}

.url-input::selection {
	background: rgba(255, 255, 255, 0.3);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	justify-content: center;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	text-decoration: none;
}

.btn-primary {
	background: #4CAF50;
	color: white;
}

.btn-primary:hover {
	background: #45a049;
}

.btn-lg {
	padding: 16px 32px;
	font-size: 16px;
}

.btn-copy {
	background: rgba(255, 255, 255, 0.25);
	color: white;
	white-space: nowrap;
	flex-shrink: 0;
}

.btn-copy:hover {
	background: rgba(255, 255, 255, 0.35);
}

.btn-copy.success {
	background: rgba(76, 175, 80, 0.8);
}

.social-buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.btn-social {
	flex: 1;
	min-width: 140px;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-social:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
}

.btn-facebook {
	background: rgba(24, 119, 242, 0.2);
}

.btn-facebook:hover {
	background: rgba(24, 119, 242, 0.3);
}

.btn-twitter {
	background: rgba(29, 161, 242, 0.2);
}

.btn-twitter:hover {
	background: rgba(29, 161, 242, 0.3);
}

.btn-email {
	background: rgba(128, 128, 128, 0.2);
}

.btn-email:hover {
	background: rgba(128, 128, 128, 0.3);
}

/* ==============================================
   CAMERA VALUE ESTIMATION CARD
   ============================================== */

.card-value {
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
	color: white;
	border: none;
	box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
	margin-top: 30px;
}

.card-value .card-header {
	background: rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.card-value .card-header h2 {
	color: white;
}

.card-value .card-icon {
	background: rgba(255, 255, 255, 0.2);
	color: white;
}

.value-display {
	padding: 10px 0;
}

.value-primary {
	text-align: center;
	padding: 30px 20px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	margin-bottom: 30px;
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.value-label {
	font-size: 16px;
	opacity: 0.9;
	font-weight: 500;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.value-amount {
	font-size: 56px;
	font-weight: 800;
	line-height: 1;
	margin: 15px 0;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	font-family: 'Courier New', monospace;
}

.value-note {
	font-size: 14px;
	opacity: 0.85;
	margin-top: 10px;
}

.value-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	margin-bottom: 20px;
}

.value-stat-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.value-stat-item .stat-label {
	font-size: 13px;
	opacity: 0.85;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.value-stat-item .stat-value {
	font-size: 20px;
	font-weight: 700;
	color: white;
}

.value-disclaimer {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 20px;
	margin-top: 20px;
}

.value-disclaimer svg {
	float: left;
	margin-right: 10px;
	flex-shrink: 0;
}

.value-disclaimer p {
	margin: 0 0 12px 0;
	font-size: 14px;
	opacity: 0.9;
	color: white;
	line-height: 1.6;
}

.value-disclaimer p:last-of-type {
	margin-bottom: 16px;
}

.value-disclaimer strong {
	color: white;
	font-weight: 600;
}

.disclaimer-note {
	font-size: 13px !important;
	opacity: 0.8 !important;
	font-style: italic;
}

.estimate-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-left: 8px;
}

.btn-ebay {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	padding: 12px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid rgba(255, 255, 255, 0.3);
	margin-top: 12px;
}

.btn-ebay:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	text-decoration: none;
}

.btn-ebay svg {
	width: 18px;
	height: 18px;
}

/* Marketplace Links Section */
.marketplace-links {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.marketplace-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.btn-marketplace {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.15);
	color: white;
	padding: 14px 16px;
	border-radius: 8px;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.2s ease;
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-marketplace:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateX(4px);
	text-decoration: none;
}

.marketplace-icon {
	font-size: 20px;
	line-height: 1;
	flex-shrink: 0;
}

.marketplace-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1;
	text-align: left;
}

.marketplace-info strong {
	color: white;
	font-size: 14px;
	font-weight: 600;
}

.marketplace-info small {
	color: rgba(255, 255, 255, 0.75);
	font-size: 12px;
	font-weight: 400;
}

.btn-marketplace svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	opacity: 0.7;
}

/* Responsive adjustments for marketplace buttons */
@media (max-width: 768px) {
	.marketplace-buttons {
		gap: 8px;
	}
	
	.btn-marketplace {
		padding: 12px 14px;
	}
	
	.marketplace-icon {
		font-size: 18px;
	}
	
	.marketplace-info strong {
		font-size: 13px;
	}
	
	.marketplace-info small {
		font-size: 11px;
	}
}

/* Responsive adjustments for value card */
@media (max-width: 768px) {
	.value-amount {
		font-size: 42px;
	}
	
	.value-stats {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.value-primary {
		padding: 20px 15px;
	}
}

.action-buttons {
	display: flex;
	justify-content: center;
	margin-top: 32px;
	padding-top: 32px;
	border-top: 2px dashed #e0e0e0;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
	body {
		font-size: 14px;
	}
	
	.side-spacer {
		display: none;
	}
	
	#mainTable {
		width: 100%;
	}
	
	#middleTable {
		padding: 15px;
		font-size: 14px;
	}
	
	#header table,
	#header table tr,
	#header table td {
		display: block;
		width: 100% !important;
	}
	
	#header img {
		max-width: 100%;
		height: auto;
	}
	
	h1 {
		font-size: 22px;
	}
	
	h2 {
		font-size: 18px;
	}
	
	h3 {
		font-size: 16px;
	}
	
	.upload-section {
		padding: 20px 15px;
	}
	
	.file-label {
		min-width: auto;
		width: 100%;
		padding: 12px 20px;
		font-size: 14px;
	}
	
	.upload-button {
		width: 100%;
		padding: 12px 20px;
		font-size: 16px;
	}
	
	.shutter-count-value {
		font-size: 32px;
	}
	
	.info-table td.label {
		width: auto;
		display: block;
		font-weight: 600;
		padding-bottom: 4px;
	}
	
	.info-table td:not(.label) {
		display: block;
		padding-top: 0;
	}
	
	.share-url-input {
		width: 100%;
		border-radius: 4px;
		margin-bottom: 10px;
	}
	
	.copy-button {
		width: 100%;
		border-radius: 4px;
		margin-left: 0;
	}
	
	.social-share {
		flex-direction: column;
	}
	
	.share-btn {
		width: 100%;
		text-align: center;
	}
	
	#footer {
		font-size: 12px;
	}
	
	#footer a {
		display: inline-block;
		padding: 5px;
	}
	
	/* Modern Results Page - Mobile */
	.results-hero {
		padding: 30px 15px 20px;
	}
	
	.hero-badge {
		width: auto;
		height: auto;
	}
	
	.results-title {
		font-size: 24px;
	}
	
	.results-subtitle {
		font-size: 14px;
	}
	
	.card-header {
		padding: 16px 20px;
	}
	
	.card-body {
		padding: 20px;
	}
	
	.card-icon {
		width: 36px;
		height: 36px;
	}
	
	.card-icon svg {
		width: 20px;
		height: 20px;
	}
	
	.count-number {
		font-size: 48px;
	}
	
	.count-label {
		font-size: 16px;
	}
	
	.shutter-health {
		padding: 16px;
	}
	
	.info-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.info-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}
	
	.info-value {
		text-align: left;
	}
	
	.url-input-group {
		flex-direction: column;
	}
	
	.btn-copy {
		width: 100%;
	}
	
	.social-buttons {
		flex-direction: column;
	}
	
	.btn-social {
		width: 100%;
		min-width: auto;
	}
}

@media screen and (max-width: 480px) {
	#middleTable {
		padding: 10px;
		font-size: 13px;
	}
	
	h1 {
		font-size: 20px;
	}
	
	.shutter-count-box {
		padding: 20px 15px;
	}
	
	.shutter-count-value {
		font-size: 28px;
	}
	
	.results-hero {
		padding: 20px 10px 15px;
	}
	
	.hero-badge {
		width: 50px;
		height: 50px;
	}
	
	.hero-badge svg {
		width: 32px;
		height: 32px;
	}
	
	.results-title {
		font-size: 20px;
	}
	
	.card-header {
		padding: 14px 16px;
	}
	
	.card-body {
		padding: 16px;
	}
	
	.count-number {
		font-size: 40px;
	}
	
	.count-label {
		font-size: 14px;
	}
	
	.no-count-icon {
		font-size: 48px;
	}
	
	.no-count-message h3 {
		font-size: 20px;
	}
}

/* ==============================================
   HOMEPAGE - HERO & MODERN SECTIONS
   ============================================== */

/* Hero Section */
.hero-section {
	background: linear-gradient(135deg, #065f46 0%, #1e3a8a 100%);
	color: white;
	padding: 50px 40px 80px 40px;
	border-radius: 16px;
	margin-bottom: 60px;
	text-align: center;
	box-shadow: 0 10px 40px rgba(6, 95, 70, 0.3);
}

.hero-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.hero-title {
	font-size: 56px;
	font-weight: 800;
	margin: 0 0 24px 0;
	line-height: 1.15;
	color: white;
	border: none;
	letter-spacing: -0.03em;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-title .highlight {
	background: linear-gradient(90deg, #FFD93D, #FFA500);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 22px;
	margin: 0 0 48px 0;
	opacity: 1;
	line-height: 1.65;
	font-weight: 400;
	letter-spacing: -0.01em;
	color: rgba(255, 255, 255, 0.98);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stats {
	display: flex;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 8px;
	letter-spacing: -0.02em;
}

.stat-label {
	font-size: 15px;
	opacity: 1;
	font-weight: 500;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
	font-size: 13px;
}

/* Upload Section Hero */
.upload-section-hero {
	margin: 60px 0;
	text-align: center;
}

.section-title {
	font-size: 40px;
	font-weight: 800;
	margin: 0 0 16px 0;
	color: #1a202c;
	border: none;
	padding: 0;
	letter-spacing: -0.025em;
	line-height: 1.2;
}

.section-subtitle {
	font-size: 20px;
	color: #718096;
	margin: 0 0 40px 0;
	font-weight: 400;
	letter-spacing: -0.01em;
}

/* Enhanced Upload Section */
.upload-section {
	background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
	border: 3px dashed #047857;
	border-radius: 16px;
	padding: 50px 30px;
	margin: 20px 0;
	text-align: center;
	transition: all 0.3s ease;
}

.upload-section:hover {
	border-color: #059669;
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(4, 120, 87, 0.15);
}

.file-label {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	padding: 30px;
	background: white;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom: 20px;
}

.file-label:hover {
	background: #f0fdf4;
	border-color: #047857;
}

.upload-icon {
	color: #047857;
}

.file-name {
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.file-name.file-selected {
	color: #4CAF50;
}

.file-hint {
	font-size: 14px;
	color: #999;
}

/* Features Section */
.features-section {
	margin: 60px 0;
	text-align: center;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.feature-card {
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.feature-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, #047857 0%, #065f46 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	box-shadow: 0 4px 16px rgba(4, 120, 87, 0.2);
}

.feature-card h3 {
	font-size: 22px;
	margin: 0 0 12px 0;
	color: #1a202c;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.feature-card p {
	font-size: 16px;
	color: #718096;
	margin: 0;
	line-height: 1.7;
	font-weight: 400;
}

/* How It Works Section */
.how-it-works {
	margin: 60px 0;
	padding: 50px 30px;
	background: #f8f9fa;
	border-radius: 12px;
	text-align: center;
}

.steps-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.step-card {
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	flex: 1;
	min-width: 200px;
	max-width: 280px;
	position: relative;
}

.step-number {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, #047857 0%, #065f46 100%);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 18px;
	box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
}

.step-icon {
	font-size: 48px;
	margin: 20px 0;
}

.step-card h3 {
	font-size: 18px;
	margin: 0 0 12px 0;
	color: #2c3e50;
}

.step-card p {
	font-size: 14px;
	color: #7f8c8d;
	margin: 0;
}

.step-arrow {
	font-size: 32px;
	color: #047857;
	font-weight: 700;
}

/* Supported Cameras Section */
.supported-cameras {
	margin: 60px 0;
	text-align: center;
}

.brands-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-top: 40px;
}

.brand-item {
	background: white;
	padding: 25px;
	border-radius: 12px;
	border: 2px solid #e0e0e0;
	transition: all 0.3s ease;
}

.brand-item:hover {
	border-color: #7EBE5D;
	transform: translateY(-4px);
	box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.brand-name {
	font-size: 22px;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 8px;
}

.brand-format {
	font-size: 14px;
	color: #7EBE5D;
	font-weight: 600;
	margin-bottom: 8px;
}

.brand-models {
	font-size: 13px;
	color: #999;
}

.format-note {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: #fff3cd;
	border: 2px solid #ffc107;
	border-radius: 8px;
	padding: 20px;
	margin-top: 30px;
	text-align: left;
}

.format-note svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: #f57c00;
}

.format-note p {
	margin: 0;
	color: #856404;
}

/* FAQ Section */
.faq-section {
	margin: 60px 0;
}

.faq-container {
	max-width: 900px;
	margin: 40px auto 0;
}

.faq-item {
	background: white;
	padding: 25px 30px;
	border-radius: 12px;
	margin-bottom: 20px;
	border-left: 4px solid #047857;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 4px 16px rgba(4, 120, 87, 0.12);
	transform: translateX(4px);
}

.faq-item h3 {
	font-size: 21px;
	margin: 0 0 16px 0;
	color: #1a202c;
	cursor: pointer;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.4;
}

.faq-item p {
	font-size: 17px;
	color: #4a5568;
	margin: 0;
	line-height: 1.8;
	font-weight: 400;
}

/* CTA Section */
.cta-section {
	background: linear-gradient(135deg, #047857 0%, #059669 100%);
	color: white;
	padding: 80px 40px;
	border-radius: 16px;
	text-align: center;
	margin: 80px 0 60px 0;
	box-shadow: 0 10px 40px rgba(4, 120, 87, 0.3);
}

.cta-section .section-title {
	color: white;
}

.cta-section .section-subtitle {
	color: rgba(255, 255, 255, 0.9);
}

.cta-content h2 {
	font-size: 44px;
	margin: 0 0 20px 0;
	color: white;
	border: none;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.2;
}

.cta-content p {
	font-size: 20px;
	margin: 0 0 40px 0;
	opacity: 0.95;
	font-weight: 400;
	color: white;
	letter-spacing: -0.01em;
}

.cta-button {
	display: inline-block;
	padding: 20px 48px;
	background: white;
	color: #047857;
	font-size: 19px;
	font-weight: 700;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0,0,0,0.2);
	letter-spacing: -0.01em;
}

.cta-button:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.3);
	text-decoration: none;
	background: #ecfdf5;
}

/* Mobile Responsive - Homepage Specific */
@media screen and (max-width: 768px) {
	.hero-title {
		font-size: 28px;
	}
	
	.hero-subtitle {
		font-size: 16px;
	}
	
	.hero-stats {
		gap: 20px;
	}
	
	.stat-number {
		font-size: 28px;
	}
	
	.section-title {
		font-size: 24px;
	}
	
	.section-subtitle {
		font-size: 16px;
	}
	
	.features-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.steps-grid {
		flex-direction: column;
	}
	
	.step-arrow {
		transform: rotate(90deg);
	}
	
	.brands-grid {
		grid-template-columns: 1fr;
	}
	
	.cta-content h2 {
		font-size: 28px;
	}
	
	.cta-content p {
		font-size: 16px;
	}
}

@media screen and (max-width: 480px) {
	.hero-section {
		padding: 30px 20px 40px 20px;
	}
	
	.hero-title {
		font-size: 24px;
	}
	
	.upload-section {
		padding: 30px 20px;
	}
	
	.section-title {
		font-size: 22px;
	}
	
	.feature-card,
	.step-card,
	.brand-item,
	.faq-item {
		padding: 20px;
	}
}

/* ==============================================
   MODERN 2025 HEADER & FOOTER STYLES
   ============================================== */

/* Header Styles */
#header {
	position: sticky;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.95) !important;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.header-left {
	flex-shrink: 0;
}

.logo-link {
	display: inline-block;
	transition: transform 0.3s ease;
}

.logo-link:hover {
	transform: scale(1.02);
}

#logo {
	height: 80px;
	width: auto;
	max-width: 400px;
}

.header-nav {
	display: flex;
	gap: 8px;
	align-items: center;
}

/* Language Switcher */
.language-switcher {
	position: relative;
	display: inline-block;
	margin-left: 10px;
}

.lang-btn {
	background: rgba(4, 120, 87, 0.1);
	border: 1px solid rgba(4, 120, 87, 0.2);
	padding: 8px 14px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 18px;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: all 0.2s ease;
}

.lang-btn:hover {
	background: rgba(4, 120, 87, 0.15);
	border-color: rgba(4, 120, 87, 0.3);
}

.lang-menu {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 8px;
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	min-width: 540px;
	max-height: 500px;
	overflow-y: auto;
	z-index: 1000;
	padding: 8px;
}

.lang-menu.show {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	animation: fadeInDown 0.2s ease;
}

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

.lang-option {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	color: #333;
	text-decoration: none;
	transition: all 0.2s ease;
	border-radius: 8px;
	margin: 2px;
}

.lang-option:hover {
	background: #f9fafb;
	color: #047857;
}

.lang-option.active {
	background: rgba(4, 120, 87, 0.05);
	color: #047857;
	font-weight: 600;
}

.lang-flag {
	font-size: 18px;
	flex-shrink: 0;
}

.lang-name {
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.nav-link {
	padding: 10px 20px;
	color: #333;
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
}

.nav-link:hover {
	background: #f0fdf4;
	color: #047857;
	text-decoration: none;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 8px;
	left: 20px;
	right: 20px;
	height: 2px;
	background: #047857;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.nav-link:hover::after {
	transform: scaleX(1);
}

.nav-cta {
	padding: 10px 24px;
	background: linear-gradient(135deg, #047857 0%, #059669 100%);
	color: white !important;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	border-radius: 8px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(4, 120, 87, 0.3);
	margin-left: 12px;
}

.nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(4, 120, 87, 0.4);
	text-decoration: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
	padding: 8px;
	color: #333;
}

/* Footer Styles */
#footer {
	background: linear-gradient(135deg, #065f46 0%, #047857 100%) !important;
	color: white;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-links {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.footer-links a {
	color: white !important;
	text-decoration: none;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 6px;
	transition: all 0.3s ease;
	text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.footer-links a:hover {
	background: rgba(255, 255, 255, 0.1);
	text-decoration: none;
	transform: translateY(-2px);
}

.footer-links .separator {
	color: white;
	margin: 0 4px;
	font-weight: 600;
}

.footer-info {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info p {
	margin: 8px 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
}

.footer-tagline {
	font-size: 13px !important;
	color: rgba(255, 255, 255, 0.6) !important;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
	width: 12px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #047857 0%, #065f46 100%);
	border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #065f46 0%, #047857 100%);
}

/* Smooth Scroll Behavior */
html {
	scroll-behavior: smooth;
}

/* Mobile Responsive - Header & Footer */
@media screen and (max-width: 768px) {
	.container {
		padding: 0 15px;
	}
	
	.side-spacer {
		width: 0 !important;
		display: none;
	}
	
	#header {
		border-radius: 12px 12px 0 0;
		padding: 15px 20px;
	}
	
	.header-content {
		flex-direction: column;
		gap: 15px;
	}
	
	#logo {
		height: 60px;
	}
	
	.header-nav {
		width: 100%;
		flex-wrap: wrap;
		justify-content: center;
		gap: 6px;
	}
	
	.nav-link {
		padding: 8px 16px;
		font-size: 14px;
	}
	
	/* Language Switcher Mobile Styles */
	.language-switcher {
		width: 100%;
		display: flex;
		justify-content: center;
		margin: 10px 0 0 0;
	}
	
	.lang-btn {
		padding: 10px 20px;
		font-size: 16px;
	}
	
	.lang-menu {
		left: 50%;
		right: auto;
		transform: translateX(-50%);
		min-width: 340px;
		max-width: 90vw;
	}
	
	.lang-menu.show {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.nav-cta {
		padding: 8px 20px;
		font-size: 14px;
		margin-left: 0;
		width: 100%;
		text-align: center;
	}
	
	#middleTable {
		padding: 30px 20px;
	}
	
	#footer {
		border-radius: 0 0 12px 12px;
		padding: 25px 20px;
	}
	
	.footer-links {
		flex-direction: column;
		gap: 4px;
	}
	
	.footer-links .separator {
		display: none;
	}
	
	.footer-links a {
		width: 100%;
		text-align: center;
	}
}

@media screen and (max-width: 480px) {
	#header {
		padding: 12px 15px;
	}
	
	#logo {
		height: 50px;
	}
	
	.nav-link {
		font-size: 13px;
		padding: 6px 12px;
	}
	
	.lang-menu {
		min-width: 280px;
	}
	
	.lang-menu.show {
		grid-template-columns: repeat(1, 1fr);
	}
	
	.lang-option {
		padding: 12px;
	}
	
	.lang-name {
		font-size: 15px;
	}
	
	#middleTable {
		padding: 20px 15px;
	}
}

/* ==============================================
   2025 TYPOGRAPHY ENHANCEMENTS
   ============================================== */

/* File Input Labels */
.file-name {
	font-size: 19px !important;
	font-weight: 600 !important;
	color: #2d3748 !important;
	letter-spacing: -0.01em !important;
}

.file-name.file-selected {
	color: #4CAF50 !important;
}

.file-hint {
	font-size: 15px !important;
	color: #a0aec0 !important;
	font-weight: 500 !important;
	letter-spacing: 0.01em !important;
}

.file-info {
	font-size: 15px !important;
	color: #718096 !important;
	font-weight: 500 !important;
}

/* Note/Alert Boxes */
.note {
	font-size: 16px !important;
	line-height: 1.7 !important;
	font-weight: 500 !important;
	padding: 16px 20px !important;
}

/* Brand Items */
.brand-name {
	font-size: 24px !important;
	font-weight: 700 !important;
	letter-spacing: -0.02em !important;
}

.brand-format {
	font-size: 15px !important;
	font-weight: 600 !important;
}

.brand-models {
	font-size: 14px !important;
	color: #718096 !important;
	font-weight: 400 !important;
}

/* Step Cards */
.step-card h3 {
	font-size: 19px !important;
	font-weight: 700 !important;
	letter-spacing: -0.02em !important;
}

.step-card p {
	font-size: 15px !important;
	color: #718096 !important;
	line-height: 1.7 !important;
}

/* Progress Text */
.progress-text {
	font-size: 16px !important;
	font-weight: 600 !important;
	color: #4a5568 !important;
}

/* Format Note */
.format-note p {
	font-size: 16px !important;
	line-height: 1.7 !important;
	font-weight: 500 !important;
}

/* Info Box */
.info-box {
	font-size: 15px !important;
	line-height: 1.7 !important;
	font-weight: 500 !important;
}

/* Share Description */
.share-description {
	font-size: 16px !important;
	line-height: 1.7 !important;
	font-weight: 400 !important;
}

/* Results Page Typography */
.count-number {
	font-size: 72px !important;
	font-weight: 900 !important;
	letter-spacing: -0.04em !important;
}

.count-label {
	font-size: 19px !important;
	font-weight: 600 !important;
	letter-spacing: 0.02em !important;
	text-transform: uppercase !important;
	font-size: 15px !important;
}

.info-label {
	font-size: 15px !important;
	font-weight: 600 !important;
	letter-spacing: 0.01em !important;
}

.info-value {
	font-size: 16px !important;
	font-weight: 500 !important;
}

/* Health Label */
.health-label {
	font-size: 16px !important;
	font-weight: 600 !important;
}

.health-note {
	font-size: 14px !important;
	font-weight: 500 !important;
}

/* Error Messages */
.error-container h2 {
	font-size: 32px !important;
	font-weight: 700 !important;
	letter-spacing: -0.02em !important;
}

.error-container p {
	font-size: 17px !important;
	line-height: 1.7 !important;
}

/* Button Text */
.button-text, .button-loading {
	font-weight: 700 !important;
	letter-spacing: -0.01em !important;
}

/* URL Input */
.url-input {
	font-size: 15px !important;
	font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', 'Droid Sans Mono', 'Source Code Pro', monospace !important;
	font-weight: 500 !important;
	letter-spacing: -0.02em !important;
}

/* Mobile Typography Adjustments */
@media screen and (max-width: 768px) {
	body {
		font-size: 16px;
	}
	
	h1 {
		font-size: 36px;
	}
	
	h2 {
		font-size: 28px;
	}
	
	h3 {
		font-size: 22px;
	}
	
	p, li {
		font-size: 16px;
	}
	
	.hero-title {
		font-size: 38px !important;
	}
	
	.hero-subtitle {
		font-size: 18px !important;
	}
	
	.section-title {
		font-size: 30px !important;
	}
	
	.section-subtitle {
		font-size: 17px !important;
	}
	
	.cta-content h2 {
		font-size: 32px !important;
	}
	
	.cta-content p {
		font-size: 17px !important;
	}
	
	#middleTable {
		padding: 30px 24px;
	}
}

@media screen and (max-width: 480px) {
	body {
		font-size: 15px;
	}
	
	h1 {
		font-size: 30px;
	}
	
	h2 {
		font-size: 24px;
	}
	
	.hero-title {
		font-size: 32px !important;
	}
	
	.hero-subtitle {
		font-size: 17px !important;
	}
	
	.section-title {
		font-size: 26px !important;
	}
	
	.count-number {
		font-size: 48px !important;
	}
	
	#middleTable {
		padding: 24px 20px;
	}
}

/* =============================================
   ADDITIONAL DARK GREEN ENHANCEMENTS 2025
   ============================================= */

/* Enhanced brand items */
.brand-item:hover {
	border-color: #047857 !important;
	transform: translateY(-4px);
	box-shadow: 0 6px 20px rgba(4, 120, 87, 0.15);
}

.brand-format {
	color: #047857 !important;
	font-weight: 600;
}

/* Enhanced stat numbers - Hero section uses white, other sections use gradient */
.stat-number {
	color: white;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Gradient stat numbers for non-hero sections */
.stats-section .stat-number,
.info-card .stat-number {
	background: linear-gradient(135deg, #047857 0%, #10b981 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: none;
}

/* Progress bar enhancement */
.progress-bar-fill {
	background: linear-gradient(90deg, #047857 0%, #10b981 50%, #34d399 100%);
	box-shadow: 0 0 15px rgba(4, 120, 87, 0.6);
}

/* Loading spinner enhancement */
.spinner {
	border-top-color: #047857;
	border-right-color: #10b981;
}

/* Accent color for highlights */
.text-accent,
.highlight {
	color: #047857;
	font-weight: 600;
}

/* Link hover underline color */
a:not(.btn):not(.nav-link):hover {
	text-decoration-color: #047857;
}

/* Focus states for accessibility */
input:focus,
textarea:focus,
select:focus,
button:focus {
	outline: 2px solid #047857;
	outline-offset: 2px;
}

/* Enhanced card hover states */
.feature-card:hover,
.info-card:hover {
	border-color: #047857;
	box-shadow: 0 8px 24px rgba(4, 120, 87, 0.15);
}

/* Enhanced gradient text */
.gradient-text {
	background: linear-gradient(135deg, #047857 0%, #10b981 50%, #059669 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 800;
}

/* Badge styles */
.badge-success,
.badge-green {
	background: linear-gradient(135deg, #047857 0%, #059669 100%);
	color: white;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
}

/* Alert/notification styles */
.alert-success {
	background: #ecfdf5;
	border-left: 4px solid #047857;
	color: #065f46;
	padding: 16px;
	border-radius: 8px;
}

/* Code blocks */
code,
pre {
	background: #f0fdf4;
	border: 1px solid #d1fae5;
	color: #065f46;
}

/* Selection color */
::selection {
	background: #047857;
	color: white;
}

::-moz-selection {
	background: #047857;
	color: white;
}

/* Hero Badge - "Trusted Since 2010" */
.hero-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: white;
	padding: 16px 40px;
	border-radius: 50px;
	font-size: 30px;
	font-weight: 600;
	margin: -10px auto 24px auto;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	letter-spacing: 0.5px;
	animation: fadeInDown 0.6s ease-out;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	white-space: nowrap;
	line-height: 1;
	width: auto;
	height: auto;
	text-align: center;
}

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

/* Responsive badge */
@media (max-width: 768px) {
	.hero-badge {
		font-size: 20px;
		padding: 12px 32px;
		margin: -5px auto 20px auto;
		white-space: nowrap;
		line-height: 1;
		border-radius: 40px;
	}
}

/* Hero Badge Alternative (for light backgrounds) */
.hero-badge-alt {
	display: inline-block;
	background: rgba(4, 120, 87, 0.08);
	border: 1px solid rgba(4, 120, 87, 0.15);
	color: #047857;
	padding: 10px 24px;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 24px;
	letter-spacing: 0.5px;
	animation: fadeInDown 0.6s ease-out;
	box-shadow: 0 4px 12px rgba(4, 120, 87, 0.05);
	white-space: nowrap;
	line-height: 1.2;
}

@media (max-width: 768px) {
	.hero-badge-alt {
		font-size: 13px;
		padding: 8px 18px;
		margin-bottom: 16px;
	}
}
