@charset "UTF-8";

.main-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0px 20px;
}

/* Dark Mode Styles for Main Content */
body.dark-mode {
	background-color: #1a1a1a;
	color: #e0e0e0;
}

body.dark-mode .tool-card,
body.dark-mode .about-content,
body.dark-mode .changelog-section,
body.dark-mode .contact-section {
	background: #2d2d2d;
	color: #e0e0e0;
	box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

body.dark-mode .tool-card:hover {
	box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

body.dark-mode .tool-title,
body.dark-mode .about-title,
body.dark-mode .about-content h2,
body.dark-mode .about-content h3,
body.dark-mode .changelog-section h2 {
	color: #f0f0f0;
}

body.dark-mode .tool-description,
body.dark-mode .about-subtitle,
body.dark-mode .about-content p {
	color: #c0c0c0;
}

body.dark-mode .tool-features li {
	color: #b0b0b0;
}

body.dark-mode .philosophy-list li {
	background: #3a3a3a;
	border-left: 4px solid #4CAF50;
}

body.dark-mode .philosophy-list li h4 {
	color: #f0f0f0;
}

body.dark-mode .philosophy-list li p {
	color: #c0c0c0;
}

body.dark-mode .howsupported-list li {
	background: #3a3a3a;
	border-left: 4px solid #4CAF50;
}

body.dark-mode .howsupported-list li h4 {
	color: #f0f0f0;
}

body.dark-mode .howsupported-list li p {
	color: #c0c0c0;
}

body.dark-mode .changelog-content {
	background: #1e1e1e;
	color: #e0e0e0;
	border: 1px solid #444;
}

body.dark-mode .changelog-content::-webkit-scrollbar-track {
	background: #333;
}

body.dark-mode .changelog-content::-webkit-scrollbar-thumb {
	background: #666;
}

body.dark-mode .changelog-content::-webkit-scrollbar-thumb:hover {
	background: #888;
}

.hero-section {
	text-align: center;
	margin-bottom: 50px;
}

.hero-title {
	font-size: 3.5em;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

body.dark-mode .hero-title {
	color: #f0f0f0;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
	font-size: 1.4em;
	color: #7f8c8d;
	margin-bottom: 10px;
	line-height: 1.6;
}

body.dark-mode .hero-subtitle {
	color: #c0c0c0;
}

.hero-description {
	font-size: 1.1em;
	color: #95a5a6;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

body.dark-mode .hero-description {
	color: #b0b0b0;
}

.tools-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin: 50px 0;
}

.tool-card {
	background: #f0f0f0;
	border: 1px solid #888;
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	text-decoration: none;
	color: inherit;
	position: relative;
	overflow: hidden;
}

.tool-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.15);
	text-decoration: none;
	color: inherit;
}

.tool-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #3498db, #2ecc71, #e74c3c, #f39c12);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.tool-card:hover::before {
	transform: scaleX(1);
}

.tool-icon {
	font-size: 3.5em;
	margin-bottom: 20px;
	display: block;
	text-align: center;
}

.tool-title {
	font-size: 1.8em;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 15px;
	text-align: center;
}

.tool-description {
	color: #7f8c8d;
	line-height: 1.6;
	text-align: center;
	margin-bottom: 20px;
	height: 77px;
}

.tool-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tool-features li {
	color: #95a5a6;
	font-size: 0.9em;
	margin-bottom: 8px;
	padding-left: 20px;
	position: relative;
}

.tool-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #27ae60;
	font-weight: bold;
}

.cta-section {
	text-align: center;
	margin-top: 60px;
	padding: 40px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 20px;
	color: white;
}

.cta-title {
	font-size: 2.2em;
	font-weight: 600;
	margin-bottom: 15px;
}

.cta-description {
	font-size: 1.2em;
	opacity: 0.9;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
}

/* About Page Styles */
.about-header {
	text-align: center;
	margin-bottom: 0px;
	padding: 10px 20px;
}

.about-title {
	font-size: 3em;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 20px;
}

.about-subtitle {
	font-size: 1.3em;
	color: #7f8c8d;
	margin-bottom: 30px;
}

.about-content {
	background: #EEEEEE;
	padding: 10px 40px;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	margin-bottom: 40px;
	line-height: 1.6;
}

.about-content h2 {
	color: #2c3e50;
	font-size: 1.8em;
	margin-bottom: 20px;
	border-bottom: 3px solid #3498db;
	padding-bottom: 10px;
}

body.dark-mode .about-content h2,
body.dark-mode .changelog-section h2 {
	border-bottom: 3px solid #4CAF50;
}

.about-content h3 {
	color: #34495e;
	font-size: 1.4em;
	margin: 25px 0 15px 0;
}

.about-content p {
	color: #555;
	margin-bottom: 20px;
	font-size: 1.1em;
}

.philosophy-list {
	list-style: none;
	padding: 0;
}

.philosophy-list li {
	background: #f8f9fa;
	margin-bottom: 15px;
	padding: 20px;
	border-radius: 10px;
	border-left: 4px solid #3498db;
	position: relative;
}

.philosophy-list li::before {
	content: '🔒';
	font-size: 1.5em;
	position: absolute;
	left: 20px;
	top: 18px;
}

.philosophy-list li:nth-child(2)::before {
	content: '⚡';
}

.philosophy-list li:nth-child(3)::before {
	content: '🎯';
}

.philosophy-list li:nth-child(4)::before {
	content: '🆓';
}

.philosophy-list li h4 {
	margin: 0 0 10px 50px;
	color: #2c3e50;
	font-size: 1.2em;
}

.philosophy-list li p {
	margin: 0 0 0 50px;
	color: #666;
	font-size: 1em;
}

.howsupported-list {
	list-style: none;
	padding: 0;
}

.howsupported-list li {
	background: #f8f9fa;
	margin-bottom: 15px;
	padding: 20px;
	border-radius: 10px;
	border-left: 4px solid #3498db;
	position: relative;
}

.howsupported-list li::before {
	content: '🎁';
	font-size: 1.5em;
	position: absolute;
	left: 20px;
	top: 18px;
}

.howsupported-list li:nth-child(2)::before {
	content: '📊';
}

.howsupported-list li h4 {
	margin: 0 0 10px 50px;
	color: #2c3e50;
	font-size: 1.2em;
}

.howsupported-list li p {
	margin: 0 0 0 50px;
	color: #666;
	font-size: 1em;
}

.contact-section {
	background: #EEEEEE;
	padding: 10px 40px 40px 40px;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	margin-bottom: 40px;
}

.changelog-section {
	background: #EEEEEE;
	padding: 10px 40px 40px 40px;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.changelog-section h2 {
	color: #2c3e50;
	font-size: 1.8em;
	margin-bottom: 20px;
	border-bottom: 3px solid #3498db;
	padding-bottom: 10px;
}

.changelog-content {
	background: #f8f9fa;
	padding: 0px 30px 30px 30px;
	border-radius: 10px;
	font-family: 'Courier New', monospace;
	font-size: 0.9em;
	line-height: 1.6;
	color: #333;
	white-space: pre-wrap;
	max-height: 400px;
	overflow-y: auto;
	border: 1px solid #e9ecef;
}

.changelog-content::-webkit-scrollbar {
	width: 8px;
}

.changelog-content::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 4px;
}

.changelog-content::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 4px;
}

.changelog-content::-webkit-scrollbar-thumb:hover {
	background: #555;
}

/* Responsive design */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5em;
	}
		
	.hero-subtitle {
		font-size: 1.2em;
	}
		
	.tools-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
		
	.tool-card {
		padding: 25px;
	}
		
	.tool-icon {
		font-size: 3em;
	}

	.tool-title {
		font-size: 1.5em;
	}
    
    .about-title {
        font-size: 2.2em;
    }
    
    .about-content {
        padding: 25px;
    }
    
    .philosophy-list li h4 {
        margin-left: 40px;
    }
    
    .philosophy-list li p {
        margin-left: 40px;
    }

	.howsupported-list li h4 {
        margin-left: 40px;
    }
    
    .howsupported-list li p {
        margin-left: 40px;
    }
}