
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --background: #f8fafc;
    --card: #ffffff;
    --text: #1e293b;
    --text-light: #64748b;
    --border: #e2e8f0;
    --success: #10b981;
}



.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 30px;
}




.tagline {
    color: var(--text-light);
    font-size: 1.1rem;
}

.card {
    background-color: var(--card);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
    margin-top: 10px;
}

input:focus {
    border-color: var(--primary);
    outline: none;
}

button {
    background-color: #1e293b;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: var(--primary-dark);
}

.results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.result-card {
    background: linear-gradient(135deg, var(--card) 0%, #f9fafb 100%);
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.result-card h3 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.result-card h3 img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
}

.value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 5px 0;
}

.explanation {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 8px;
}


.keywords {
    display: none;
}

@media (max-width: 600px) {
    .results {
        grid-template-columns: 1fr;
    }
    h1 {
        font-size: 1.8rem;
    }
}
