/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.618;
    color: #333;
    background-color: #f5f5f5;
}

/* Main Content */
.main-content {
    padding: 40px 20px;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.content-container h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.description {
    font-size: 1.5rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Tool Card Styles */
.tool-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #f7931c;
}

.tool-card.active {
    border-color: #f7931c;
    box-shadow: 0 4px 15px rgba(247, 147, 28, 0.2);
}

.tool-card.coming-soon {
    opacity: 1;
    cursor: not-allowed;
	background: #f8f9fa;
}

.tool-card.coming-soon h2 {
  color: #333;
}

.tool-card.coming-soon p {
  color: #555;
}

.tool-card.coming-soon:hover {
    transform: none;
    border-color: #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tool-icon {
    font-size: 3rem;
    margin: -1.8rem 0 0 -1.5rem;
    display: block;
}

.tool-card h2 {
    font-size: 1.8rem;
	text-align: center;
    margin: 0 auto 0.8rem auto;
    color: #222;
    font-weight: 700;
}

.tool-card p {
    color: #444;
    margin-bottom: 1.6rem;
    flex: 1;
    line-height: 1.618;
}

.tool-status {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: center;
}

.tool-status.ready {
    background: #02884c;
    color: #fff;
}

.tool-status:not(.ready) {
    background: #585e65;
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	
    .main-content {
        padding: 30px 15px;
    }
    
    .content-container {
        max-width: 100%;
    }
    
    .content-container h1 {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
		justify-items: center;
    }
    
    .tool-card {
        padding: 1.5rem;
        min-height: 200px;
		max-width: 500px;
		width: 100%;
    }
    
    .tool-icon {
        font-size: 2.5rem;
		margin: -1.3rem 0 0 -1rem;
    }
}

@media (max-width: 480px) { 
    .main-content {
        padding: 20px 10px;
    }
    
    .content-container h1 {
        font-size: 1.8rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .tool-card {
        padding: 1.25rem;
        min-height: 180px;
    }
    
    .tool-icon {
        font-size: 2.2rem;
		margin: -1.05rem 0 0 -0.75rem;
    }
	
	.tool-card h2 {
        font-size: 1.6rem;
    }
	
	.tool-status {
    padding: 0.5rem 1.1rem;
    font-size: 0.9rem;
	}
}